:root {
  --green: #2C5650;
  --green-deep: #1F403B;
  --green-soft: #3E6B64;
  --cream: #F6F0E4;
  --cream-deep: #EFE7D6;
  --paper: #FBF7EE;
  --white: #FFFFFF;
  --peach: #F2A076;
  --peach-soft: #FCE2CC;
  --ink: #1B1F1D;
  --ink-2: #4A524F;
  --muted: #8A8F8C;
  --line: rgba(28, 38, 35, 0.08);
  --shadow-sm: 0 2px 8px rgba(28, 38, 35, 0.06);
  --shadow-md: 0 12px 30px -10px rgba(28, 38, 35, 0.18);
  --shadow-lg: 0 30px 60px -20px rgba(28, 38, 35, 0.25);
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--cream); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body { font-size: 16px; line-height: 1.5; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

.cursor-blob {
  position: fixed; top: 0; left: 0; width: 320px; height: 320px;
  border-radius: 50%; pointer-events: none; z-index: 1;
  background: radial-gradient(circle, rgba(242,160,118,0.22) 0%, rgba(242,160,118,0) 70%);
  transform: translate(-50%, -50%); transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1); mix-blend-mode: multiply;
}

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 40px; display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(246, 240, 228, 0.85); backdrop-filter: blur(14px); border-bottom-color: var(--line); padding: 12px 40px; }
.nav-logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 26px; letter-spacing: -0.01em; }
.nav-logo img { height: 56px; width: 56px; object-fit: contain; }
.nav-logo em { font-style: italic; color: var(--green); }
.nav-logo .wordmark { display: inline-flex; align-items: baseline; gap: 4px; }
.footer-brand .logo { display: inline-flex; align-items: center; gap: 14px; font-family: var(--serif); font-size: 32px; color: var(--cream); }
.footer-brand .logo img { height: 64px; width: 64px; object-fit: contain; filter: brightness(1.2); }
.nav-links { display: flex; gap: 32px; align-items: center; font-size: 14px; font-weight: 500; }
.nav-links a { position: relative; padding: 6px 0; color: var(--ink-2); transition: color 0.2s; }
.nav-links a:hover { color: var(--green); }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--green); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; font-size: 12px; font-family: var(--mono); }
.lang-switch button { padding: 5px 11px; border-radius: 999px; color: var(--muted); font-family: inherit; font-size: inherit; transition: all 0.2s; }
.lang-switch button.active { background: var(--green); color: var(--cream); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 14px; transition: transform 0.2s, box-shadow 0.2s, background 0.2s; cursor: pointer; }
.btn-primary { background: var(--green); color: var(--cream); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-peach { background: var(--peach); color: var(--ink); }
.btn-peach:hover { background: #ee8e5d; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--white); transform: translateY(-1px); }

/* Layout */
section { position: relative; padding: 120px 40px; }
.container { max-width: 1280px; margin: 0 auto; }

/* Hero */
.hero { padding-top: 160px; padding-bottom: 80px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero-brand { display: inline-flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.hero-brand img { height: 120px; width: 120px; object-fit: contain; flex-shrink: 0; }
.hero-brand-name { font-family: var(--serif); font-size: 26px; line-height: 1.05; }
.hero-brand-name em { font-style: italic; color: var(--green); }
.hero-brand-tag { font-family: var(--mono); font-size: 10px; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--green); padding: 6px 12px; border-radius: 999px; background: rgba(44, 86, 80, 0.08); margin-bottom: 28px; }
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.h1 { font-family: var(--serif); font-size: clamp(48px, 6.4vw, 92px); line-height: 0.98; letter-spacing: -0.02em; font-weight: 400; }
.h1 em { font-style: italic; color: var(--green); position: relative; display: inline-block; }
.h1 em::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0.06em; height: 0.34em; background: var(--peach-soft); z-index: -1; border-radius: 4px; transform: skewY(-2deg); }
.lede { font-size: 18px; color: var(--ink-2); margin: 28px 0 36px; max-width: 480px; line-height: 1.55; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: var(--ink); color: var(--cream); border-radius: 14px; transition: transform 0.2s, background 0.2s; }
.store-btn:hover { background: #000; transform: translateY(-2px); }
.store-btn .store-icon { width: 22px; height: 22px; }
.store-btn .store-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; text-align: left; }
.store-btn .store-text small { font-size: 10px; opacity: 0.7; font-weight: 400; }
.store-btn .store-text strong { font-size: 15px; font-weight: 600; }

.hero-stats { display: flex; gap: 36px; margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line); }
.stat-num { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--green); }
.stat-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-top: 6px; }

/* Phone */
.phone-stage { position: relative; display: flex; justify-content: center; align-items: center; height: 720px; }
.phone {
  position: relative; width: 320px; height: 660px; background: #1A1A1A; border-radius: 48px;
  padding: 8px; box-shadow: 0 50px 100px -30px rgba(28, 38, 35, 0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
  z-index: 3;
}
.phone-screen { width: 100%; height: 100%; background: var(--paper); border-radius: 40px; overflow: hidden; position: relative; }
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 110px; height: 28px; background: #000; border-radius: 999px; z-index: 10; }

.phone-notif {
  position: absolute; top: 56px; left: 50%; transform: translateX(-50%);
  width: 290px; padding: 12px 14px; border-radius: 22px;
  background: rgba(248, 246, 240, 0.78); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 18px 40px -16px rgba(28,38,35,0.35), 0 2px 6px rgba(28,38,35,0.08);
  display: flex; align-items: center; gap: 11px; z-index: 11;
  animation: notifDrop 1.4s cubic-bezier(0.2, 0.9, 0.25, 1.15) 0.6s both, notifFloat 5s ease-in-out 2.2s infinite;
}
.phone-notif .pn-icon { width: 38px; height: 38px; border-radius: 9px; object-fit: contain; background: #fff; padding: 4px; flex-shrink: 0; box-shadow: 0 1px 2px rgba(28,38,35,0.08); }
.phone-notif .pn-body { flex: 1; min-width: 0; }
.phone-notif .pn-head { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.08em; color: var(--ink-2); text-transform: uppercase; margin-bottom: 2px; }
.phone-notif .pn-app { font-weight: 700; color: var(--green); }
.phone-notif .pn-text { font-size: 13px; font-weight: 600; color: var(--ink); line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@keyframes notifDrop { 0% { opacity: 0; transform: translate(-50%, -60px) scale(0.85); } 60% { opacity: 1; transform: translate(-50%, 4px) scale(1.02); } 100% { opacity: 1; transform: translate(-50%, 0) scale(1); } }
@keyframes notifFloat { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -4px); } }

.float-card { position: absolute; background: var(--white); border-radius: 18px; padding: 14px 16px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; z-index: 4; border: 1px solid var(--line); }
.float-card .ic { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float-card .lbl { font-family: var(--mono); font-size: 10px; text-transform: uppercase; color: var(--muted); letter-spacing: 0.08em; }
.float-card .val { font-size: 14px; font-weight: 600; }

.gift-deco { position: absolute; pointer-events: none; z-index: 5; }
.gift-deco.gd-1 { top: 10%; left: -3%; animation: float1 8s ease-in-out infinite; }
.gift-deco.gd-2 { top: 60%; right: -2%; animation: float2 10s ease-in-out infinite; }
.gift-deco.gd-3 { top: 30%; right: 8%; animation: float1 12s ease-in-out infinite -2s; }
.gift-deco.gd-4 { bottom: 15%; left: 8%; animation: float2 9s ease-in-out infinite -3s; }
@keyframes float1 { 0%,100%{transform:translateY(0) rotate(-8deg)} 50%{transform:translateY(-20px) rotate(-4deg)} }
@keyframes float2 { 0%,100%{transform:translateY(0) rotate(6deg)} 50%{transform:translateY(-15px) rotate(12deg)} }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Section header */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 80px; }
.section-eyebrow { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--green); margin-bottom: 16px; display: inline-block; }
.section-title { font-family: var(--serif); font-size: clamp(36px, 4.4vw, 60px); line-height: 1.05; letter-spacing: -0.015em; }
.section-title em { font-style: italic; color: var(--green); }
.section-sub { color: var(--ink-2); font-size: 17px; margin-top: 20px; line-height: 1.55; }

/* Features */
.features { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--white); border-radius: 28px; padding: 36px; border: 1px solid var(--line); transition: transform 0.3s, box-shadow 0.3s; cursor: default; position: relative; overflow: hidden; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-card .num { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; }
.feature-card h3 { font-family: var(--serif); font-size: 30px; line-height: 1.1; margin: 14px 0 12px; font-weight: 400; }
.feature-card p { color: var(--ink-2); font-size: 15px; line-height: 1.55; margin-bottom: 28px; }
.feature-illu { aspect-ratio: 1.4; background: var(--cream); border-radius: 18px; overflow: hidden; position: relative; }

/* Scroll preview */
.preview { background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 60%); padding-top: 60px; padding-bottom: 60px; }
.preview-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: flex-start; }
.preview-sticky { position: sticky; top: 100px; display: flex; justify-content: center; align-items: center; }
.preview-steps { display: flex; flex-direction: column; gap: 200px; padding: 80px 0; }
.preview-step h3 { font-family: var(--serif); font-size: 44px; line-height: 1.05; margin: 10px 0 18px; font-weight: 400; }
.preview-step h3 em { font-style: italic; color: var(--green); }
.preview-step p { color: var(--ink-2); font-size: 17px; line-height: 1.6; max-width: 460px; }
.preview-tip { display: inline-flex; align-items: flex-start; gap: 10px; margin-top: 18px; padding: 12px 16px; background: var(--peach-soft); border-radius: 14px; font-size: 14px; line-height: 1.45; color: var(--ink); max-width: 440px; }
.preview-tip span { flex-shrink: 0; }
.step-num { font-family: var(--mono); font-size: 12px; color: var(--green); letter-spacing: 0.12em; padding: 6px 12px; border: 1px solid var(--green); border-radius: 999px; display: inline-block; }

/* Stores wall */
.stores { background: var(--green); color: var(--cream); overflow: hidden; }
.stores .section-title { color: var(--cream); }
.stores .section-title em { color: var(--peach); }
.stores .section-eyebrow { color: var(--peach); }
.stores .section-sub { color: rgba(246, 240, 228, 0.7); }
.marquee { display: flex; gap: 80px; margin-top: 80px; animation: marquee 40s linear infinite; white-space: nowrap; }
.marquee-row.r2 { animation-direction: reverse; animation-duration: 50s; margin-top: 24px; }
.marquee span { font-family: var(--serif); font-size: clamp(48px, 6vw, 88px); color: rgba(246, 240, 228, 0.55); font-style: italic; flex-shrink: 0; }
.marquee span:nth-child(even) { color: var(--peach); font-style: normal; }
@keyframes marquee { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

/* Testimonials */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border-radius: 24px; padding: 32px; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform 0.3s; }
.testi-card:hover { transform: translateY(-4px); }
.testi-card .quote-mark { font-family: var(--serif); font-size: 60px; line-height: 0.3; color: var(--peach); margin-bottom: 18px; }
.testi-card .body { font-size: 16px; line-height: 1.55; color: var(--ink); flex: 1; }
.testi-card .author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 18px; color: var(--green); }
.testi-card .name { font-weight: 600; font-size: 14px; }
.testi-card .handle { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* CTA */
.cta { background: var(--green); color: var(--cream); text-align: center; overflow: hidden; position: relative; }
.cta .section-title { color: var(--cream); }
.cta .section-title em { color: var(--peach); }
.cta-buttons { display: flex; gap: 12px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.cta .store-btn { background: var(--cream); color: var(--ink); }
.cta .store-btn:hover { background: var(--white); }
.cta-deco { position: absolute; pointer-events: none; opacity: 0.15; }

/* Footer */
footer { background: var(--green-deep); color: rgba(246, 240, 228, 0.7); padding: 80px 40px 40px; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(246, 240, 228, 0.1); }
.footer-brand .logo em { font-style: italic; color: var(--peach); }
.footer-brand p { margin-top: 16px; max-width: 280px; line-height: 1.5; font-size: 14px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cream); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--peach); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 30px; display: flex; justify-content: space-between; font-size: 12px; font-family: var(--mono); }
.socials { display: flex; gap: 14px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(246, 240, 228, 0.08); display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s; }
.socials a:hover { background: var(--peach); color: var(--ink); }

/* Phone screen content */
.ps-root { width: 100%; height: 100%; padding: 44px 18px 18px; display: flex; flex-direction: column; color: var(--ink); font-size: 12px; }
.ps-top { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; padding: 0 8px; margin-bottom: 10px; }
.ps-screen-fade { position: absolute; inset: 8px; border-radius: 40px; overflow: hidden; }

/* Responsive */
@keyframes blink { 50% { opacity: 0; } }
@media (max-width: 1024px) {
  section { padding: 90px 32px; }
  .nav { padding: 16px 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .phone-stage { height: auto; }
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
  .preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .preview-sticky { position: relative; top: 0; }
  .preview-steps { gap: 80px; padding: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 640px) {
  section { padding: 70px 20px; }
  .nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .hero { padding-top: 110px; }
  .lede { font-size: 16px; }
  .phone { width: 280px; height: 580px; }
  .hero-stats { flex-direction: column; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cursor-blob { display: none; }
}

/* ── Mobil Preview Telefon Bileşeni ── */
.preview-step-phone-mobile { display: none; }

.phone-preview-mobile {
  width: 220px;
  height: 450px;
  border-radius: 38px;
}
.phone-preview-mobile .phone-screen { border-radius: 30px; }
.phone-preview-mobile .phone-notch { width: 88px; height: 22px; }

.phone-screenshot-placeholder {
  width: 100%; height: 100%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.phone-placeholder-content {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.phone-placeholder-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.06em; line-height: 1.5;
}
.phone-screenshot-fill {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Mobil Düzeltmeleri (max-width: 768px) ── */
@media (max-width: 768px) {
  /* Yatay taşmayı önle */
  section { overflow-x: hidden; }

  /* Nav: wordmark gizle, sağ taraf kompakt */
  .nav { padding: 10px 16px; }
  .nav.scrolled { padding: 8px 16px; }
  .nav-logo .wordmark { display: none; }
  .nav-right { gap: 8px; }
  .lang-switch { font-size: 11px; padding: 2px; }
  .lang-switch button { padding: 8px 10px; min-width: 36px; text-align: center; }
  .nav .btn { padding: 9px 14px; font-size: 13px; }

  /* Hero: float kart gizle (ekrandan taşıyor) */
  .float-card { display: none; }

  /* Hero stats: yatay 3'lü grid + dikey ayırıcı */
  .hero-stats {
    flex-direction: row !important;
    gap: 0 !important;
    margin-top: 32px;
    flex-wrap: nowrap;
  }
  .hero-stats > div {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding: 0 8px;
    border-left: 1px solid var(--line);
  }
  .hero-stats > div:first-child {
    border-left: none;
    padding-left: 0;
  }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 10px; }

  /* Nasıl Kullanılır: her adımda kendi telefonu */
  .preview-grid { grid-template-columns: 1fr; gap: 0; }
  .preview-sticky { display: none; }
  .preview-step-phone-mobile {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  .preview-steps { gap: 56px; }
  .preview-step { opacity: 1 !important; }
  .preview-step h3 { font-size: 30px; }
}
