/* GENEL RESET & TEMEL AYARLAR */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f3f4f6;
  color: #111827;
  line-height: 1.6;
}

/* YAPI */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ÜST BAR */
.site-header {
  position: relative;
  z-index: 10;
  padding: 16px 0;
  background: transparent;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #15a0e6, #1fc8d9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon::after {
  content: "❤";
  font-size: 18px;
  color: #ffffff;
}

.brand-title {
  font-weight: 600;
  font-size: 18px;
  color: #0f172a;
}

.brand-sub {
  font-size: 12px;
  color: #6b7280;
}

.lang-switch {
  display: flex;
  gap: 6px;
}

.lang-switch button {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  color: #4b5563;
}

.lang-switch button:hover {
  border-color: #15a0e6;
  color: #111827;
}

/* HERO */
.hero {
  position: relative;
  padding: 32px 0 40px;
  background: linear-gradient(135deg, #15a0e6, #1fc8d9);
  color: #0f172a;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 55%);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 1;
}

.hero-content {
  max-width: 620px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  font-size: 12px;
  color: #0f172a;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: #22c55e;
}

.hero-title {
  margin-top: 14px;
  font-size: 26px;
  font-weight: 600;
  color: #0f172a;
}

.hero-text {
  margin-top: 10px;
  font-size: 14px;
  color: #1f2933;
}

.hero-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* BUTONLAR */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #f9c74f;
  color: #1f2933;
  box-shadow: 0 10px 20px rgba(249, 199, 79, 0.3);
}

.btn-secondary {
  background: #4cc9f0;
  color: #0f172a;
  box-shadow: 0 10px 20px rgba(76, 201, 240, 0.3);
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.16);
}

/* ANİMASYON */
@keyframes heart-breath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

/* ROZETLER */
.trust-badges {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  color: #111827;
}

/* HERO KARTI */
.hero-card {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 16px 18px;
  font-size: 13px;
  color: #1f2933;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

.hero-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-card-note {
  margin-top: 8px;
  font-size: 12px;
  color: #6b7280;
}

/* SECTIONS */
main {
  flex: 1;
  background-color: #f3f4f6;
}

.section {
  padding: 32px 0;
}

.section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

.section p {
  font-size: 14px;
  color: #4b5563;
}

/* KİMİN İÇİN */
.section-intro p {
  margin-bottom: 16px;
}

.for-whom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.for-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.for-item ul {
  list-style: none;
  padding-left: 0;
}

.for-item li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 4px;
}

.for-item li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: #9ca3af;
}

/* KARTLI BÖLÜM */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 14px 28px rgba(15,23,42,0.08);
  border: 1px solid #e5e7eb;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 8px;
}

.pill-blue {
  background: #e0f2fe;
  color: #075985;
}

.pill-yellow {
  background: #fef9c3;
  color: #854d0e;
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.card p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 10px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  font-size: 12px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  color: #111827;
  cursor: pointer;
  transition: 0.15s ease;
}

/* FOOTER */
.site-footer {
  background: #0f172a;
  color: #9ca3af;
  font-size: 12px;
  padding: 14px 0;
  text-align: center;
}

/* MASAÜSTÜ */
@media (min-width: 768px) {

  .hero {
    padding: 42px 0 56px;
  }

  .hero-inner {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
  }

  .hero-content { flex: 3; }
  .hero-card { flex: 2; }

  .hero-actions {
    flex-direction: row;
  }

  .trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .for-whom {
    flex-direction: row;
  }

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

  .rk-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .rk-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

/* === MOBİL NAVBAR & HEADER FİX – %100 DÜZELTİR === */
@media (max-width: 768px){

  .topbar,
  .rk-header,
  .rk-header-inner {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .rk-nav-links,
  .rk-header-actions,
  .lang-switch {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  nav a,
  nav button,
  .rk-nav-links a,
  .rk-header-actions a,
  .rk-header-actions button,
  .lang-switch button {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
  }
}
