/* ============================================================
   CALMBUDY - Ana Stil Dosyası
   ============================================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Baloo+2:wght@400;500;600;700;800&display=swap');

/* ---- Değişkenler ---- */
:root {
  --mint:    #C8F0E4;
  --sky:     #C0E4F5;
  --lavender:#C0B8F0;
  --purple:  #6843AF;
  --purple-dark: #4f2f8a;
  --purple-light: #8a6cd0;
  --white:   #ffffff;
  --text:    #2d2250;
  --text-light: #6e6a8a;
  --radius:  20px;
  --shadow:  0 8px 32px rgba(104,67,175,.15);
  --shadow-hover: 0 16px 48px rgba(104,67,175,.25);
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(104,67,175,.12);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--purple);
}

.nav__logo-icon {
  width: 42px; height: 42px;
  background: var(--purple);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  font-size: .95rem;
}

.nav__links a:hover { color: var(--purple); }

.nav__cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}

.nav__cta:hover {
  background: var(--purple-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(104,67,175,.35) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--purple);
  border-radius: 3px;
  transition: var(--transition);
}

/* Mobil menü masaüstünde tamamen kapalı kalır */
.nav__mobile-menu {
  display: none;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f0ff 0%, #e8f8f2 40%, #daf2fd 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Dekoratif arka plan şekilleri */
.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .25;
  pointer-events: none;
}

.hero__bg-shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--lavender), transparent 70%);
  top: -200px; right: -150px;
  animation: floatShape 8s ease-in-out infinite;
}

.hero__bg-shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--mint), transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatShape 10s ease-in-out infinite reverse;
}

.hero__bg-shape--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--sky), transparent 70%);
  top: 30%; left: 40%;
  animation: floatShape 12s ease-in-out infinite 2s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(20px,-30px) scale(1.05); }
}

/* Yüzen partiküller */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(104,67,175,.1);
  border: 1px solid rgba(104,67,175,.2);
  color: var(--purple);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp .6s ease both;
}

.hero__badge-dot {
  width: 8px; height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}

.hero__title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp .7s ease .1s both;
}

.hero__title span { color: var(--purple); }

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeInUp .7s ease .2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeInUp .7s ease .3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(104,67,175,.35);
}

.btn--primary:hover {
  background: var(--purple-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(104,67,175,.45);
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn--outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
}

.hero__store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeInUp .7s ease .4s both;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 14px;
  font-size: .85rem;
  transition: var(--transition);
}

.store-badge:hover {
  background: var(--purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.store-badge__icon { font-size: 1.6rem; }
.store-badge__sub  { font-size: .7rem; opacity: .8; }
.store-badge__name { font-weight: 700; font-size: .95rem; }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeInRight .8s ease .2s both;
}

.hero__phone-wrapper {
  position: relative;
  width: 320px;
}

.hero__phone {
  width: 280px;
  height: 580px;
  background: var(--white);
  border-radius: 44px;
  box-shadow: 0 30px 80px rgba(104,67,175,.25), 0 0 0 10px rgba(104,67,175,.08);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.phone__screen {
  height: 100%;
  background: linear-gradient(180deg, #f0e8ff 0%, #e8f8f2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 20px;
}

.phone__app-icon {
  width: 80px; height: 80px;
  background: var(--purple);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: 0 8px 24px rgba(104,67,175,.4);
  animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.phone__app-name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--purple);
}

.phone__tagline {
  font-size: .8rem;
  color: var(--text-light);
  text-align: center;
}

.phone__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.phone__card {
  background: var(--white);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 12px rgba(104,67,175,.08);
  animation: slideInCard .5s ease both;
}

.phone__card:nth-child(1) { animation-delay: .6s; }
.phone__card:nth-child(2) { animation-delay: .8s; }
.phone__card:nth-child(3) { animation-delay: 1s; }

@keyframes slideInCard {
  from { opacity:0; transform: translateX(20px); }
  to   { opacity:1; transform: translateX(0); }
}

.phone__card-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Yüzen rozetler */
.hero__float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  animation: floatBadge 4s ease-in-out infinite;
}

.hero__float-badge--1 { top: 60px;  left: -20px;  animation-delay: 0s; }
.hero__float-badge--2 { bottom: 100px; right: -20px; animation-delay: 1.5s; }
.hero__float-badge--3 { top: 50%;  right: -30px;  animation-delay: .8s; }

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* Stats (hero alt kısım) */
.hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(104,67,175,.12);
  animation: fadeInUp .7s ease .5s both;
}

.hero__stat-value {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--purple);
}

.hero__stat-label {
  font-size: .8rem;
  color: var(--text-light);
  font-weight: 600;
}

/* ============================================================
   BÖLÜM ORTAK
   ============================================================ */
.section {
  padding: 100px 0;
}

.section--alt {
  background: linear-gradient(180deg, #f9f7ff 0%, #f0fdf8 100%);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(104,67,175,.1);
  color: var(--purple);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section__title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__title span { color: var(--purple); }

.section__desc {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ============================================================
   ÖZELLİKLER
   ============================================================ */
.features__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.features__tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: 2px solid transparent;
  background: rgba(104,67,175,.08);
  color: var(--text-light);
  transition: var(--transition);
}

.features__tab.active,
.features__tab:hover {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.features__panel {
  display: none;
  animation: fadeInUp .4s ease both;
}

.features__panel.active { display: block; }

.features__age-badge {
  text-align: center;
  margin-bottom: 32px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(104,67,175,.08);
  border: 1px solid rgba(104,67,175,.08);
  transition: var(--transition);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(104,67,175,.2);
}

.feature-card__icon {
  width: 64px; height: 64px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

.feature-card__title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============================================================
   EBEVEYN PANELİ
   ============================================================ */
.parent__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.parent__content .section__tag { text-align: left; }
.parent__content .section__title { text-align: left; }

.parent__list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.parent__list-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(104,67,175,.05);
  border-radius: 14px;
  border-left: 4px solid var(--purple);
  transition: var(--transition);
}

.parent__list-item:hover {
  background: rgba(104,67,175,.1);
  transform: translateX(4px);
}

.parent__list-icon {
  width: 40px; height: 40px;
  background: var(--purple);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.parent__list-text strong { display: block; font-weight: 800; margin-bottom: 3px; }
.parent__list-text span   { font-size: .88rem; color: var(--text-light); }

.parent__visual {
  display: flex;
  justify-content: center;
}

.dashboard-mockup {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  padding: 24px;
  width: 100%;
  max-width: 460px;
  border: 1px solid rgba(104,67,175,.1);
}

.dashboard-mockup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(104,67,175,.1);
}

.dashboard-mockup__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.dash-dot--green { background: #4ade80; }

.dashboard-mockup__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lavender);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.dashboard-mockup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.dash-stat {
  background: linear-gradient(135deg, var(--mint), #a8f0d2);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.dash-stat:nth-child(2) { background: linear-gradient(135deg, var(--sky), #90d8f5); }
.dash-stat:nth-child(3) { background: linear-gradient(135deg, var(--lavender), #a8a0e8); }
.dash-stat:nth-child(4) { background: linear-gradient(135deg, #fde8c0, #fdd4a0); }

.dash-stat__value {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text);
}

.dash-stat__label {
  font-size: .75rem;
  color: var(--text-light);
  font-weight: 600;
}

.dashboard-mockup__activity {
  background: rgba(104,67,175,.04);
  border-radius: 14px;
  padding: 14px 16px;
}

.dash-activity-title {
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: 10px;
  color: var(--text);
}

.dash-activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .82rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(104,67,175,.06);
}

.dash-activity-item:last-child { border-bottom: none; }

.dash-activity-item__icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}

.dash-activity-item__name { flex: 1; font-weight: 600; color: var(--text); }
.dash-activity-item__time { font-size: .75rem; }

/* ============================================================
   YORUMLAR / TESTİMONYALLAR
   ============================================================ */
.testimonials {
  background: linear-gradient(135deg, #f5f0ff 0%, #e8f8f2 50%, #daf2fd 100%);
  padding: 100px 0;
  overflow: hidden;
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 20px 0;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  padding: 0 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-width: 300px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(104,67,175,.1);
  transition: var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-card__quote {
  font-size: 1.8rem;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card__text {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text);
}

.testimonial-card__text strong {
  color: var(--purple);
  font-weight: 800;
  font-size: 1.05rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.testimonial-card__name   { font-weight: 800; font-size: .9rem; }
.testimonial-card__role   { font-size: .8rem; color: var(--text-light); }

.testimonials__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  background: transparent;
  color: var(--purple);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--purple);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(104,67,175,.25);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   MARQUEE (kayan metin)
   ============================================================ */
.marquee-section {
  background: var(--purple);
  padding: 20px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.marquee-item__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
}

/* ============================================================
   NASIL ÇALIŞIR
   ============================================================ */
.how-it-works__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  position: relative;
}

.how-it-works__steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--lavender), var(--mint), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-card__number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--purple);
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(104,67,175,.2);
  transition: var(--transition);
}

.step-card:hover .step-card__number {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.1);
}

.step-card__icon { font-size: 2.4rem; margin-bottom: 10px; }

.step-card__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-card__desc {
  font-size: .9rem;
  color: var(--text-light);
}

/* ============================================================
   FİYATLANDIRMA
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(104,67,175,.08);
  border: 2px solid rgba(104,67,175,.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.pricing-card--featured {
  border-color: var(--purple);
  background: linear-gradient(135deg, #f5f0ff, #fff);
}

.pricing-card--featured::before {
  content: 'En Popüler';
  position: absolute;
  top: 16px; right: -28px;
  background: var(--purple);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(35deg);
}

.pricing-card__icon { font-size: 2.8rem; margin-bottom: 14px; }

.pricing-card__name {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--purple);
  line-height: 1;
  margin: 14px 0 4px;
}

.pricing-card__price span { font-size: 1rem; vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-card__period { font-size: .85rem; color: var(--text-light); margin-bottom: 24px; }

.pricing-card__features {
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}

.pricing-card__feature-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(104,67,175,.12);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  flex-shrink: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__desc {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn--white {
  background: var(--white);
  color: var(--purple);
}

.btn--white:hover {
  background: var(--mint);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.15);
}

.btn--white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}

.btn--white-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.8);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand { }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__logo-icon {
  width: 38px; height: 38px;
  background: var(--purple);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.footer__desc {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

.footer__col-title {
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--white); padding-left: 4px; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}

.footer__bottom-links a {
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}

.footer__bottom-links a:hover { color: var(--white); }

/* ============================================================
   SAYFA: GİZLİLİK / KULLANICI SÖZLEŞMESİ
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #f5f0ff 0%, #e8f8f2 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.page-hero__title {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple);
  margin-bottom: 14px;
}

.page-hero__date {
  font-size: .9rem;
  color: var(--text-light);
}

.legal-content {
  padding: 60px 0 100px;
}

.legal-content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--purple);
  margin: 36px 0 12px;
}

.legal-content h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 20px 0 8px;
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--text-light);
}

.legal-content ul li { margin-bottom: 6px; line-height: 1.7; }

.legal-content a { color: var(--purple); text-decoration: underline; }
.legal-content a:hover { color: var(--purple-dark); }

/* ============================================================
   ANİMASYONLAR
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.visible,
.reveal-right.visible { transform: translateX(0); opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .nav__mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav__mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav__mobile-menu a {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    transition: var(--transition);
  }

  .nav__mobile-menu a:hover { color: var(--purple); }

  .nav__mobile-close {
    position: absolute;
    top: 24px; right: 24px;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    z-index: 2001;
  }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__desc  { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__store-badges { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; margin-bottom: 20px; }
  .hero__phone-wrapper { width: 240px; }
  .hero__phone { width: 210px; height: 440px; }
  .hero__float-badge { display: none; }

  .parent__inner { grid-template-columns: 1fr; }
  .parent__content .section__tag,
  .parent__content .section__title { text-align: center; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .how-it-works__steps::before { display: none; }

  .section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; align-items: center; gap: 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 260px; max-width: 260px; }
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--purple);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 16px rgba(104,67,175,.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--purple-dark);
}
