/* ════════════════════════════════════════════════════════════════
   ANI KAPSÜLÜ — Landing Page Stylesheet
   /assets/css/landing.css
   Tüm landing/anasayfa stilleri burada
   ════════════════════════════════════════════════════════════════ */

:root {
    --bg: #FDF8F4;
    --bg-soft: #F5EDE4;
    --bg-warm: #FAF1E8;
    --ink: #1F1410;
    --ink-soft: #5C4A3F;
    --ink-mute: #8B7568;
    --gul: #BE185D;
    --gul-soft: #F9E0E6;
    --gold: #B8956A;
    --gold-soft: #EFE3D2;
    --cream: #FFF9F2;
    --border: rgba(31, 20, 16, 0.08);
    --border-soft: rgba(31, 20, 16, 0.04);
    --shadow-sm: 0 1px 2px rgba(31, 20, 16, 0.04);
    --shadow-md: 0 8px 24px -8px rgba(31, 20, 16, 0.08);
    --shadow-lg: 0 24px 60px -20px rgba(31, 20, 16, 0.18);
    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Inter', -apple-system, system-ui, sans-serif;
}

* { box-sizing: border-box; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); margin: 0; padding: 0; overflow-x: hidden; }

/* Scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--gul), var(--gold)); z-index: 9999; width: 0; transition: width 0.1s ease; }

/* ── HERO ── */
.hero { position: relative; padding: 90px 24px 70px; overflow: hidden; min-height: 720px; display: flex; align-items: center; justify-content: center; }
.hero-bg-blob1 { position: absolute; top: -120px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle, rgba(190, 24, 93, 0.08), transparent 70%); border-radius: 50%; pointer-events: none; animation: floatBlob1 20s ease-in-out infinite; }
.hero-bg-blob2 { position: absolute; bottom: -180px; left: -120px; width: 540px; height: 540px; background: radial-gradient(circle, rgba(184, 149, 106, 0.08), transparent 70%); border-radius: 50%; pointer-events: none; animation: floatBlob2 25s ease-in-out infinite; }
.hero-bg-blob3 { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(190, 24, 93, 0.04), transparent 70%); border-radius: 50%; pointer-events: none; }
@keyframes floatBlob1 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(-20px, 30px); } }
@keyframes floatBlob2 { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(30px, -20px); } }

.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(31,20,16,0.03) 1px, transparent 1px); background-size: 28px 28px; opacity: 0.5; pointer-events: none; }

.petal { position: absolute; width: 22px; height: 22px; opacity: 0.6; animation: petalFall 14s linear infinite; pointer-events: none; }
.petal:nth-child(4) { left: 8%; animation-delay: 0s; animation-duration: 16s; }
.petal:nth-child(5) { left: 22%; animation-delay: -3s; animation-duration: 18s; width: 18px; height: 18px; }
.petal:nth-child(6) { left: 38%; animation-delay: -7s; animation-duration: 14s; }
.petal:nth-child(7) { left: 58%; animation-delay: -10s; animation-duration: 17s; width: 16px; height: 16px; }
.petal:nth-child(8) { left: 75%; animation-delay: -5s; animation-duration: 15s; }
.petal:nth-child(9) { left: 88%; animation-delay: -12s; animation-duration: 19s; width: 20px; height: 20px; }
.petal:nth-child(10) { left: 45%; animation-delay: -8s; animation-duration: 16s; width: 14px; height: 14px; }
@keyframes petalFall { 0% { top: -30px; transform: rotate(0deg) translateX(0); opacity: 0; } 10% { opacity: 0.6; } 90% { opacity: 0.6; } 100% { top: 105vh; transform: rotate(720deg) translateX(80px); opacity: 0; } }

.hero-side { position: absolute; top: 50%; transform: translateY(-50%); width: 220px; z-index: 2; display: flex; flex-direction: column; gap: 14px; }
.hero-side.left { left: 24px; }
.hero-side.right { right: 24px; }

.float-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-md); animation: floatY 4s ease-in-out infinite; }
.float-card.muted { opacity: 0.7; }
.fc-1 { animation-delay: 0s; } .fc-2 { animation-delay: -1s; } .fc-3 { animation-delay: -2s; } .fc-4 { animation-delay: -3s; }
.fc-5 { animation-delay: -0.5s; } .fc-6 { animation-delay: -1.5s; } .fc-7 { animation-delay: -2.5s; } .fc-8 { animation-delay: -3.5s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.float-card-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fci-gul { background: var(--gul-soft); color: var(--gul); }
.fci-rose { background: #FFE4E1; color: #D9436A; }
.fci-green { background: #DCFCE7; color: #16a34a; }
.fci-gold { background: var(--gold-soft); color: var(--gold); }
.float-card-info { flex: 1; min-width: 0; }
.float-card-name { font-size: 12px; font-weight: 600; color: var(--ink); }
.float-card-action { font-size: 10px; color: var(--ink-mute); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.float-card-time { font-size: 9px; color: var(--ink-mute); flex-shrink: 0; }

.hero-center { text-align: center; max-width: 720px; position: relative; z-index: 3; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 999px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500; margin-bottom: 28px; }
.hero-badge-icon { width: 6px; height: 6px; border-radius: 50%; background: var(--gul); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 { font-family: var(--serif); font-size: clamp(40px, 8vw, 72px); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 24px; }
.hero h1 .accent { font-style: italic; color: var(--gul); }

.hero-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 22px; }
.hero-divider-line { width: 42px; height: 1px; background: var(--border); }
.hero-divider-icon { color: var(--gul); font-size: 16px; opacity: 0.8; }

.hero-sub { font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 540px; margin: 0 auto 36px; }

.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: var(--ink); color: #fff; text-decoration: none; border-radius: 999px; font-size: 14px; font-weight: 500; transition: all 0.3s ease; border: 1px solid var(--ink); }
.btn-primary:hover { background: var(--gul); border-color: var(--gul); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; background: transparent; color: var(--ink); text-decoration: none; border-radius: 999px; font-size: 14px; font-weight: 500; border: 1px solid var(--border); transition: all 0.3s ease; }
.btn-secondary:hover { background: rgba(255,255,255,0.6); border-color: var(--ink); }

.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-val { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--ink); font-style: italic; }
.hero-stat-lbl { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ── MOBİL FLOATING CARDS MARQUEE ── */
.mobile-cards-marquee { display: none; padding: 24px 0; background: var(--bg); overflow: hidden; position: relative; }
.mobile-cards-marquee::before, .mobile-cards-marquee::after { content: ''; position: absolute; top: 0; width: 40px; height: 100%; z-index: 2; pointer-events: none; }
.mobile-cards-marquee::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.mobile-cards-marquee::after { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.mobile-cards-track { display: flex; gap: 12px; animation: marqueeScroll 28s linear infinite; width: max-content; }
.mobile-cards-track .float-card { min-width: 200px; animation: none; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ── EVENTS MARQUEE ── */
.events-marquee-section { padding: 56px 0 64px; background: linear-gradient(180deg, var(--bg), var(--bg-soft)); overflow: hidden; position: relative; }
.events-marquee-label { text-align: center; font-size: 11px; color: var(--ink-mute); letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 28px; font-weight: 500; }
.events-marquee { position: relative; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.events-marquee-track { display: flex; gap: 14px; animation: marqueeScroll 40s linear infinite; width: max-content; }
.event-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: #fff; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; color: var(--ink-soft); font-weight: 500; white-space: nowrap; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.event-chip-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--gul-soft); color: var(--gul); display: flex; align-items: center; justify-content: center; font-size: 11px; }

/* ── SECTION COMMON ── */
.section-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 14px; background: rgba(255,255,255,0.7); border: 1px solid var(--border); border-radius: 999px; font-size: 11px; color: var(--ink-soft); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; margin-bottom: 22px; }
.section-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gul); }
.section-title { font-family: var(--serif); font-size: clamp(34px, 5vw, 56px); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 18px; }
.section-ornament { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 auto 22px; }
.section-ornament-line { width: 36px; height: 1px; background: var(--border); }
.section-ornament-icon { color: var(--gul); font-size: 14px; opacity: 0.8; }
.section-sub { font-size: 16px; line-height: 1.7; color: var(--ink-soft); max-width: 640px; margin: 0 auto; }

/* ── STORY SECTION ── */
.story-section { padding: 100px 24px; background: var(--bg); }
.story-inner { max-width: 1180px; margin: 0 auto; }
.story-head { text-align: center; margin-bottom: 64px; }
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.story-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 36px 28px; text-align: center; transition: all 0.4s ease; }
.story-card:hover { border-color: var(--gul); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.story-card-icon { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--gul-soft); color: var(--gul); display: flex; align-items: center; justify-content: center; }
.story-card-num { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--gul); letter-spacing: 0.18em; margin-bottom: 14px; }
.story-card-title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--ink); margin: 0 0 12px; }
.story-card-text { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ── CAPSULE SECTION ── */
.capsule-section { padding: 100px 24px; background: var(--bg-soft); position: relative; overflow: hidden; }
.capsule-section::before { content: ''; position: absolute; top: -200px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(190, 24, 93, 0.05), transparent 70%); border-radius: 50%; pointer-events: none; }
.capsule-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.capsule-text h2 { font-family: var(--serif); font-size: clamp(34px, 4.5vw, 52px); font-weight: 500; line-height: 1.1; margin: 0 0 22px; color: var(--ink); }
.capsule-text h2 em { font-style: italic; color: var(--gul); }
.capsule-text-desc { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 32px; }
.capsule-features { display: grid; gap: 14px; margin-bottom: 36px; }
.capsule-feature { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.capsule-feature-dot { width: 28px; height: 28px; border-radius: 50%; background: #fff; color: var(--gul); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }

.capsule-ui-wrap { position: relative; }
.capsule-ui-deco-1 { position: absolute; top: -40px; left: -40px; width: 80px; color: var(--gul); opacity: 0.5; animation: spin 30s linear infinite; }
.capsule-ui-deco-2 { position: absolute; bottom: -30px; right: -20px; width: 60px; color: var(--gold); opacity: 0.5; }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.capsule-ui { background: #fff; border: 1px solid var(--border); border-radius: 28px; padding: 28px; box-shadow: var(--shadow-lg); position: relative; }
.capsule-ui-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.capsule-ui-tag { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--ink); font-weight: 600; }
.capsule-ui-live { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; background: var(--gul-soft); color: var(--gul); border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.capsule-ui-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gul); animation: pulse 1.5s infinite; }

.capsule-ui-cover { background: linear-gradient(135deg, var(--gul-soft), var(--gold-soft)); border-radius: 18px; padding: 28px 22px; text-align: center; margin-bottom: 22px; position: relative; overflow: hidden; }
.capsule-ui-cover::before { content: ''; position: absolute; top: -50%; right: -30%; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 70%); border-radius: 50%; }
.capsule-ui-cover-label { font-family: var(--serif); font-style: italic; font-size: 11px; color: var(--gul); letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 8px; position: relative; }
.capsule-ui-cover-name { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--ink); margin: 0 0 6px; position: relative; }
.capsule-ui-cover-name .amp { font-style: italic; color: var(--gul); padding: 0 4px; }
.capsule-ui-cover-date { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; margin: 0; position: relative; }

.capsule-ui-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.capsule-ui-stat { text-align: center; padding: 14px 8px; background: var(--bg); border-radius: 12px; border: 1px solid var(--border-soft); }
.capsule-ui-stat-val { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gul); font-style: italic; }
.capsule-ui-stat-lbl { font-size: 10px; color: var(--ink-mute); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

.capsule-ui-feed { display: flex; flex-direction: column; gap: 10px; min-height: 200px; }
.capsule-ui-feed-item { display: flex; align-items: center; gap: 12px; padding: 12px; background: var(--bg); border-radius: 12px; border: 1px solid var(--border-soft); }
.capsule-ui-feed-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--gul-soft); color: var(--gul); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.capsule-ui-feed-info { flex: 1; min-width: 0; }
.capsule-ui-feed-title { font-size: 13px; font-weight: 500; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.capsule-ui-feed-sub { font-size: 11px; color: var(--ink-mute); margin-top: 2px; }
.capsule-ui-feed-time { font-size: 11px; color: var(--ink-mute); flex-shrink: 0; font-weight: 500; }
@keyframes feedSlideIn { 0% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 1; transform: translateY(0); } }


/* ════════════════════════════════════════════════════════════════
   ★ DEVICES SECTION — MOCKUP İÇLERİ GÜZELLEŞTİRİLDİ
   Her .device-screen-img kutusu artık gradient + dekoratif kompozisyon
   ════════════════════════════════════════════════════════════════ */
.devices-section { padding: 100px 24px; background: var(--bg); }
.devices-inner { max-width: 1180px; margin: 0 auto; }
.devices-head { text-align: center; margin-bottom: 56px; }
.devices-stage { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 16px; min-height: 480px; flex-wrap: nowrap; }

/* TELEFON */
.device.phone { width: 200px; height: 410px; background: linear-gradient(160deg, #2b2b2b, #0a0a0a); border-radius: 32px; padding: 8px; box-shadow: 0 24px 50px -10px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05); position: relative; z-index: 2; }
.device.phone .notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 60px; height: 16px; background: #000; border-radius: 0 0 10px 10px; z-index: 3; }
.device.phone .screen { width: 100%; height: 100%; background: var(--bg); border-radius: 26px; overflow: hidden; position: relative; }

/* LAPTOP */
.device.laptop { width: 480px; height: 340px; position: relative; z-index: 1; flex-shrink: 1; }
.device.laptop .screen-wrap { width: 100%; height: 300px; background: linear-gradient(160deg, #2b2b2b, #0a0a0a); border-radius: 12px 12px 4px 4px; padding: 14px 14px 4px; box-shadow: 0 24px 50px -10px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05); }
.device.laptop .screen { width: 100%; height: 100%; background: var(--bg); border-radius: 4px; overflow: hidden; }
.device.laptop .base { width: 540px; height: 12px; background: linear-gradient(180deg, #1a1a1a, #0a0a0a); margin: 0 auto; border-radius: 0 0 14px 14px; position: relative; margin-left: -30px; }
.device.laptop .base::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 6px; background: rgba(0,0,0,0.4); border-radius: 0 0 8px 8px; }

/* TABLET */
.device.tablet { width: 220px; height: 300px; background: linear-gradient(160deg, #2b2b2b, #0a0a0a); border-radius: 22px; padding: 10px; box-shadow: 0 24px 50px -10px rgba(0,0,0,0.4); position: relative; z-index: 2; }
.device.tablet .screen { width: 100%; height: 100%; background: var(--bg); border-radius: 14px; overflow: hidden; }

/* Cihaz ekran içi */
.device-screen-content { padding: 12px; height: 100%; display: flex; flex-direction: column; }
.device-screen-head { display: flex; justify-content: space-between; align-items: center; padding: 4px 4px 10px; border-bottom: 1px solid var(--border-soft); margin-bottom: 10px; }
.device-screen-title { font-family: var(--serif); font-style: italic; font-size: 11px; color: var(--ink); font-weight: 600; }
.device-screen-tag { font-size: 8px; color: var(--gul); background: var(--gul-soft); padding: 2px 6px; border-radius: 999px; font-weight: 600; letter-spacing: 0.06em; }
.device-screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; flex: 1; overflow: hidden; }

/* ★ MOCKUP IMG KUTU — GÜZELLEŞTİRİLDİ
   Her kutu farklı gradient + dekoratif SVG silüet
   Pseudo-elementlerle altın oran kompozisyonu */
.device-screen-img { 
    border-radius: 4px; 
    aspect-ratio: 1; 
    position: relative; 
    overflow: hidden;
    transition: transform 0.3s ease;
}
.device-screen-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: 1;
}
.device-screen-img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.7;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

/* Her kutu için farklı kompozisyon (8 varyasyon, döngülü) */
.device-screen-img:nth-child(8n+1) {
    background: linear-gradient(135deg, #FFE4E1 0%, #FFC2B4 50%, #E89B97 100%);
}
.device-screen-img:nth-child(8n+1)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23BE185D' opacity='0.5'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.device-screen-img:nth-child(8n+2) {
    background: linear-gradient(135deg, #F9E0E6 0%, #E8B4C1 50%, #BE185D 100%);
}
.device-screen-img:nth-child(8n+2)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.6'%3E%3Ccircle cx='8' cy='14' r='4' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3Ccircle cx='16' cy='14' r='4' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
}

.device-screen-img:nth-child(8n+3) {
    background: linear-gradient(135deg, #EFE3D2 0%, #D9C0A0 50%, #B8956A 100%);
}
.device-screen-img:nth-child(8n+3)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.7'%3E%3Cpath d='M12 2 14 10 22 12 14 14 12 22 10 14 2 12 10 10z'/%3E%3C/svg%3E");
}

.device-screen-img:nth-child(8n+4) {
    background: linear-gradient(135deg, #F3E8FF 0%, #D8B4FE 50%, #9333EA 100%);
}
.device-screen-img:nth-child(8n+4)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.6'%3E%3Cpath d='M12 2C8 6 5 10 5 14a7 7 0 0 0 14 0c0-4-3-8-7-12z'/%3E%3C/svg%3E");
}

.device-screen-img:nth-child(8n+5) {
    background: linear-gradient(135deg, #FFE4F1 0%, #FFA8C8 50%, #EC4899 100%);
}
.device-screen-img:nth-child(8n+5)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.55'%3E%3Cpath d='M21 19V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2zM8.5 13.5l2.5 3 3.5-4.5L19 18H5l3.5-4.5z'/%3E%3C/svg%3E");
}

.device-screen-img:nth-child(8n+6) {
    background: linear-gradient(135deg, #FEF3C7 0%, #FCD34D 50%, #D97706 100%);
}
.device-screen-img:nth-child(8n+6)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.65'%3E%3Cpolygon points='12 2 15 8 22 9 17 14 18 21 12 18 6 21 7 14 2 9 9 8'/%3E%3C/svg%3E");
}

.device-screen-img:nth-child(8n+7) {
    background: linear-gradient(135deg, #DCFCE7 0%, #86EFAC 50%, #16A34A 100%);
}
.device-screen-img:nth-child(8n+7)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.6'%3E%3Cpath d='M12 2L13.09 8.26L22 9.27L15.55 14.14L17.18 22L12 17.77L6.82 22L8.45 14.14L2 9.27L10.91 8.26L12 2z'/%3E%3C/svg%3E");
}

.device-screen-img:nth-child(8n) {
    background: linear-gradient(135deg, #FFEDD5 0%, #FDBA74 50%, #EA580C 100%);
}
.device-screen-img:nth-child(8n)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff' opacity='0.6'%3E%3Cpath d='M9 11.5C9 10.67 9.67 10 10.5 10s1.5.67 1.5 1.5S11.33 13 10.5 13S9 12.33 9 11.5zM13.5 10c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86C5.04 11.66 7 11 9 11c1.83 0 3.43.85 4.5 2.18C14.57 11.85 16.17 11 18 11c2 0 3.96.66 4.95 2.14.03.28.05.57.05.86 0 4.41-3.59 8-8 8z'/%3E%3C/svg%3E");
}

/* Hafif hover efekti */
.device:hover .device-screen-img { transform: scale(0.98); }
.device-screen-img:hover { transform: scale(1.05); z-index: 3; }

.devices-labels { display: flex; justify-content: center; gap: 32px; margin-top: 56px; flex-wrap: wrap; }
.devices-labels span { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }


/* ── STEPS SECTION ── */
.steps-section { padding: 100px 24px; background: var(--bg-soft); position: relative; }
.steps-inner { max-width: 1180px; margin: 0 auto; }
.steps-head { text-align: center; margin-bottom: 72px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps-connector { position: absolute; top: 60px; left: 16%; right: 16%; height: 2px; background-image: linear-gradient(90deg, var(--gul) 50%, transparent 50%); background-size: 12px 2px; opacity: 0.3; z-index: 0; }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 36px 28px; text-align: center; position: relative; z-index: 1; transition: all 0.4s ease; }
.step-card:hover { border-color: var(--gul); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.step-number { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--gul); letter-spacing: 0.18em; margin-bottom: 14px; }
.step-circle { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; background: linear-gradient(135deg, var(--gul-soft), var(--gold-soft)); color: var(--gul); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px -10px var(--gul); }
.step-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); margin: 0 0 12px; }
.step-desc { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ── TIMELINE SECTION ── */
.timeline-section { padding: 100px 24px; background: var(--bg); }
.timeline-inner { max-width: 760px; margin: 0 auto; }
.timeline-head { text-align: center; margin-bottom: 56px; }
.timeline-wrap { position: relative; padding-left: 40px; }
.timeline-wrap::before { content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--gul), var(--gold)); border-radius: 2px; }
.timeline-item { position: relative; padding: 0 0 36px 32px; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 3px solid var(--gul); box-shadow: 0 0 0 4px var(--bg); }
.timeline-time { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--gul); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; }
.timeline-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); margin: 0 0 8px; }
.timeline-desc { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ── FEATURES SECTION ── */
.features-section { padding: 100px 24px; background: var(--bg-soft); }
.features-inner { max-width: 1180px; margin: 0 auto; }
.features-head { text-align: center; margin-bottom: 64px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 32px 26px; transition: all 0.3s ease; }
.feature-card:hover { border-color: var(--gul); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; border-radius: 14px; background: var(--gul-soft); color: var(--gul); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); margin: 0 0 10px; }
.feature-desc { font-size: 14px; line-height: 1.7; color: var(--ink-soft); margin: 0; }

/* ── PROOF SECTION ── */
.proof-section { padding: 100px 24px; background: var(--bg); }
.proof-inner { max-width: 1180px; margin: 0 auto; }
.proof-head { text-align: center; margin-bottom: 48px; }

.testimonial-marquee { padding: 24px 0; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); margin-bottom: 48px; }
.testimonial-marquee-track { display: flex; gap: 14px; animation: marqueeScroll 40s linear infinite; width: max-content; }
.testimonial-mini { display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px; background: #fff; border: 1px solid var(--border); border-radius: 999px; white-space: nowrap; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.testimonial-mini-stars { color: #F59E0B; font-size: 12px; letter-spacing: 0.05em; }
.testimonial-mini-text { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

.quote-card { max-width: 700px; margin: 0 auto 56px; padding: 40px 32px; background: linear-gradient(135deg, var(--gul-soft), var(--gold-soft)); border-radius: 22px; text-align: center; position: relative; }
.quote-card::before { content: '"'; position: absolute; top: -10px; left: 30px; font-family: var(--serif); font-size: 90px; color: var(--gul); opacity: 0.2; line-height: 1; }
.quote-text { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.6; color: var(--ink); margin: 0 0 18px; }
.quote-author { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.06em; font-weight: 500; }

.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px; transition: all 0.3s ease; }
.testimonial-card:hover { border-color: var(--gul); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #F59E0B; font-size: 14px; letter-spacing: 0.06em; margin-bottom: 14px; }
.testimonial-text { font-family: var(--serif); font-size: 15px; line-height: 1.7; font-style: italic; color: var(--ink-soft); margin: 0 0 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-soft); }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gul), var(--gold)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--ink); margin: 0; }
.testimonial-event { font-size: 11px; color: var(--ink-mute); margin: 2px 0 0; letter-spacing: 0.04em; }

/* ── TRUST SECTION ── */
.trust-section { padding: 60px 24px; background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.trust-label { font-size: 11px; color: var(--ink-mute); letter-spacing: 0.18em; text-transform: uppercase; margin: 0 0 28px; font-weight: 500; }
.trust-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--ink-soft); transition: all 0.3s ease; }
.trust-item:hover { color: var(--gul); transform: translateY(-2px); }
.trust-item-icon { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--gul); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.trust-item-label { font-size: 11px; letter-spacing: 0.06em; font-weight: 500; }

/* ── PACKAGES SECTION ── */
.packages-section { padding: 100px 24px; background: var(--bg); }
.packages-inner { max-width: 1180px; margin: 0 auto; }
.packages-head { text-align: center; margin-bottom: 64px; }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; padding-top: 14px; }
.package-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 36px 28px; position: relative; overflow: visible; transition: all 0.4s ease; }
.package-card:hover { border-color: var(--gul); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.package-card.featured { border-color: var(--gul); background: linear-gradient(180deg, #fff, var(--gul-soft) 200%); transform: scale(1.02); }
.package-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.package-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gul); color: #fff; padding: 5px 14px; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; box-shadow: 0 4px 12px -2px rgba(190, 24, 93, 0.4); }
.package-name { font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.package-price { font-family: var(--serif); font-size: 48px; font-weight: 600; color: var(--ink); }
.package-price-currency { font-size: 22px; vertical-align: super; margin-right: 4px; }
.package-price-period { font-size: 13px; color: var(--ink-mute); margin-left: 6px; }
.package-installment { font-size: 11px; color: var(--gul); margin: 4px 0 22px; letter-spacing: 0.04em; font-weight: 500; }
.package-features-list { list-style: none; padding: 0; margin: 0 0 28px; }
.package-features-list li { padding: 8px 0; font-size: 13px; color: var(--ink-soft); border-bottom: 1px solid var(--border-soft); position: relative; padding-left: 22px; }
.package-features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gul); font-weight: 700; }
.package-features-list li:last-child { border-bottom: 0; }
.package-btn { display: block; text-align: center; padding: 14px; border-radius: 999px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.3s ease; }
.package-btn-primary { background: var(--gul); color: #fff; }
.package-btn-primary:hover { background: var(--ink); }
.package-btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.package-btn-secondary:hover { background: var(--ink); color: #fff; border-color: var(--ink); }


/* ── FAQ SECTION ── */
.faq-section { padding: 100px 24px; background: var(--bg-soft); }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-head { text-align: center; margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: var(--gul); }
.faq-q { width: 100%; padding: 22px 24px; background: transparent; border: 0; cursor: pointer; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--ink); text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon { font-size: 22px; color: var(--gul); transition: transform 0.3s ease; font-weight: 300; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.4s ease; font-size: 14px; line-height: 1.7; color: var(--ink-soft); }
.faq-item.open .faq-a { padding: 0 24px 22px; max-height: 400px; }

/* ── CTA SECTION ── */
.cta-section { padding: 100px 24px; background: linear-gradient(135deg, var(--ink), #2a1a14); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(190, 24, 93, 0.2), transparent 70%); border-radius: 50%; }
.cta-section::after { content: ''; position: absolute; bottom: -150px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(184, 149, 106, 0.2), transparent 70%); border-radius: 50%; }
.cta-inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-icon { width: 64px; height: 64px; margin: 0 auto 22px; border-radius: 50%; background: var(--gul); color: #fff; display: flex; align-items: center; justify-content: center; animation: pulse 2s infinite; box-shadow: 0 0 0 0 rgba(190, 24, 93, 0.5); }
.cta-section h2 { font-family: var(--serif); font-size: clamp(36px, 5vw, 56px); font-weight: 500; line-height: 1.1; color: #fff; margin: 0 0 22px; letter-spacing: -0.02em; }
.cta-section p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto 36px; }
.cta-section .btn-primary { background: var(--gul); border-color: var(--gul); }
.cta-section .btn-primary:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-section .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.2); }
.cta-section .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); }

/* ════════════════════════════════════════════════════════════════
   ★ RESPONSIVE — MOBİL
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .hero { padding: 60px 18px 40px; min-height: auto; }
    .hero-side { display: none; }
    .mobile-cards-marquee { display: block; }
    .hero-stats { gap: 28px; }
    .capsule-inner { grid-template-columns: 1fr; gap: 48px; }
    .steps-grid { grid-template-columns: 1fr; gap: 18px; }
    .steps-connector { display: none; }
    
    /* Devices stage - mobil */
    .devices-stage { flex-direction: column; align-items: center; gap: 40px; min-height: auto; padding: 20px 0; }
    .device.phone { width: 180px; height: 360px; }
    .device.laptop { width: 100%; max-width: 400px; height: auto; }
    .device.laptop .screen-wrap { height: 240px; }
    .device.laptop .base { width: 100%; margin-left: 0; }
    .device.tablet { width: 200px; height: 280px; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 38px; }
    .hero-sub { font-size: 14px; }
    .hero-stats { gap: 20px; }
    .hero-stat-val { font-size: 26px; }
    .section-title { font-size: 32px; }
    .quote-card { padding: 28px 22px; }
    .quote-text { font-size: 17px; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .trust-grid { gap: 24px; }
    .packages-grid { grid-template-columns: 1fr; }
    .capsule-ui { padding: 22px 18px; }
    .capsule-ui-feed-title { font-size: 12px; }
    .capsule-ui-feed-sub { font-size: 10px; }
    
    /* Mobile devices */
    .device.phone { width: 160px; height: 320px; }
    .device.tablet { width: 180px; height: 250px; }
    .device-screen-title { font-size: 10px; }
    .device-screen-tag { font-size: 7px; }
}