/* ═══════════════════════════════════
   CreatorApp24 — Ana CSS
   creatorapp24.com
═══════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

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

:root {
  --bg:        #ffffff;
  --surface:   #f8f9fb;
  --card:      #ffffff;
  --border:    rgba(0,0,0,0.07);
  --border2:   rgba(0,0,0,0.04);
  --accent:    #1f6feb;
  --accent2:   #1f6feb;
  --accent3:   #1f6feb;
  --text:      #111827;
  --muted:     #6b7280;
  --muted2:    #9ca3af;
  --gradient:  linear-gradient(135deg, #1f6feb, #06b6d4);
  --grad-soft: linear-gradient(135deg, #eff6ff, #f0fdff);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}



/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: rgba(247,245,242,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: -0.03em; text-decoration: none; white-space: nowrap;
}
.logo .creator { color: var(--text); }
.logo .app { color: var(--accent); }
.logo .num { color: var(--muted2); font-size: 0.95rem; font-weight: 600; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent); color: #fff;
  font-weight: 700; font-size: 0.83rem;
  padding: 9px 20px; border-radius: 100px;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(31,111,235,0.2);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(31,111,235,0.35); }
@media(max-width:700px){ .nav-links { display: none; } }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 120px 5% 80px; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border);
  color: var(--accent); font-size: 0.78rem; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  animation: fadeUp 0.6s ease both;
  letter-spacing: 0.01em;
}
.badge-dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }

h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 400; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 24px;
  color: var(--text);
  animation: fadeUp 0.6s 0.1s ease both;
}
h1 em {
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted); max-width: 560px;
  margin: 0 auto 44px; font-weight: 400;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; animation: fadeUp 0.6s 0.3s ease both; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(31,111,235,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(31,111,235,0.4); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--border);
  color: var(--text); font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 100px; text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.btn-secondary:hover { border-color: rgba(0,0,0,0.18); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

/* ── PHONE MOCKUP ── */
.mockup-row { display: flex; justify-content: center; gap: 16px; margin-top: 64px; animation: fadeUp 0.7s 0.4s ease both; }
.phone { width: 120px; height: 240px; background: var(--card); border: 1.5px solid var(--border); border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.phone.center { transform: scale(1.13) translateY(-12px); box-shadow: 0 30px 80px rgba(0,0,0,0.1); border-color: var(--accent); }
.phone-notch { width: 40px; height: 6px; background: var(--border); border-radius: 4px; margin: 11px auto 9px; }
.phone-screen { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.ph-bar { height: 7px; border-radius: 4px; background: rgba(0,0,0,0.07); }
.ph-bar.accent { background: var(--gradient); width: 60%; }
.ph-bar.w80 { width: 80%; } .ph-bar.w50 { width: 50%; }
.ph-card { height: 50px; border-radius: 10px; background: rgba(0,0,0,0.04); margin-top: 4px; }
@media(max-width:640px){ .mockup-row .phone:not(.center){ display:none; } }

/* ── STATS ── */
.stats { display: flex; justify-content: center; flex-wrap: wrap; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; position: relative; z-index: 1; }
.stat { flex: 1; min-width: 130px; padding: 28px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Instrument Serif', serif; font-size: 2.4rem; font-weight: 400; color: var(--accent); line-height: 1.1; }
.stat-label { color: var(--muted); font-size: 0.78rem; margin-top: 3px; font-weight: 500; }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; padding: 80px 5%; }
.section-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
h2 { font-family: 'Instrument Serif', serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 14px; color: var(--text); }
.section-sub { color: var(--muted); font-size: 0.97rem; max-width: 480px; font-weight: 400; }

/* ── SERVICES ── */
#hizmetler { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 44px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.14); }
.service-icon { width: 46px; height: 46px; background: var(--grad-soft); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.service-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-card p { color: var(--muted); font-size: 0.86rem; line-height: 1.6; }
.service-type-tag { display: inline-block; font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; margin-bottom: 12px; letter-spacing: 0.05em; }
.tag-webview { background: #eff6ff; color: var(--accent); border: 1px solid rgba(31,111,235,0.18); }
.tag-native  { background: #f0fdff; color: #0891b2; border: 1px solid rgba(8,145,178,0.2); }
.tag-extra   { background: #f5f5f7; color: var(--muted); border: 1px solid var(--border); }

/* ── REVIEWS ── */
#yorumlar { background: var(--bg); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; margin-top: 44px; }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.review-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.08); }
.review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { color: var(--muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.9rem; color: #fff; flex-shrink: 0; }
.review-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--text); }
.review-meta { color: var(--muted2); font-size: 0.76rem; margin-top: 2px; }
.verified-badge { display: inline-flex; align-items: center; gap: 4px; background: #f0fdf4; color: #16a34a; font-size: 0.68rem; font-weight: 600; padding: 2px 8px; border-radius: 100px; margin-top: 5px; border: 1px solid rgba(22,163,74,0.2); }
.quote-mark { position: absolute; top: 16px; right: 20px; font-size: 4rem; line-height: 1; color: rgba(31,111,235,0.05); font-family: 'Instrument Serif', serif; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 0; margin-top: 56px; position: relative; }
.steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent); }
@media(max-width:640px){ .steps::before { display:none; } }
.step { text-align: center; padding: 0 14px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--card); border: 1.5px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.06); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.1rem; margin: 0 auto 16px; position: relative; z-index: 1; color: var(--accent); }
.step h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.step p { color: var(--muted); font-size: 0.83rem; }

/* ── PRICING ── */
#fiyatlar { background: var(--surface); }
.price-tabs { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 36px; margin-bottom: 32px; }
.tab-btn { padding: 8px 18px; border-radius: 100px; border: 1px solid var(--border); background: var(--card); color: var(--muted); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.tab-btn.active { background: var(--text); color: #fff; border-color: var(--text); }
.tab-btn:hover:not(.active) { border-color: rgba(0,0,0,0.18); color: var(--text); }
.price-panel { display: none; }
.price-panel.active { display: grid; }
.pricing-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 980px; }

.price-card { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 32px 28px; position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.price-card.featured { border-color: var(--accent); background: linear-gradient(160deg, #eff6ff, var(--card)); box-shadow: 0 4px 30px rgba(31,111,235,0.1); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient); color: #fff; font-weight: 700; font-size: 0.7rem; padding: 5px 14px; border-radius: 100px; white-space: nowrap; }

.price-label { display: inline-block; font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; margin-bottom: 10px; letter-spacing: 0.05em; }
.price-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }

/* Fiyat bloğu — eski fiyat üstü çizili, yeni fiyat büyük */
.price-block { margin: 14px 0 4px; }
.price-old { font-size: 1rem; color: var(--muted2); text-decoration: line-through; margin-bottom: 2px; font-weight: 500; }
.price-new { font-family: 'Instrument Serif', serif; font-size: 3rem; font-weight: 400; color: var(--text); line-height: 1; }
.price-new .currency { font-size: 1.4rem; vertical-align: super; line-height: 0; color: var(--accent); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; }
.price-new .period { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.price-discount { display: inline-block; background: #fef3c7; color: #b45309; font-size: 0.72rem; font-weight: 700; padding: 2px 8px; border-radius: 6px; margin-left: 6px; }
.price-desc { color: var(--muted); font-size: 0.82rem; margin-bottom: 20px; margin-top: 4px; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.price-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.86rem; color: var(--text); }
.price-features li::before { content: '✓'; color: #16a34a; font-weight: 800; flex-shrink: 0; margin-top: 1px; font-size: 0.8rem; }

.btn-card { display: block; width: 100%; text-align: center; padding: 13px; border-radius: 100px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.btn-card.primary { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(31,111,235,0.2); }
.btn-card.primary:hover { box-shadow: 0 8px 24px rgba(31,111,235,0.35); transform: translateY(-1px); }
.btn-card.outline { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn-card.outline:hover { border-color: rgba(0,0,0,0.2); background: rgba(0,0,0,0.02); }
.btn-card.dark { background: var(--text); color: #fff; }
.btn-card.dark:hover { opacity: 0.85; }

.price-note { margin-top: 24px; padding: 16px 20px; background: #fff; border: 1px solid var(--border); border-radius: 14px; color: var(--muted); font-size: 0.84rem; line-height: 1.6; max-width: 980px; }
.price-note strong { color: var(--accent); }

/* ── FAQ ── */
.faq-list { max-width: 680px; margin: 44px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; font-weight: 600; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; gap: 12px; }
.faq-arrow { color: var(--muted2); transition: transform 0.3s; flex-shrink: 0; font-size: 0.9rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; color: var(--muted); font-size: 0.87rem; line-height: 1.7; }
.faq-item.open .faq-a { max-height: 220px; padding: 0 20px 18px; }

/* ── CTA ── */
.cta-section { text-align: center; background: #f0f7ff; border-top: 1px solid rgba(31,111,235,0.12); }
.cta-section .section-tag { color: var(--accent); }
.cta-section h2 { margin-bottom: 12px; color: var(--text); }
.cta-section .section-sub { margin: 0 auto 36px; color: var(--muted); }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 11px; background: #25D366; color: #fff; font-weight: 700; font-size: 1.02rem; padding: 16px 36px; border-radius: 100px; text-decoration: none; box-shadow: 0 8px 30px rgba(37,211,102,0.35); transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,0.5); }
.whatsapp-icon { width: 22px; height: 22px; }

/* ── FOOTER ── */
footer { background: #f8f9fb; border-top: 1px solid var(--border); padding: 32px 5%; text-align: center; color: var(--muted); font-size: 0.8rem; position: relative; z-index: 1; }
footer .logo { display: inline-block; margin-bottom: 10px; }
footer .logo .creator { color: var(--text); }
footer .logo .app { color: var(--accent); -webkit-text-fill-color: var(--accent); }
footer .logo .num { color: var(--muted2); }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--accent); }

/* ── FLOATING WA ── */
.float-wa { position: fixed; bottom: 26px; right: 26px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,0.4); text-decoration: none; z-index: 200; transition: transform 0.2s, box-shadow 0.2s; animation: bounceIn 0.8s 1s ease both; }
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* ── ANIMATIONS ── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse   { 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }
@keyframes bounceIn{ from { opacity:0; transform:scale(0.5); } to { opacity:1; transform:scale(1); } }
