/* ===== FONT FALLBACK ===== */
@font-face { font-family: 'Poppins'; font-display: swap; }
@font-face { font-family: 'Playfair Display'; font-display: swap; }
@font-face { font-family: 'Dancing Script'; font-display: swap; }

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #00ADB5;
    --primary-dark: #007A80;
    --primary-light: #4FD3DA;
    --rose-gold: #D4A574;
    --rose-gold-light: #E8C9A0;
    --rose-gold-dark: #B08555;
    --blush: #E8B4B8;
    --blush-light: #F5DCDE;
    --navy: #1A2238;
    --navy-light: #2A3458;
    --navy-dark: #0F1525;
    --cream: #FFF8F3;
    --cream-dark: #F5EDE2;
    --text-dark: #2D3142;
    --text-light: #6B7280;
    --white: #fff;
    --black: #000;
    --gradient-hero: linear-gradient(135deg, #1A2238 0%, #00ADB5 50%, #D4A574 100%);
    --gradient-card: linear-gradient(135deg, #00adb50d 0%, #d4a57414 100%);
    --gradient-btn: linear-gradient(135deg, #00ADB5 0%, #D4A574 100%);
    --gradient-btn-hover: linear-gradient(135deg, #D4A574 0%, #E8B4B8 100%);
    --gradient-text: linear-gradient(135deg, #D4A574 0%, #E8B4B8 50%, #00ADB5 100%);
    --gradient-gold: linear-gradient(135deg, #D4A574 0%, #B08555 100%);
    --shadow-soft: 0 10px 40px #1a223814;
    --shadow-medium: 0 15px 50px #1a22381f;
    --shadow-hover: 0 25px 70px #00adb540;
    --shadow-gold: 0 15px 40px #d4a57466;
    --shadow-glow: 0 0 60px #d4a57480;
    --transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all .7s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all .5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
    font-family: 'Poppins', system-ui, -apple-system, Arial, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    letter-spacing: -.5px;
    color: var(--navy);
    line-height: 1.2;
}
a { text-decoration: none; transition: var(--transition); color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== KEYFRAMES ===== */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(8deg); }
}
@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: .7; }
}
@keyframes pulseRing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes blobMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes loaderPulse {
    0%, 100% { transform: scale(1); fill: #D4A574; }
    50% { transform: scale(1.1); fill: #E8B4B8; }
}
@keyframes loaderFade {
    0%, 100% { opacity: .4; }
    50% { opacity: 1; }
}
@keyframes wordReveal {
    0% { opacity: 0; transform: translateY(40px); filter: blur(8px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes uploadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}
@keyframes liveBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}
@keyframes fillBar {
    to { width: var(--w); }
}
@keyframes slideExit {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.05); }
}

/* ===== PRELOADER ===== */
.preloader-wrap {
    position: fixed; inset: 0; background: var(--cream);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader-wrap.hidden { opacity: 0; visibility: hidden; }
.loader-heart { text-align: center; }
.loader-heart svg { width: 80px; height: 72px; animation: loaderPulse 1.2s ease-in-out infinite; }
.loader-heart svg path { fill: var(--rose-gold); }
.loader-text {
    display: block; font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem; color: var(--navy); margin-top: 16px;
    letter-spacing: 4px; animation: loaderFade 1.5s ease-in-out infinite;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: #0000000d; z-index: 9997; }
.progress-fill { height: 100%; width: 0; background: var(--gradient-btn); transition: width .1s ease; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: var(--transition); }
.header.scrolled {
    background: #fff8f3f2;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px #00000014;
}
.header.scrolled .top-bar { display: none; }
.header.scrolled .navmenu a { color: var(--text-dark); }
.header.scrolled .navmenu a.active,
.header.scrolled .navmenu a:hover { color: var(--primary); }
.header.scrolled .mobile-nav-toggle span { background: var(--navy); }
.header.scrolled .btn-ghost { color: var(--text-dark); border-color: #0000001a; }

/* ===== TOP BAR ===== */
.top-bar {
    /* ✅ gradientShift animasyonu kaldırıldı - performans için */
    background: linear-gradient(90deg, var(--navy) 0%, var(--primary-dark) 50%, var(--navy) 100%);
    color: #fff; padding: 8px 0; font-size: 12.5px; overflow: hidden;
}
.top-bar-marquee {
    display: flex; gap: 60px; white-space: nowrap;
    animation: marquee 35s linear infinite;
}
.top-bar-marquee span { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.top-bar-marquee i { color: var(--rose-gold-light); }

/* ===== HEADER INNER ===== */
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 30px; max-width: 1320px; margin: 0 auto; gap: 20px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 40px; width: auto; transition: opacity .3s ease; }
.logo:hover .logo-img { transform: scale(1.05) rotate(-3deg); }
.logo-light { display: block !important; }
.logo-dark { display: none !important; }
.header.scrolled .logo-light { display: none !important; }
.header.scrolled .logo-dark { display: block !important; }

/* ===== NAV ===== */
.navmenu ul { display: flex; gap: 4px; align-items: center; }
.navmenu a {
    color: #fff; font-weight: 500; font-size: 14px; padding: 8px 14px;
    border-radius: 30px; position: relative; display: inline-flex; align-items: center;
}
.navmenu a::after {
    content: ''; position: absolute; bottom: 2px; left: 50%;
    width: 0; height: 2px; background: var(--rose-gold);
    transition: var(--transition); transform: translateX(-50%);
}
.navmenu a:hover::after, .navmenu a.active::after { width: 60%; }
.navmenu a:hover, .navmenu a.active { color: var(--rose-gold-light); }

/* ===== HEADER ACTIONS ===== */
.header-actions { display: flex; align-items: center; gap: 12px; }
.desktop-only { display: inline-flex; }
.nav-divider { display: none; }
.nav-btn-item { display: none; }
.btn-ghost {
    color: #fff; font-size: 13px; font-weight: 500; padding: 8px 16px;
    border-radius: 30px; border: 1px solid #fff3; display: inline-flex; align-items: center; gap: 6px;
}
.btn-ghost:hover { background: #ffffff1a; border-color: var(--rose-gold); color: var(--rose-gold-light); }
.mobile-nav-toggle { display: none; width: 40px; height: 40px; background: none; position: relative; z-index: 1001; }
.mobile-nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto; transition: var(--transition); border-radius: 2px; }
.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--gradient-btn); color: #fff; padding: 14px 28px;
    border-radius: 50px; font-weight: 600; font-size: 15px;
    box-shadow: 0 10px 30px #00adb566; position: relative; overflow: hidden;
    transition: var(--transition);
}
.btn-primary-custom::before {
    content: ''; position: absolute; inset: 0;
    background: var(--gradient-btn-hover); opacity: 0; transition: opacity .4s; z-index: 0;
}
.btn-primary-custom > * { position: relative; z-index: 1; }
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); color: #fff; }
.btn-primary-custom:hover::before { opacity: 1; }
.btn-primary-custom:hover .arrow { transform: translateX(5px); }
.btn-primary-custom .arrow { transition: var(--transition); }
.btn-primary-custom .btn-icon {
    width: 28px; height: 28px; border-radius: 50%; background: #fff3;
    display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary-custom.small { padding: 10px 20px; font-size: 13px; }
.btn-primary-custom.large { padding: 18px 36px; font-size: 16px; }

.btn-outline-custom {
    display: inline-flex; align-items: center; gap: 12px;
    background: #ffffff14; color: #fff; padding: 14px 26px;
    border-radius: 50px; font-weight: 500; border: 1.5px solid #fff3;
    transition: var(--transition);
}
.btn-outline-custom:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-3px); }
.btn-outline-custom.light { background: transparent; border-color: #fff6; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    /* ✅ gradientShift animasyonu kaldırıldı */
    background: linear-gradient(135deg, #1A2238 0%, #007A80 50%, #B08555 100%);
    display: flex; align-items: center; padding: 180px 0 100px; overflow: hidden; color: #fff;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(#ffffff0a 1px, transparent 1px), linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-blob {
    position: absolute; border-radius: 50%; filter: blur(80px);
    opacity: .4; animation: blobMove 20s ease-in-out infinite; z-index: 0;
}
.blob-1 { width: 450px; height: 450px; background: var(--rose-gold); top: -100px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--primary); bottom: -100px; right: -100px; animation-delay: -8s; }
.blob-3 { width: 300px; height: 300px; background: var(--blush); top: 50%; left: 50%; animation-delay: -15s; }

.hero-deco { position: absolute; font-size: 24px; animation: float 6s ease-in-out infinite; z-index: 1; opacity: .5; }
.hero-deco.d1 { top: 15%; left: 8%; color: var(--blush); font-size: 32px; }
.hero-deco.d2 { top: 70%; left: 12%; color: var(--rose-gold-light); font-size: 22px; animation-delay: 2s; }
.hero-deco.d3 { top: 22%; right: 10%; color: var(--blush); font-size: 36px; animation-delay: 1s; }
.hero-deco.d4 { top: 78%; right: 18%; color: var(--rose-gold-light); animation-delay: 3s; }
.hero-deco.d5 { top: 45%; left: 5%; color: var(--blush-light); animation-delay: 4s; }
.hero-deco.d6 { top: 35%; right: 5%; color: var(--rose-gold); font-size: 28px; animation-delay: 2.5s; }

.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: #ffffff14; border: 1px solid #d4a57466;
    color: var(--rose-gold-light); padding: 8px 18px;
    border-radius: 30px; font-size: 13px; font-weight: 500; margin-bottom: 24px;
}
.badge-dot { width: 8px; height: 8px; background: var(--rose-gold); border-radius: 50%; position: relative; }
.badge-dot::before {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    background: var(--rose-gold); animation: pulseRing 2s ease-out infinite;
}
.hero-title { font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1.05; margin-bottom: 28px; color: #fff; }
.hero-title .word { display: inline-block; margin-right: .2em; opacity: 0; animation: wordReveal .8s cubic-bezier(0.4,0,0.2,1) forwards; }
.hero-title .word:nth-child(1) { animation-delay: .2s; }
.hero-title .word:nth-child(2) { animation-delay: .4s; }
.hero-title .word:nth-child(3) { animation-delay: .6s; }
.hero-title .accent {
    /* ✅ sadece wordReveal kaldı, gradientShift kaldırıldı */
    background: linear-gradient(135deg, #D4A574 0%, #E8B4B8 50%, #F5DCDE 100%);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    font-style: italic; font-family: 'Playfair Display', Georgia, serif;
    animation: wordReveal .8s cubic-bezier(0.4,0,0.2,1) .4s forwards;
}
.hero-desc { font-size: 1.1rem; color: #ffffffd9; margin-bottom: 36px; max-width: 540px; opacity: 0; animation: wordReveal .8s ease .8s forwards; }
.hero-desc strong { color: var(--rose-gold-light); font-weight: 600; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 30px; opacity: 0; animation: wordReveal .8s ease 1s forwards; }

.play-icon {
    position: relative; width: 36px; height: 36px; border-radius: 50%;
    background: var(--rose-gold); display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.play-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--rose-gold); animation: pulseRing 1.8s ease-out infinite;
}

.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 30px; opacity: 0; animation: wordReveal .8s ease 1.2s forwards; }
.trust-avatars { display: flex; }
.trust-avatars span {
    width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: #fff; font-weight: 600; font-size: 14px;
    border: 3px solid var(--navy); margin-left: -12px;
}
.trust-avatars span:first-child { margin-left: 0; }
.trust-text { color: #ffffffd9; }
.trust-text .stars { color: var(--rose-gold); font-size: 14px; margin-bottom: 4px; }
.trust-text small { font-size: 12.5px; }
.trust-text strong { color: var(--rose-gold-light); }

/* ===== PHONE MOCKUP ===== */
.hero-visual { position: relative; perspective: 1000px; }
.phone-mockup {
    position: relative; max-width: 320px; margin: 0 auto;
    animation: floatSlow 5s ease-in-out infinite; transform-style: preserve-3d;
}
.phone-frame {
    background: linear-gradient(145deg, #2a2a2a, #0a0a0a);
    border-radius: 40px; padding: 12px;
    box-shadow: 0 30px 80px #0006, inset 0 0 2px #ffffff1a; position: relative;
}
.phone-notch {
    position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
    width: 100px; height: 22px; background: #0a0a0a; border-radius: 0 0 20px 20px; z-index: 2;
}
/* ✅ TEK phone-screen tanımı (duplicate kaldırıldı) */
.phone-screen {
    position: relative; overflow: hidden; background: #000;
    border-radius: 30px; aspect-ratio: 9/19; width: 100%; height: 100%;
}
/* ✅ TEK phone-screenshots tanımı */
.phone-screenshots { position: absolute; inset: 0; width: 100%; height: 100%; }
/* ✅ TEK phone-shot tanımı - en iyi versiyon */
.phone-shot {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    opacity: 0; z-index: 1;
    transition: opacity 1s ease-in-out, transform 4s ease;
    transform: scale(1.05);
}
.phone-shot.active { opacity: 1; z-index: 2; transform: scale(1); }

/* ===== FLOATING CARDS ===== */
.floating-card {
    position: absolute; background: #fffffff2;
    border-radius: 16px; padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 20px 50px #0003; border: 1px solid #fff6; z-index: 3;
}
.floating-card strong { font-size: 13px; color: var(--navy); display: block; }
.floating-card small { font-size: 11px; color: var(--text-light); }
.floating-card .notify-icon, .floating-card .qr-mini {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--gradient-btn); display: flex; align-items: center; justify-content: center; color: #fff;
}
.heart-pulse { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 20px; animation: heartBeat 1.5s infinite; }
.card-notify { top: 10%; left: -40px; animation: floatSlow 4s ease-in-out infinite; }
.card-heart { top: 50%; right: -50px; animation: floatSlow 5s ease-in-out infinite reverse; }
.card-qr { bottom: 8%; left: -30px; animation: floatSlow 4.5s ease-in-out infinite; }

/* ===== MARQUEE BAND ===== */
.marquee-band {
    background: var(--navy); padding: 28px 0; overflow: hidden;
    border-top: 1px solid #d4a57433; border-bottom: 1px solid #d4a57433;
}
.marquee { overflow: hidden; }
.marquee-track {
    display: flex; gap: 60px; white-space: nowrap;
    animation: marquee 30s linear infinite;
    will-change: transform; transform: translateZ(0);
}
.marquee-track span {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem; font-style: italic; color: var(--rose-gold-light); flex-shrink: 0;
}
.marquee-track i { color: var(--blush); font-size: 1.4rem; }

/* ===== SECTIONS ===== */
section { padding: 110px 0; position: relative; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 70px; }
.section-header.text-start { text-align: left; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gradient-card); color: var(--rose-gold);
    padding: 8px 20px; border-radius: 30px; font-size: 13px;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 20px; border: 1px solid #d4a57433;
}
.section-tag.light { background: #ffffff1a; color: var(--rose-gold-light); border-color: #d4a57466; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.section-title .italic-script {
    font-family: 'Dancing Script', cursive; font-style: normal; font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    /* ✅ gradientShift animasyonu kaldırıldı */
    font-size: 1.2em;
}
.section-subtitle { color: var(--text-light); font-size: 1.05rem; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: #fff; }
.steps-wrapper { position: relative; }
.steps-line {
    position: absolute; top: 100px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--rose-gold), var(--primary), var(--rose-gold), transparent);
    z-index: 0;
}
.step-card {
    background: #fff; padding: 36px 28px; border-radius: 24px;
    box-shadow: var(--shadow-soft); transition: var(--transition); height: 100%;
    position: relative; overflow: hidden; border: 1px solid #d4a5741a;
}
.step-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-btn); transform: scaleX(0); transform-origin: left; transition: transform .5s ease;
}
.step-card:hover::before { transform: scaleX(1); }
.step-card:hover { box-shadow: var(--shadow-hover); }
.step-number {
    position: absolute; top: 16px; right: 24px;
    font-family: 'Playfair Display', Georgia, serif; font-size: 70px; font-weight: 900;
    background: linear-gradient(135deg, #d4a57433, #00adb50d);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1;
}
.step-icon {
    width: 70px; height: 70px; border-radius: 20px;
    background: linear-gradient(135deg, #00adb51a, #d4a5741a);
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: var(--primary); margin-bottom: 20px; transition: var(--transition);
}
.step-card:hover .step-icon { background: var(--gradient-btn); color: #fff; transform: rotate(-8deg) scale(1.1); }
.step-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.step-card p { color: var(--text-light); font-size: .95rem; margin: 0; }
.step-arrow { position: absolute; bottom: 16px; right: 20px; color: var(--rose-gold); font-size: 18px; opacity: 0; transition: var(--transition); }
.step-card:hover .step-arrow { opacity: 1; transform: translateX(5px); }
.step-arrow.finish { color: var(--primary); opacity: 1; }

/* ===== FEATURES / BENTO ===== */
.features { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }
.features .container { max-width: 1140px; }

/* ✅ TEK bento-grid tanımı (3 kolon - duplicate kaldırıldı) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-auto-rows: max-content;
}
.bento-item {
    grid-column: span 1; background: #fff; border-radius: 24px; padding: 28px;
    box-shadow: var(--shadow-soft); border: 1px solid #d4a57414;
    position: relative; overflow: hidden; transition: var(--transition);
    display: flex; flex-direction: column; height: 100%; justify-content: flex-start;
}
.bento-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--rose-gold); }
.bento-item.bento-large { grid-column: span 2; grid-row: span 2; background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%); color: #fff; }
.bento-item.bento-large h3 { color: #fff; }
.bento-item.bento-large p { color: #fffc; }
.bento-item.bento-wide { grid-column: span 2; }
.bento-item:nth-child(8) { grid-column: span 3; flex-direction: row; align-items: center; gap: 24px; padding: 32px 40px; }
.bento-item:nth-child(8) .bento-icon { margin-bottom: 0; width: 70px; height: 70px; font-size: 30px; flex-shrink: 0; }
.bento-item:nth-child(8) h3 { margin-bottom: 6px; }

.bento-icon {
    width: 56px; height: 56px; border-radius: 16px; background: var(--gradient-card);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--primary); margin-bottom: 18px; transition: var(--transition);
}
.bento-icon.gold { background: linear-gradient(135deg, #d4a57426, #e8b4b81a); color: var(--rose-gold); }
.bento-icon.blush { background: linear-gradient(135deg, #e8b4b833, #f5dcde26); color: var(--blush); }
.bento-item.bento-large .bento-icon { background: #ffffff1a; color: var(--rose-gold-light); }
.bento-item:hover .bento-icon { transform: rotate(-6deg) scale(1.08); }
.bento-item h3 { font-size: 1.25rem; margin-bottom: 10px; }
.bento-item p { color: var(--text-light); font-size: .95rem; margin: 0; }

.bento-badge {
    position: absolute; top: 20px; right: 20px;
    background: var(--gradient-btn); color: #fff; padding: 5px 14px;
    border-radius: 30px; font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px;
    box-shadow: 0 6px 20px #d4a57466; z-index: 2;
}
.bento-badge i { font-size: 10px; }

.bento-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: auto; padding-top: 18px; }
.bento-stats div { background: var(--gradient-card); border-radius: 12px; padding: 12px 8px; text-align: center; border: 1px solid #d4a57426; }
.bento-stats strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 4px; }
.bento-stats small { color: var(--text-light); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

.tech-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 18px; }
.tech-badges span {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gradient-card); border: 1px solid #d4a57433;
    padding: 8px 14px; border-radius: 30px; font-size: 12px; font-weight: 500;
    color: var(--text-dark); transition: var(--transition);
}
.tech-badges span:hover { background: var(--gradient-btn); color: #fff; border-color: transparent; transform: translateY(-2px); }
.tech-badges i { color: var(--primary); }
.tech-badges span:hover i { color: #fff; }

/* ===== LIVE PREVIEW ===== */
.live-preview-wrap { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.live-preview-screen {
    border-radius: 14px; overflow: hidden; border: 2px solid #ffffff26;
    box-shadow: 0 20px 60px #00000080, inset 0 0 40px #0003;
    background: #000; display: flex; flex-direction: column;
}
.live-top-bar {
    background: #000000d9; padding: 8px 14px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #ffffff0f;
}
.live-top-left { display: flex; gap: 6px; align-items: center; }
.live-dot-red { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; display: block; }
.live-dot-yellow { width: 10px; height: 10px; border-radius: 50%; background: #febc2e; display: block; }
.live-dot-green { width: 10px; height: 10px; border-radius: 50%; background: #28c840; display: block; }
.live-brand { font-family: 'Playfair Display', Georgia, serif; font-size: 13px; color: #fffc; font-weight: 600; }
.live-top-right { display: flex; align-items: center; gap: 12px; }
.live-indicator { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #f44; letter-spacing: 1px; }
.live-dot-pulse { width: 8px; height: 8px; background: #f44; border-radius: 50%; display: inline-block; animation: liveBlink 1s infinite; }
.live-time { font-size: 12px; color: #fff9; }
.live-main-photo { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #111; }
.live-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease-in-out; display: flex; align-items: center; justify-content: center; }
.live-slide.active { opacity: 1; }
.live-photo-blur { position: absolute; inset: 0; opacity: .3; filter: blur(30px); transform: scale(1.2); }
.live-photo-icon { font-size: 4rem; color: #ffffff4d; position: relative; z-index: 1; }
.live-upload-toast {
    position: absolute; top: 14px; left: 14px;
    background: #000000bf; border: 1px solid #d4a57466;
    border-radius: 12px; padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    color: #fff; font-size: 12px; z-index: 5;
    transform: translateX(-120%);
    transition: transform .5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.live-upload-toast.show { transform: translateX(0); }
.live-upload-toast i { color: var(--primary); font-size: 20px; }
.live-upload-toast strong { display: block; font-size: 12px; }
.live-upload-toast small { color: #fff9; }
.live-counter {
    position: absolute; bottom: 14px; right: 14px;
    background: #0009; border-radius: 20px; padding: 6px 14px;
    color: #fffc; font-size: 12px; display: flex; align-items: center; gap: 6px; z-index: 5;
}
.live-counter i { color: var(--rose-gold); }
.live-bottom-bar {
    background: #0a0a0af2; padding: 10px 16px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; border-top: 1px solid #ffffff0f;
}
.live-thumbnails { display: flex; gap: 6px; }
.live-thumb { width: 36px; height: 36px; border-radius: 6px; border: 2px solid transparent; transition: all .3s; cursor: pointer; opacity: .5; }
.live-thumb.active { border-color: var(--rose-gold); opacity: 1; transform: scale(1.1); }
.live-event-name { display: flex; align-items: center; gap: 8px; color: #fffc; font-size: 12px; font-family: 'Playfair Display', Georgia, serif; font-style: italic; }
.live-event-name i { color: var(--blush); font-size: 14px; }
.live-qr-box { background: #fff; border-radius: 10px; padding: 8px 12px; text-align: center; min-width: 80px; }
.live-qr-title { font-size: 9px; font-weight: 700; color: var(--navy); letter-spacing: .5px; margin-bottom: 4px; text-transform: uppercase; }
.live-qr-code { font-size: 32px; color: var(--navy); line-height: 1; }
.live-qr-box small { font-size: 9px; color: var(--text-light); display: block; margin-top: 3px; }
.live-caption { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff6; font-size: 11px; padding: 6px 0 2px; }
.live-caption i { color: var(--rose-gold); }

/* ===== STATS ===== */
.stats {
    /* ✅ gradientShift animasyonu kaldırıldı */
    background: linear-gradient(135deg, #1A2238 0%, #00ADB5 50%, #D4A574 100%);
    color: #fff; padding: 90px 0; position: relative; overflow: hidden;
}
.stats-bg-anim {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, #d4a5744d, transparent 40%),
    radial-gradient(circle at 80% 50%, #e8b4b840, transparent 40%);
}
.stat-item { text-align: center; position: relative; z-index: 2; padding: 30px 20px; }
.stat-icon {
    width: 90px; height: 90px; border-radius: 50%; background: #ffffff14;
    border: 1px solid #d4a57466; display: flex; align-items: center; justify-content: center;
    font-size: 38px; color: var(--rose-gold-light); margin: 0 auto 20px; transition: var(--transition);
}
.stat-item:hover .stat-icon { transform: rotate(360deg) scale(1.1); background: var(--gradient-btn); color: #fff; }
.stat-number { font-family: 'Playfair Display', Georgia, serif; font-size: 3.5rem; font-weight: 700; color: #fff; display: block; line-height: 1; }
.stat-label { color: var(--rose-gold-light); font-size: .95rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; font-weight: 500; }
.stat-progress { margin-top: 18px; height: 4px; background: #ffffff1a; border-radius: 4px; overflow: hidden; }
.stat-bar { height: 100%; width: 0; background: var(--gradient-btn); border-radius: 4px; animation: fillBar 2s ease-out forwards; animation-play-state: paused; }
.stat-item.in-view .stat-bar { animation-play-state: running; }

/* ===== PRICING ===== */
.pricing { background: #fff; }
#pricing-cards { align-items: stretch; }
#pricing-cards > [class*="col-"] { display: flex; }
.pricing-item {
    width: 100%; display: flex; flex-direction: column;
    padding: 48px 30px 32px; border-radius: 24px;
    box-shadow: var(--shadow-soft); transition: var(--transition);
    position: relative; border: 2px solid transparent;
    text-align: center; overflow: hidden;
}
.pricing-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--gradient-btn); border-radius: 24px 24px 0 0;
    transform: scaleX(0); transform-origin: left; transition: transform .6s ease;
}
.pricing-item:hover::before { transform: scaleX(1); }
.pricing-item:hover { border-color: var(--rose-gold); box-shadow: var(--shadow-hover); transform: translateY(-6px) !important; }
.pricing-item.featured {
    background: linear-gradient(180deg, #fff 0%, #FFF8F3 100%);
    border-color: var(--rose-gold); box-shadow: 0 20px 60px #d4a57440;
}
.pricing-item.featured::before { transform: scaleX(1); }
.pricing-item.featured:hover { transform: translateY(-6px) !important; }
.pricing-item .popular {
    position: absolute; top: 16px; right: 16px; left: auto; transform: none;
    background: var(--gradient-btn); color: #fff; padding: 6px 14px;
    border-radius: 20px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    display: inline-flex; align-items: center; gap: 5px; margin: 0;
    box-shadow: 0 6px 20px #d4a57466; z-index: 2; text-transform: uppercase;
}
.pricing-item .popular i { font-size: 9px; animation: heartBeat 1.5s infinite; }
.pricing-header {
    text-align: center; min-height: 130px; display: flex; flex-direction: column;
    justify-content: flex-start; padding-bottom: 12px; border-bottom: 1px solid #0000000f;
}
.pricing-header h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--navy); }
.pricing-header .description { color: var(--text-light); font-size: .88rem; margin: 0; line-height: 1.5; min-height: 60px; }
.pricing-price { text-align: center; margin: 24px 0 8px; padding-bottom: 24px; border-bottom: 1px solid #0000000f; }
.pricing-price .new-price {
    font-size: 2.6rem; font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    display: block; line-height: 1;
}
.pricing-price .old-price { display: block; color: var(--text-light); text-decoration: line-through; font-size: 1rem; margin-bottom: 4px; opacity: .7; }
.price-period { display: block; font-family: 'Poppins', system-ui, sans-serif; color: var(--text-light); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 8px; opacity: .7; }
.pricing-item .cta-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; background: var(--gradient-btn); color: #fff; padding: 13px 24px;
    border-radius: 50px; font-weight: 600; font-size: 14px;
    box-shadow: 0 6px 20px #00adb540; margin: 24px 0; transition: var(--transition);
}
.pricing-item .cta-btn:hover { background: var(--gradient-btn-hover); box-shadow: 0 10px 28px #d4a57466; color: #fff; }
.pricing-item .cta-btn i { transition: var(--transition); }
.pricing-item .cta-btn:hover i { transform: translateX(4px); }
.pricing-item ul { border-top: none; padding-top: 0; margin-top: auto; text-align: left; }
.pricing-item ul li { padding: 9px 0; color: var(--text-dark); font-size: .9rem; display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
.pricing-item ul li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; font-size: .95rem; }
.pricing-item.featured ul li i { color: var(--rose-gold); }

/* ===== USE CASES ===== */
.use-cases { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.usecase-card {
    background: #fff; border-radius: 24px; overflow: hidden;
    box-shadow: var(--shadow-soft); height: 100%; transition: var(--transition);
    border: 1px solid #d4a57414; display: flex; flex-direction: column;
}
.usecase-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--rose-gold); }
.usecase-img {
    height: 160px; display: flex; align-items: center; justify-content: center;
    font-size: 4rem; color: #ffffffe6; position: relative; overflow: hidden;
}
.usecase-img::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 30%, #fff3, transparent 40%),
    radial-gradient(circle at 80% 70%, #0000001a, transparent 40%);
}
.usecase-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(45deg, transparent 30%, #ffffff26 50%, transparent 70%);
    background-size: 200% 200%; animation: shimmer 4s ease infinite;
}
.usecase-img i { position: relative; z-index: 2; filter: drop-shadow(0 4px 12px #0003); transition: var(--transition); }
.usecase-card:hover .usecase-img i { transform: scale(1.15) rotate(-8deg); }
.usecase-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.usecase-tag {
    display: inline-block; background: var(--gradient-card); color: var(--rose-gold);
    border: 1px solid #d4a57440; padding: 4px 14px; border-radius: 20px;
    font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 14px; align-self: flex-start;
}
.usecase-tag.teal { background: #00adb514; color: var(--primary); border-color: #00adb533; }
.usecase-tag.blush { background: #e8b4b826; color: #c47c80; border-color: #e8b4b84d; }
.usecase-content h3 { font-size: 1.4rem; margin-bottom: 12px; color: var(--navy); }
.usecase-content > p { color: var(--text-light); font-size: .95rem; margin-bottom: 18px; line-height: 1.7; }
.usecase-features { margin-top: auto; padding-top: 18px; border-top: 1px solid #0000000d; }
.usecase-features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: .92rem; color: var(--text-dark); }
.usecase-features li i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

/* ===== ABOUT ===== */
.about-section { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.about-section h2, .about-section .section-title { color: #fff; }
.about-section .section-tag { background: #ffffff0d; border-color: #d4a5744d; }
.about-section .section-subtitle { color: #ffffffb3; }
.about-bg-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle at 10% 20%, #00adb533, transparent 40%),
    radial-gradient(circle at 90% 80%, #d4a57433, transparent 40%);
    pointer-events: none;
}
.about-card {
    background: #ffffff0a; border: 1px solid #d4a57426; border-radius: 24px;
    padding: 36px; height: 100%; transition: var(--transition); position: relative; overflow: hidden;
}
.about-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient-btn); transform: scaleX(0); transform-origin: left; transition: transform .5s;
}
.about-card:hover::before { transform: scaleX(1); }
.about-card:hover { border-color: var(--rose-gold); transform: translateY(-5px); background: #ffffff0f; }
.about-card-icon {
    width: 60px; height: 60px; border-radius: 18px; background: var(--gradient-btn);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: #fff; margin-bottom: 22px; box-shadow: var(--shadow-gold);
}
.about-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 22px; }
.about-card ul li { padding: 14px 0; color: #ffffffd9; font-size: .95rem; border-bottom: 1px solid #ffffff0d; display: flex; align-items: flex-start; gap: 12px; }
.about-card ul li:last-child { border-bottom: none;}

.about-card ul li i {
    width: 24px; height: 24px; border-radius: 50%; background: #d4a57426;
    color: var(--rose-gold); display: flex; align-items: center; justify-content: center;
    font-size: 12px; flex-shrink: 0; margin-top: 2px;
}
.about-card ul li strong { display: block; color: #fff; margin-bottom: 4px; font-size: 1rem; }
.about-card ul li div { flex: 1; }
.about-goal {
    background: linear-gradient(135deg, #00adb526, #d4a57426);
    border: 1px solid #d4a5744d; border-radius: 24px; padding: 40px; text-align: center;
}
.about-goal-icon {
    width: 70px; height: 70px; border-radius: 50%; background: var(--gradient-btn);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 28px; color: #fff; box-shadow: var(--shadow-gold);
}
.about-goal h3 { color: #fff; font-size: 1.8rem; margin-bottom: 14px; }
.about-goal p { color: #ffffffd9; font-size: 1.05rem; max-width: 800px; margin: 0 auto; }

/* ===== FAQ ===== */
.faq { background: var(--cream); }
.faq-side { padding: 30px 0; }
.faq-side .section-tag { margin-bottom: 18px; }
.faq-side p { color: var(--text-light); margin: 18px 0 30px; font-size: 1.05rem; }
.faq-container { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: #fff; border-radius: 18px; overflow: hidden;
    transition: var(--transition); border: 1px solid #0000000a; box-shadow: var(--shadow-soft);
}
.faq-item:hover { border-color: var(--rose-gold); }
.faq-item.faq-active { border-color: var(--rose-gold); box-shadow: 0 15px 40px #d4a57426; }
.faq-question { display: flex; align-items: center; gap: 18px; padding: 22px 26px; cursor: pointer; }
.faq-num { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; color: var(--rose-gold); font-weight: 700; flex-shrink: 0; }
.faq-item h3 { font-size: 1.05rem; margin: 0; flex: 1; color: var(--navy); transition: var(--transition); }
.faq-item.faq-active h3 { color: var(--primary); }
.faq-toggle {
    width: 32px; height: 32px; border-radius: 50%; background: var(--gradient-card);
    display: flex; align-items: center; justify-content: center;
    color: var(--rose-gold); font-size: 16px; transition: var(--transition); flex-shrink: 0;
}
.faq-item.faq-active .faq-toggle { background: var(--gradient-btn); color: #fff; transform: rotate(135deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-item.faq-active .faq-content { max-height: 300px; padding: 0 26px 22px; }
.faq-content p { color: var(--text-light); font-size: .95rem; margin: 0; padding-left: 38px; }

/* ===== CTA ===== */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.cta-bg {
    position: absolute; inset: 0;
    /* ✅ gradientShift animasyonu kaldırıldı */
    background: linear-gradient(135deg, #1A2238 0%, #007A80 50%, #B08555 100%);
}
.cta-bg::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 50%, #d4a57466, transparent 50%),
    radial-gradient(circle at 80% 50%, #e8b4b84d, transparent 50%);
}
.cta-box {
    position: relative; z-index: 2; text-align: center;
    max-width: 800px; margin: 0 auto; color: #fff;
    background: #ffffff0d; border: 1px solid #d4a5744d;
    border-radius: 32px; padding: 60px 40px; box-shadow: 0 30px 80px #0000004d;
}
.cta-box h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin: 18px 0 16px; }
.cta-box p { color: #ffffffd9; font-size: 1.1rem; margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-card {
    display: block; background: #fff; border-radius: 24px; padding: 36px 28px;
    box-shadow: var(--shadow-soft); border: 1px solid #d4a5741a;
    text-align: center; height: 100%; transition: var(--transition);
    position: relative; overflow: hidden;
}
.contact-card::before {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%; background: var(--gradient-card);
    opacity: 0; transition: opacity .5s; z-index: 0;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-color: var(--rose-gold); }
.contact-card:hover::before { opacity: 1; }
.contact-icon {
    width: 70px; height: 70px; border-radius: 20px; background: var(--gradient-btn);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #fff; margin: 0 auto 20px; transition: var(--transition);
    box-shadow: 0 10px 25px #00adb54d;
}
.contact-card:hover .contact-icon { transform: rotate(-8deg) scale(1.1); }
.contact-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.contact-card p { color: var(--text-light); margin-bottom: 18px; font-size: .95rem; }
.contact-go { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 14px; transition: var(--transition); }
.contact-card:hover .contact-go { color: var(--rose-gold); gap: 12px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: #ffffffb3; padding: 90px 0 30px; position: relative; }
.footer-top-deco { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-btn); }
.footer-about .logo .sitename { font-family: 'Playfair Display', Georgia, serif; font-size: 1.8rem; font-weight: 700; color: #fff; }
.footer-about .logo em { color: var(--rose-gold); font-style: italic; font-family: 'Dancing Script', cursive; font-weight: 700; }
.footer-desc { margin: 18px 0 22px; font-size: .95rem; line-height: 1.7; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-contact-item i {
    width: 36px; height: 36px; border-radius: 50%; background: #ffffff0d;
    border: 1px solid #d4a57433; display: flex; align-items: center; justify-content: center; color: var(--rose-gold);
}
.footer-contact-item a:hover { color: var(--rose-gold-light); }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
    width: 42px; height: 42px; border-radius: 50%; background: #ffffff0d;
    border: 1px solid #ffffff14; display: flex; align-items: center; justify-content: center;
    color: #fff; transition: var(--transition);
}
.social-links a:hover { background: var(--gradient-btn); border-color: transparent; transform: translateY(-3px) rotate(8deg); box-shadow: var(--shadow-gold); }
.footer-links h4 { color: #fff; font-size: 1.1rem; margin-bottom: 22px; position: relative; padding-bottom: 10px; }
.footer-links h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gradient-btn); }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a { color: #ffffffb3; font-size: .93rem; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links ul a i { font-size: 11px; color: var(--rose-gold); transition: var(--transition); }
.footer-links ul a:hover { color: var(--rose-gold-light); padding-left: 5px; }
.footer-newsletter h4 { color: #fff; font-size: 1.1rem; margin-bottom: 14px; }
.footer-newsletter p { font-size: .9rem; margin-bottom: 18px; }
.newsletter-form {
    display: flex; background: #ffffff0d; border: 1px solid #ffffff1a;
    border-radius: 50px; overflow: hidden; transition: var(--transition);
}
.newsletter-form:focus-within { border-color: var(--rose-gold); box-shadow: 0 0 0 3px #d4a57426; }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 12px 18px; color: #fff; font-family: inherit; font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: #fff6; }
.newsletter-form button {
    width: 44px; height: 44px; margin: 3px; border-radius: 50%;
    background: var(--gradient-btn); color: #fff;
    display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.newsletter-form button:hover { transform: rotate(45deg); box-shadow: var(--shadow-gold); }
.footer-badge {
    margin-top: 18px; display: inline-flex; align-items: center; gap: 8px;
    background: #00adb51a; border: 1px solid #00adb533;
    padding: 8px 14px; border-radius: 30px; font-size: 12px;
}
.footer-badge i { color: var(--primary-light); font-size: 14px; }
.payment-band { text-align: center; margin: 30px auto; padding: 20px 16px; border-top: 1px solid #ffffff0d; border-bottom: 1px solid #ffffff0d; overflow: hidden; }
.payment-band img { width: 100%; height: auto; object-fit: contain; max-width: 320px; margin: 0 auto; display: block; filter: brightness(0.9) contrast(1.1); }
.footer-bottom { text-align: center; font-size: .88rem; padding-top: 20px; }
.footer-bottom .sitename-small { color: var(--rose-gold); font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; }
.heart-beat { color: var(--blush); display: inline-block; animation: heartBeat 1.5s infinite; margin: 0 4px; }

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed; bottom: 30px; right: 30px; width: 56px; height: 56px;
    border-radius: 50%; background: var(--gradient-btn); color: #fff !important;
    display: flex !important; align-items: center; justify-content: center;
    font-size: 22px; box-shadow: var(--shadow-gold);
    opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; overflow: visible;
}
.scroll-top.active { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-5px) scale(1.05); background: var(--gradient-btn-hover); }
.scroll-top svg { position: absolute; inset: -4px; transform: rotate(-90deg); }
.scroll-progress-circle { fill: none; stroke: var(--rose-gold); stroke-width: 3; stroke-dasharray: 283; stroke-dashoffset: 283; transition: stroke-dashoffset .1s; }

/* ===== SELECTION ===== */
::selection { background: var(--rose-gold); color: #fff; }
[data-aos] { transition-property: opacity, transform; }

/* ================================================
   RESPONSIVE — TEK BLOK, TEMİZ VE SIRASIZ
   ================================================ */

/* --- 1199px ve altı: Mobil nav toggle göster --- */
@media (max-width: 1199px) {
    .header-inner { padding: 10px 16px; position: relative; }
    .logo { flex-shrink: 0; z-index: 1001; }
    .logo-img { height: 32px; }
    .desktop-only { display: none !important; }

    .mobile-nav-toggle {
        display: flex !important; flex-direction: column;
        justify-content: center; align-items: center;
        width: 40px !important; height: 40px !important;
        background: #fff3 !important; border-radius: 10px !important;
        border: 1.5px solid #fff6 !important;
        flex-shrink: 0; gap: 5px; padding: 0; cursor: pointer; z-index: 1001;
    }
    .header.scrolled .mobile-nav-toggle { background: #0000000f !important; border-color: #00000026 !important; }
    .mobile-nav-toggle span { width: 20px; height: 2px; background: #fff !important; border-radius: 2px; display: block !important; transition: var(--transition); margin: 0 !important; }
    .header.scrolled .mobile-nav-toggle span { background: var(--navy) !important; }
    .mobile-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .navmenu {
        position: fixed; top: 0; right: -100%; left: auto !important;
        width: 300px; max-width: 85vw; height: 100vh;
        background: #fff; padding: 70px 24px 40px;
        box-shadow: -10px 0 40px #00000026;
        transition: right .4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000; overflow-y: auto; display: block !important;
    }
    .navmenu.show { right: 0; }
    .navmenu ul { flex-direction: column; align-items: stretch; gap: 4px; }
    .navmenu a {
        color: var(--text-dark) !important; padding: 13px 16px;
        border-radius: 12px; width: 100%; font-size: 15px;
        display: flex; align-items: center; gap: 10px;
    }
    .navmenu a:hover, .navmenu a.active { background: var(--gradient-card); color: var(--primary) !important; }
    .navmenu a::after { display: none !important; }

    .nav-divider { display: block !important; height: 1px; background: #00000014; margin: 16px 0; }
    .nav-btn-item { display: block !important; margin-bottom: 10px; }
    .nav-sample-btn {
        display: flex !important; align-items: center; gap: 10px;
        padding: 14px 18px; border-radius: 14px;
        background: var(--gradient-card); border: 1px solid #d4a57440;
        color: var(--rose-gold) !important; font-weight: 600; font-size: 14px;
        width: 100%; transition: var(--transition);
    }
    .nav-sample-btn:hover { background: #d4a5741f; transform: translateX(4px); }
    .nav-login-btn {
        display: flex !important; align-items: center; justify-content: center; gap: 10px;
        padding: 14px 18px; border-radius: 14px; background: var(--gradient-btn);
        color: #fff !important; font-weight: 600; font-size: 14px; width: 100%;
        box-shadow: 0 8px 20px #00adb54d; transition: var(--transition);
    }
    .nav-login-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

    .nav-overlay {
        position: fixed; inset: 0; background: #00000080;
        backdrop-filter: blur(4px); z-index: 999;
        opacity: 0; visibility: hidden; transition: var(--transition);
    }
    .nav-overlay.show { opacity: 1; visibility: visible; }

    .floating-card { display: none !important; }
    .phone-mockup { max-width: 240px; margin: 0 auto; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
}

/* --- 991px ve altı --- */
@media (max-width: 991px) {
    html { scroll-padding-top: 80px; }
    section { padding: 70px 0; }
    .hero { padding: 160px 0 10px; text-align: center; }
    .hero-content { text-align: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { margin-top: 50px; }
    .steps-line { display: none; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-item.bento-large,
    .bento-item.bento-wide,
    .bento-item:nth-child(8) { grid-column: span 2; }
    .bento-item:nth-child(8) { flex-direction: column; align-items: flex-start; padding: 28px; gap: 0; }
    .bento-item:nth-child(8) .bento-icon { margin-bottom: 18px; width: 56px; height: 56px; font-size: 26px; }
    .pricing-item.featured { transform: none !important; }
    .pricing-item.featured:hover, .pricing-item:hover { transform: translateY(-4px) !important; }
    .cta-box { padding: 40px 24px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons a { width: 100%; justify-content: center; }
}

/* --- 768px ve altı: MOBİL PERFORMANS --- */
@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; overflow: hidden; }
    .hero-title { font-size: 2rem; word-break: break-word; }
    .hero-deco { display: none; }
    .floating-card { display: none; }
    .steps-line { display: none; }

    /* ✅ backdrop-filter kaldır — en büyük perf kazancı */
    .header.scrolled,
    .hero-badge,
    .cta-box,
    .live-upload-toast,
    .live-bottom-bar,
    .live-top-bar,
    .live-counter,
    .floating-card {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    /* ✅ Blur filter'lı blob'ları kapat */
    .hero-blob { display: none !important; }
    .hero-grid-bg { display: none !important; }

    /* ✅ Shimmer animasyonlarını kapat */
    .gallery-item::after,
    .usecase-img::after,
    .bento-item.bento-large .live-photos div::after { display: none !important; }

    /* ✅ Phone animasyonunu durdur */
    .phone-mockup { animation: none !important; }
    .phone-shot { transition: opacity .5s ease !important; transform: none !important; }
    .phone-shot.active { transform: none !important; }

    /* ✅ Nabız animasyonlarını kapat */
    .badge-dot::before { display: none !important; }
    .play-pulse { display: none !important; }
    .popular i { animation: none !important; }
    .heart-beat { animation-duration: 3s !important; }

    /* ✅ Marquee yavaşlat */
    .marquee-track,
    .top-bar-marquee { animation-duration: 60s !important; }

    /* ✅ Live slideshow basitleştir */
    .live-slide { transition: opacity .3s ease !important; }

    /* ✅ 3D transform kapat */
    .step-card,
    .bento-item,
    .pricing-item,
    .usecase-card,
    .testimonial-card { transform-style: flat !important; }

    /* ✅ Hover transform'ları kaldır */
    .step-card:hover,
    .bento-item:hover,
    .usecase-card:hover,
    .pricing-item:hover,
    .contact-card:hover,
    .about-card:hover { transform: none !important; box-shadow: var(--shadow-soft) !important; }
    .step-card:hover .step-icon,
    .stat-item:hover .stat-icon,
    .contact-card:hover .contact-icon { transform: none !important; }

    /* ✅ Stat bar hızlandır */
    .stat-bar { animation-duration: 1s !important; }
}

/* --- 767px ve altı: Bento tek kolon --- */
@media (max-width: 767px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item,
    .bento-item.bento-large,
    .bento-item.bento-wide,
    .bento-item:nth-child(8) { grid-column: span 1; grid-row: auto; }
}

/* --- 575px ve altı --- */
@media (max-width: 575px) {
    .header-actions .btn-primary-custom { display: none; }
    .top-bar { font-size: 11px; }
    .hero-title { font-size: 2.2rem; }
    .testimonial-author { flex-direction: column; align-items: flex-start; gap: 10px; }
    .testimonial-stars { margin-left: 0; }
    .scroll-top { width: 48px; height: 48px; bottom: 20px; right: 20px; }
}