/* Moms Pulse — açık tema (Flutter AppColors / AppTheme.light ile uyumlu) */
:root {
  --bg: #fff6f4;
  --surface: #fafafa;
  --surface-elevated: #ffffff;
  --border: #e9e6f3;
  --text: #4d4d4d;
  --text-muted: #7d7d7d;
  --primary: #c6b4e8;
  --primary-dark: #8e7bc8;
  --primary-soft: #ede8f7;
  --coral: #e89a99;
  --pink-pastel: #f3b6bc;
  --success: #6bb88a;
  --card-radius: 20px;
  --btn-radius: 999px;
  --header-bg: rgba(255, 246, 244, 0.92);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(142, 123, 200, 0.12), 0 2px 4px rgba(0, 0, 0, 0.06);
  --link: #8e7bc8;
  --link-hover: #6b5ba8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 100% 0%, rgba(198, 180, 232, 0.18), transparent 52%),
    radial-gradient(ellipse 70% 45% at 0% 100%, rgba(243, 182, 188, 0.14), transparent 48%),
    linear-gradient(180deg, var(--bg) 0%, #fff9f7 45%, #fff6f4 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.035;
  pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 40px 40px;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--link-hover);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--btn-radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lang-switcher-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(198, 180, 232, 0.25);
}

.lang-switcher-icon {
  font-size: 1rem;
  line-height: 1;
}

.lang-switcher-code {
  letter-spacing: 0.06em;
  opacity: 0.95;
}

.lang-switcher-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  min-width: 10rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card-hover);
  z-index: 120;
}

.lang-switcher-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.85rem;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}

.lang-switcher-option:hover {
  color: var(--text);
  background: var(--primary-soft);
}

.lang-switcher-option.is-active {
  color: var(--primary-dark);
  font-weight: 600;
}

.logo {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-shadow: none;
}

.logo:hover {
  color: var(--text);
}

/* Uygulama ikonu 722×1023; çerçeve/arka plan yok — PNG şeffaflığı sayfayla birleşir */
.logo-mark {
  width: 44px;
  height: auto;
  aspect-ratio: 722 / 1023;
  object-fit: contain;
  flex-shrink: 0;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.logo-accent {
  color: var(--primary-dark);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
  width: 100%;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav a:hover,
.nav a.active {
  color: var(--primary-dark);
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.hero {
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.hero-mark {
  width: min(140px, 32vw);
  height: auto;
  aspect-ratio: 722 / 1023;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  display: block;
  border: none;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 2.85rem);
  margin: 0 0 1rem;
  line-height: 1.2;
  white-space: pre-line;
  color: var(--text);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.hero .hero-store-row {
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 2px 8px rgba(142, 123, 200, 0.35);
  border-color: rgba(142, 123, 200, 0.35);
}

.btn-ghost {
  background: var(--surface);
  color: var(--primary-dark);
  border-color: var(--border);
}

.btn-ghost:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--primary);
}

section {
  margin-bottom: 3rem;
}

section h2 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text);
  text-shadow: none;
}

section > p.lead {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 48rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.card:hover {
  border-color: rgba(198, 180, 232, 0.55);
  box-shadow: var(--shadow-card-hover);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--primary-dark);
  text-shadow: none;
}

.card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.card ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card ul li {
  margin-bottom: 0.35rem;
}

.card-pro-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--surface) 0%, var(--primary-soft) 100%);
}

.card-pro-banner h3 {
  margin-top: 0;
}

.pro-bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.pro-bullets li {
  margin-bottom: 0.4rem;
}

.pro-note {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.5rem;
  color: var(--text);
  text-shadow: none;
}

.subtitle {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

.placeholder-box {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--card-radius);
  padding: 2rem;
  color: var(--text-muted);
  text-align: center;
}

.form-card {
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.form-card label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
}

.form-card input[type="email"],
.form-card input[type="text"],
.form-card textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.form-card textarea {
  min-height: 100px;
  resize: vertical;
}

.form-card .hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.5rem;
  font-size: 0.92rem;
}

.req-star {
  color: var(--coral);
  font-weight: 700;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checkbox-row input {
  margin-top: 0.25rem;
}

.site-footer {
  margin-top: 3rem;
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  background: rgba(250, 250, 250, 0.6);
}

.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

/* Sıkça sorulan sorular — native <details> ile tıklayınca açılır */
.faq-section {
  margin-bottom: 3rem;
}

.faq-intro {
  margin-top: -0.35rem;
}

.faq-list {
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 2.75rem 1rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
  position: relative;
  user-select: none;
  transition: background 0.15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.35rem;
  border-right: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  margin-top: -0.15rem;
  transform: rotate(-135deg);
}

.faq-item summary:hover {
  background: var(--primary-soft);
}

.faq-item .faq-a {
  padding: 0 1.25rem 1.15rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
}

.faq-item .faq-a a {
  font-weight: 500;
}

.faq-item .faq-a p {
  margin: 0 0 0.65rem;
}

.faq-item .faq-a p:last-child {
  margin-bottom: 0;
}

.faq-item:not([open]) .faq-a {
  padding-top: 0;
  border-top: none;
}

.legal-doc {
  max-width: 42rem;
}

.legal-doc h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.75rem;
  color: var(--primary-dark);
  text-shadow: none;
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p,
.legal-doc li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-doc ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.25rem;
}

.legal-doc ul li {
  margin-bottom: 0.4rem;
}

.legal-doc .doc-lead {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.sources-top-link {
  text-align: center;
  margin: 0 auto 1.35rem;
  max-width: 720px;
  padding: 0.9rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-card);
}

.sources-top-link a {
  font-weight: 600;
  font-size: 1.02rem;
}

.sources-page .source-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.sources-page .source-block:last-of-type {
  border-bottom: none;
}

.sources-page .source-block h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--text);
}

.sources-page .source-meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

/* ——— Ana sayfa: kullanıcı yorumları (üst üste “collage”, Başarı Takip tarzı) ——— */
.testimonials-section {
  position: relative;
  margin-bottom: 2rem;
  padding: 3rem 0 4rem;
  overflow: hidden;
  z-index: 2;
}

.testimonials-inner {
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonials-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #5b7fd1;
  background: rgba(91, 127, 209, 0.12);
  border: 1px solid rgba(91, 127, 209, 0.22);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.testimonials-title {
  font-size: clamp(1.65rem, 4.2vw, 2.35rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.testimonials-lead {
  margin: 0 auto 0.25rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.testimonials-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-top: 2.5rem;
  min-height: 28rem;
  padding: 2.5rem 1.25rem;
}

.testimonial-card {
  position: relative;
  width: 240px;
  flex-shrink: 0;
  min-height: 7.5rem;
  height: auto;
  text-align: left;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transform: rotate(-3deg);
  margin-left: -3.75rem;
  margin-top: -1.85rem;
}

.testimonial-card:first-child {
  margin-left: 0;
  margin-top: 0;
}

.testimonial-card:nth-child(even) {
  transform: rotate(3deg);
  margin-top: -1.85rem;
}

.testimonial-card:nth-child(3n) {
  transform: rotate(-2deg);
  margin-top: -1.55rem;
}

.testimonial-card:nth-child(4n) {
  transform: rotate(2.5deg);
  margin-top: -2.15rem;
}

.testimonial-card:nth-child(5n) {
  transform: rotate(-1.5deg);
  margin-top: -0.9rem;
}

.testimonial-card:nth-child(6n) {
  transform: rotate(1.5deg);
  margin-top: -1.75rem;
}

.testimonial-card:nth-child(7n) {
  transform: rotate(-2.5deg);
  margin-top: -1.35rem;
}

.testimonial-card:nth-child(8n) {
  transform: rotate(2deg);
  margin-top: -2rem;
}

.testimonial-card:nth-child(9n) {
  transform: rotate(-1deg);
  margin-top: -1.1rem;
}

.testimonial-card:nth-child(10n) {
  transform: rotate(1.8deg);
  margin-top: -1.6rem;
}

.testimonial-card:nth-child(11n) {
  transform: rotate(-2.2deg);
  margin-top: -1.5rem;
}

.testimonial-card:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.18),
    0 4px 16px rgba(142, 123, 200, 0.2);
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.testimonial-card__store {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
  flex: 1;
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .testimonials-section {
    padding: 2.25rem 0 3rem;
  }

  .testimonials-container {
    padding: 1.25rem 0.65rem;
    min-height: auto;
  }

  .testimonial-card {
    width: 200px;
    padding: 1rem;
    margin-left: -2.5rem !important;
    margin-top: -1.25rem !important;
  }

  .testimonial-card:first-child {
    margin-left: 0 !important;
    margin-top: 0 !important;
  }

  .testimonial-card:hover {
    transform: scale(1.08) rotate(0deg) !important;
  }

  .testimonial-card__store {
    width: 28px;
    height: 28px;
  }

  .testimonial-card__name {
    font-size: 0.85rem;
  }

  .testimonial-card p {
    font-size: 0.72rem;
  }
}
