/* ═══════════════════════════════════════════════════════
   MenuVar: FACILPAY x DS-K AESTHETIC REBUILD
   High-Fidelity Fintech/SaaS Vibe + Stacking Animation
   ═══════════════════════════════════════════════════════ */

:root {
    /* Premium Light Palette (Apple/Vercel Vibe) */
    --fp-bg:           #FBFBFB;     /* Crisp slightly warm white */
    --fp-surface:      #FFFFFF;     /* Pure white cards */
    --fp-border:       #E5E5E5;     /* Soft borders */
    
    --fp-text:         #111111;     /* Charcoal black */
    --fp-muted:        #666666;     /* Muted gray */
    
    --fp-accent:       #C9A96E;     /* MenuVar Champagne Gold */
    --fp-accent-light: #D9BE8A;
    --fp-purple:       #7B61FF;
    
    /* Fonts */
    --font-head:       'Outfit', sans-serif;
    --font-body:       'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--fp-bg);
    color: var(--fp-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 4rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

/* ── CINEMATIC INTRO ── */
body.is-loading { overflow: hidden; height: 100vh; }
.cinematic-intro {
    position: fixed; inset: 0; width: 100%; height: 100%;
    background: #030303; z-index: 9999; pointer-events: auto;
}

/* ── FACILPAY GLOW MESH ── */
.mesh-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none;}
.glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.08;}
.g-purple { top: -200px; right: -100px; background: var(--fp-purple); }
.g-copper { bottom: -300px; left: -200px; background: var(--fp-accent); }

/* ── GLASS NAVBAR (Fintech Style) ── */
.fp-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(3, 3, 3, 0.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent; transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); padding: 1.25rem 0;
    transform: translateY(-100%); opacity: 0; pointer-events: none;
}
.fp-header.scrolled { padding: 1rem 0; border-bottom-color: rgba(255,255,255,0.1); transform: translateY(0); opacity: 1; pointer-events: auto; }
.h-flex { display: flex; justify-content: space-between; align-items: center; }

.brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; color: #fff;}
.fp-nav { display: flex; gap: 2rem; }
.fp-nav a { font-size: 0.95rem; font-weight: 500; color: #999; }
.fp-nav a:hover { color: #fff; }

.h-actions { display: flex; align-items: center; gap: 1.5rem; }
.link-muted { font-size: 0.95rem; font-weight: 500; color: #999; }
.link-muted:hover { color: #fff; }
.btn-fp {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    background: #111; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
    padding: 0.6rem 1.25rem; border-radius: 100px; transition: 0.3s;
}
.btn-fp svg { transition: transform 0.3s; }
.btn-fp:hover { background: #333; }
.btn-fp:hover svg { transform: translateX(3px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

.menu-toggle { display: none; width: 30px; height: 20px; position: relative; border: none; background: transparent; cursor: pointer; }
.menu-toggle span { position: absolute; left: 0; width: 100%; height: 2px; background: #111; transition: 0.3s; }
.menu-toggle span:first-child { top: 4px; }
.menu-toggle span:last-child { bottom: 4px; }


.fp-hero { padding-top: 25vh; position: relative; z-index: 10; min-height: 100vh; overflow: visible; display: flex; flex-direction: column; align-items: center; background: linear-gradient(to bottom, #FBFBFB 0%, #FBFBFB 50%, #030303 100%); }
.fp-hero .container { position: relative; z-index: 10; pointer-events: none; }
.fp-hero .btn-fp { pointer-events: auto; } /* Re-enable clicks on CTA */
.badge-pill {
    display: inline-block; font-size: 0.85rem; font-weight: 600; font-family: var(--font-head);
    color: var(--fp-accent); background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2); border-radius: 100px; padding: 0.4rem 1rem;
    margin-bottom: 2rem;
}
.fp-title {
    font-family: var(--font-head); font-size: clamp(4rem, 8vw, 6.5rem); font-weight: 800;
    line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 1.5rem; color: #111;
    text-shadow: 0 4px 30px rgba(255,255,255,1), 0 0 80px rgba(255,255,255,1);
}
.gradient-text {
    background: linear-gradient(135deg, #C9A96E 0%, #E8D5A3 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fp-title-md { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1rem; color: #111; }
.fp-title-lg { font-family: var(--font-head); font-size: clamp(3rem, 6vw, 4rem); font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin-bottom: 2rem; color: #111;}

.fp-desc { font-size: 1.35rem; color: var(--fp-muted); line-height: 1.6; max-width: 600px; margin: 0 auto 3rem; font-weight: 500; text-shadow: 0 4px 20px rgba(255,255,255,1);}
.fp-cta { display: flex; justify-content: center; gap: 1rem; margin-bottom: 6rem; position: relative; z-index: 20;}

/* ── NEW HERO OVERLAY TYPOGRAPHY ── */
.hero-overlay {
    position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%);
    z-index: 30; text-align: center; width: 100%; pointer-events: none;
}
.hero-overlay .fp-cta { pointer-events: auto; }
.hero-thin-slogan {
    font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, 2vw, 1.5rem);
    letter-spacing: 0.15em; color: #333; text-transform: uppercase; margin-bottom: -0.5rem;
    position: relative; z-index: 2; text-shadow: 0 2px 20px rgba(255,255,255,1);
}
.hero-hard-title {
    font-family: var(--font-head); font-weight: 900; font-size: clamp(4rem, 12vw, 12rem);
    line-height: 1; letter-spacing: -0.05em; color: #111; position: relative; z-index: 10;
    margin: 0; text-transform: uppercase; text-shadow: 0 10px 60px rgba(255,255,255,1), 0 0 100px rgba(255,255,255,0.8);
}

/* ── TEXT REVEAL SECTION ── */
.text-reveal-section { padding: 20vh 0 15vh; background: #030303; position: relative; z-index: 40; }
.reveal-text {
    font-family: var(--font-head); font-size: clamp(1.8rem, 4.5vw, 3.5rem); font-weight: 700;
    line-height: 1.3; letter-spacing: -0.02em; color: #fff;
}
.reveal-text .char {
    opacity: 0.08; display: inline-block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.reveal-text .char.is-revealed { opacity: 1; }


.hero-fade-mask {
    position: absolute; top: 0; left: 0; width: 100%; height: 40vh; z-index: 5;
    background: linear-gradient(to bottom, #FBFBFB 30%, rgba(251,251,251,0) 100%);
    pointer-events: none;
}
/* ── DIAGONAL CSS PHONE SHOWROOM (NOW BACKGROUND PARALLAX) ── */
.hero-showroom {
    position: absolute; top: 5vh; left: 0; width: 100%; height: 100vh;
    display: flex; justify-content: center; align-items: flex-start; perspective: 1800px;
    overflow: hidden; z-index: 0; pointer-events: none; opacity: 0.4;
}
.showroom-wrapper {
    position: absolute; width: max-content; height: 100%;
    transform-style: preserve-3d;
    transform: rotateX(25deg) rotateZ(-12deg) scale(1.1);
    display: flex; align-items: flex-start;
    transition: transform 0.2s ease-out;
}

.infinite-track {
    display: flex; gap: 40px; padding: 0 20px;
    animation: marquee-phones 30s linear infinite;
    will-change: transform;
}
.infinite-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-phones {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

/* Base Phone Frame */
.css-phone {
    position: relative;
    flex-shrink: 0;
    width: 340px; height: 690px;
    border-radius: 40px; border: 12px solid #E5E5E5; /* Light mode aluminum frame */
    background: #fff; box-shadow: -20px 40px 80px rgba(0,0,0,0.1), inset 0 0 0 2px #fff;
    overflow: hidden;
}

/* Phone Top Notion / Brand */
.ph-top { padding: 2.5rem 1.5rem 1.5rem; display: flex; justify-content: space-between; align-items: flex-end;}
.ph-brand { font-family: 'Georgia', serif; font-size: 1.8rem; font-weight: 700; letter-spacing: -0.02em; color:#000;}
.ph-lang-pill { font-size: 0.7rem; font-weight: 600; background: #000; color:#fff; padding:0.2rem 0.6rem; border-radius: 100px;}
.ph-tabs { display: flex; gap: 1rem; padding: 0 1.5rem 1rem; border-bottom: 1px solid #eee; font-size: 0.95rem; font-weight:600; color:#000;}
.ph-tabs .muted { color: #888; font-weight: 500;}
.ph-list { padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }

/* Light Theme (La Maison Core) */
.p-light { background: #FCFAf8; }
.ph-item { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05);}
.phi-img { background-size: cover; background-position: center; border-radius: 8px; }
.phi-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.25rem;}
.phi-name { font-weight: 700; color: #000; font-size: 1.05rem;}
.phi-desc { font-size: 0.8rem; color: #777; line-height: 1.4; display: block; margin-bottom: 0.5rem;}
.phi-price { font-weight: 700; font-size: 1.1rem; color: #000;}

/* Dark Elite Theme */
.p-dark { background: #0E0E0A; border-color: #333; box-shadow: -20px 30px 60px rgba(0,0,0,0.8), inset 0 0 0 2px #555;}
.pll { font-size: 0.7rem; font-weight: 600; border: 1px solid #333; color: #aaa; padding:0.3rem 0.8rem; border-radius: 100px;}
.pll.active { background: #D5BA86; color: #000; border-color: #D5BA86;}
.ptb { font-size: 0.9rem; font-weight: 500; color:#888; padding: 0.5rem 1rem; border: 1px solid #222; border-radius: 100px;}
.ptb.active { background: #D5BA86; color: #000;}
.ph-item-row { display: flex; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid #222;}
.ph-item-row .phi-img { width: 80px; height: 80px; flex-shrink: 0;}
.ph-item-row .phi-content { flex: 1; display: flex; flex-direction: column; justify-content: center;}
.ph-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 100px; align-self: flex-start; margin-bottom: 0.3rem;}
.ph-badge.red { background: rgba(255, 60, 0, 0.15); color: #FF4D4D;}
.ph-badge.gold { background: rgba(213, 186, 134, 0.15); color: #D5BA86;}

/* Warm Copper Theme */
.p-warm { background: #FDF9F1; }
.p-warm .ptb { border: 1px solid #ddd; background: #fff; color: #555;}
.p-warm .ptb.w-active { border-color: #7F250B; color: #7F250B; font-weight: 600;}
.warm-card { background: #fff; border-radius: 16px; border: 1px solid #eee; padding: 1rem; box-shadow: 0 4px 10px rgba(127, 37, 11, 0.05); gap: 1rem; display: flex; align-items: center;}
.warm-card .phi-img { width: 70px; height: 70px; border-radius: 50%;}



/* ═══════════════════════════════════════════════════
   EDITORIAL PROCESS SECTION — ed-*
   Saf tipografi, mockup yok. Awwwards-caliber.
   ═══════════════════════════════════════════════════ */

.ed-section {
    position: relative;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

/* Eyebrow header */
.ed-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 5vh 5% 4vh;
}
.ed-eyebrow {
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    white-space: nowrap;
}
.ed-header-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,169,110,0.2), transparent);
}

/* Marquee */
.ed-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 1.1rem 0;
    background: #030303;
}
.ed-marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: ed-marquee-scroll 38s linear infinite;
    will-change: transform;
}
.ed-marquee-set {
    flex-shrink: 0;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--fp-accent);
    opacity: 0.55;
}
@keyframes ed-marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Panels grid */
.ed-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ed-panel {
    position: relative;
    padding: 7vh 5% 8vh;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.04);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1);
}
.ed-panel:nth-child(2) { transition-delay: 0.14s; }
.ed-panel:nth-child(3) { transition-delay: 0.28s; }
.ed-panel:last-child   { border-right: none; }
.ed-panel.in-view      { opacity: 1; transform: translateY(0); }

/* Top rule — draws from left on reveal */
.ed-panel-rule {
    position: absolute;
    top: 0; left: 0;
    height: 1px; width: 0%;
    background: linear-gradient(90deg, rgba(201,169,110,0.45), rgba(201,169,110,0.04));
    transition: width 1.5s cubic-bezier(0.16,1,0.3,1);
}
.ed-panel.in-view .ed-panel-rule { width: 100%; }

/* Watermark number */
.ed-num {
    position: absolute;
    right: -0.04em;
    bottom: -0.18em;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(10rem, 20vw, 18rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.ed-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.ed-step-tag {
    display: block;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    margin-bottom: 3rem;
}

.ed-verb {
    font-family: var(--font-head);
    font-size: clamp(5rem, 10vw, 9.5rem);
    font-weight: 900;
    line-height: 0.87;
    letter-spacing: -0.05em;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.ed-line {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.3);
    max-width: 300px;
    margin-bottom: 2.5rem;
}

.ed-metric {
    display: inline-block;
    width: fit-content;
    font-family: ui-monospace, 'SF Mono', monospace;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fp-accent);
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(201,169,110,0.18);
    border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {
    .ed-panels { grid-template-columns: 1fr; }
    .ed-panel {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        padding: 6vh 5%;
    }
    .ed-panel:last-child { border-bottom: none; }
    .ed-verb { font-size: clamp(4.5rem, 20vw, 7rem); }
    .ed-num  { font-size: clamp(9rem, 40vw, 14rem); }
    .ed-step-tag { margin-bottom: 1.5rem; }
    .ed-header { padding: 4vh 5% 3vh; }
}



/* ── STATS COUNTER BAR ── */
.stats-bar { padding: 10vh 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-number, .stat-plus, .stat-prefix {
    font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
    color: #fff; line-height: 1; letter-spacing: -0.03em;
}
.stat-plus, .stat-prefix { color: var(--fp-accent); }
.stat-label {
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: #555;
}

/* ── PRICING SECTION ── */
.fp-pricing-section { padding: 15vh 0; position: relative; z-index: 10; overflow: hidden; }
.pricing-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 60%); pointer-events: none; z-index: -1; }

.pricing-toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 4rem; position: relative; }
.toggle-label { display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; font-weight: 600; color: #777; transition: color 0.3s; position: relative; }
.toggle-label.active { color: #fff; }
.pricing-badge { display: inline-flex; align-items: center; background: rgba(201,169,110,0.15); border: 1px solid rgba(201,169,110,0.3); color: var(--fp-accent); font-size: 0.75rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 100px; white-space: nowrap; font-family: var(--font-head); box-shadow: 0 4px 15px rgba(201,169,110,0.1); }

.pricing-switch { position: relative; display: inline-block; width: 64px; height: 34px; }
.pricing-switch input { opacity: 0; width: 0; height: 0; }
.pricing-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #222; transition: .4s; border-radius: 34px; border: 1px solid rgba(255,255,255,0.1); }
.pricing-slider:before { position: absolute; content: ""; height: 26px; width: 26px; left: 4px; bottom: 3px; background-color: #fff; transition: .4s; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.pricing-switch input:checked + .pricing-slider { background-color: var(--fp-accent); border-color: transparent; }
.pricing-switch input:checked + .pricing-slider:before { transform: translateX(28px); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; background: rgba(12, 12, 12, 0.8); border: 1px solid rgba(255,255,255,0.06); border-radius: 32px; position: relative; overflow: hidden; padding: 2.5rem 2rem; text-align: left; transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s, box-shadow 0.4s; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.pricing-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-8px); box-shadow: 0 40px 80px rgba(0,0,0,0.8); }

.pricing-card.popular { border-color: rgba(201,169,110,0.6); box-shadow: 0 30px 80px rgba(201,169,110,0.15); transform: scale(1.05); z-index: 2; background: rgba(18, 14, 12, 0.95); }
.pricing-card.popular:hover { transform: scale(1.05) translateY(-8px); border-color: var(--fp-accent); box-shadow: 0 40px 100px rgba(201,169,110,0.25); }
.pc-badge-popular { position: absolute; top: 0; left: 50%; transform: translateX(-50%); background: var(--fp-accent); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 0.4rem 1.2rem; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; font-family: var(--font-head); letter-spacing: 0.05em; text-transform: uppercase; box-shadow: 0 4px 15px rgba(201,169,110,0.4); }

.pc-glow-inner { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 60%); pointer-events: none; z-index: 0; }
.pricing-card.popular .pc-glow-inner { background: radial-gradient(circle at 50% 0%, rgba(201,169,110,0.1) 0%, transparent 60%); }
.pc-content { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; }

.pc-header { margin-bottom: 2rem; }
.pc-title { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.pc-desc { font-size: 1rem; color: #888; line-height: 1.5; }

.pc-price-wrap { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 2.5rem; }
.pc-currency { font-size: 2rem; font-weight: 700; color: #fff; }
.pc-amount { font-family: var(--font-head); font-size: 4.5rem; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.05em; }
.pc-period { font-size: 1.2rem; color: #777; font-weight: 500; }

.pc-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 2.5rem; }

.pc-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; flex: 1; }
.pc-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; color: #ccc; font-weight: 500; line-height: 1.5; }
.pc-list li svg { flex-shrink: 0; margin-top: 2px; }

.pc-action { text-align: center; margin-top: auto; }
.btn-pricing { width: 100%; padding: 1rem; font-size: 1.05rem; font-weight: 700; background: #fff; color: #000; display: inline-flex; justify-content: center; align-items: center; gap: 0.5rem; margin-bottom: 1rem; border-radius: 100px; transition: 0.3s; }
.popular .btn-pricing { background: var(--fp-accent); color: #fff; }
.popular .btn-pricing:hover { background: var(--fp-accent-light); color: #000; box-shadow: 0 8px 25px rgba(201,169,110,0.4); transform: translateY(-2px); }
.btn-pricing:hover { background: #eee; transform: translateY(-2px); }
.pc-guarantee { font-size: 0.75rem; color: #666; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 0.4rem; }

/* ── MINIMAL FOOTER ── */
.min-footer { padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.min-footer-inner { display: flex; justify-content: space-between; align-items: center; }
.min-footer .brand span { color: #444; font-size: 0.85rem; }
.min-footer-links { display: flex; gap: 2rem; }
.min-footer-links a { color: #444; font-size: 0.85rem; font-weight: 500; }
.min-footer-links a:hover { color: #999; }

.fp-features { padding: 15vh 0; }

.bento-section-header { text-align: center; margin-bottom: 5rem; }
.bento-eyebrow {
    font-family: var(--font-head); font-size: 0.85rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--fp-accent);
    display: block; margin-bottom: 1rem;
}
.bento-headline {
    font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
    line-height: 1.05; letter-spacing: -0.03em; color: #fff; margin-bottom: 1rem;
}
.bento-subline { font-size: 1.2rem; color: #666; max-width: 450px; margin: 0 auto; }

.bento-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.bento-wide { grid-column: span 2; }

.bento-card {
    background: rgba(12, 12, 12, 0.6); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px; padding: 2.5rem; position: relative; overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.bento-card:hover { border-color: rgba(255,255,255,0.15); }
.bento-card:hover .bento-card-glow { opacity: 1; }

.bento-card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.06), transparent 60%);
    opacity: 0; transition: opacity 0.6s ease; pointer-events: none; z-index: 0;
}

.bento-visual {
    height: 200px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem; position: relative; z-index: 1;
}
.bento-text { position: relative; z-index: 1; }
.bento-text h3 {
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 700;
    color: #fff; margin-bottom: 0.5rem; letter-spacing: -0.01em;
}
.bento-text p { font-size: 1rem; color: #777; line-height: 1.6; }

/* ── Sync UI Animation ── */
.sync-ui { display: flex; align-items: center; gap: 2rem; width: 100%; justify-content: center; }
.sync-node {
    background: rgba(20,20,20,0.8); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; padding: 1.5rem 2rem; text-align: center; min-width: 160px;
    transition: all 0.4s ease;
}
.sync-node-label { font-size: 0.75rem; color: #666; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 600; }
.sync-node-value {
    font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: #fff;
    transition: color 0.3s, text-shadow 0.3s;
}
.sync-node.flash .sync-node-value { color: #10b981; text-shadow: 0 0 20px rgba(16, 185, 129, 0.5); }
.sync-node.flash { border-color: rgba(16, 185, 129, 0.4); box-shadow: 0 0 30px rgba(16, 185, 129, 0.1); }

.sync-beam {
    width: 80px; height: 2px; background: rgba(255,255,255,0.05); position: relative;
    border-radius: 2px; overflow: hidden;
}
.sync-beam-particle {
    position: absolute; top: 0; left: -30%; width: 30%; height: 100%;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    animation: beam-travel 2s ease-in-out infinite;
    border-radius: 2px;
}
@keyframes beam-travel {
    0% { left: -30%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ── Cloud Upload ── */
.cloud-upload-icon { position: relative; display: flex; align-items: center; justify-content: center; }
.cloud-rings { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.cloud-ring-1, .cloud-ring-2 {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%; border: 1px solid rgba(201, 169, 110, 0.15);
}
.cloud-ring-1 { width: 80px; height: 80px; animation: ring-pulse 3s ease-out infinite; }
.cloud-ring-2 { width: 110px; height: 110px; animation: ring-pulse 3s ease-out 1s infinite; }
@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* ── QR Scanner ── */
.qr-scanner { position: relative; display: flex; align-items: center; justify-content: center; }
.qr-body { position: relative; padding: 1rem; border: 2px solid rgba(255,255,255,0.08); border-radius: 12px; background: rgba(15,15,15,0.5); }
.qr-scan-line {
    position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--fp-accent), transparent);
    box-shadow: 0 0 15px var(--fp-accent), 0 0 30px rgba(201, 169, 110, 0.3);
    animation: qr-scan 3s ease-in-out infinite alternate;
    border-radius: 2px;
}
@keyframes qr-scan {
    0% { top: 5%; }
    100% { top: 90%; }
}

/* ── Enterprise Card ── */
.bento-enterprise {
    min-height: 280px; display: flex; align-items: center; padding: 3.5rem;
    background: rgba(8, 8, 8, 0.8); border-color: rgba(201, 169, 110, 0.1);
}
.bento-enterprise:hover { border-color: rgba(201, 169, 110, 0.3); }
.bento-enterprise-orb {
    position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, rgba(201, 169, 110, 0.03) 40%, transparent 70%);
    pointer-events: none; z-index: 1;
    animation: orb-breathe 6s ease-in-out infinite;
}
@keyframes orb-breathe {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
    50% { opacity: 1; transform: translateY(-50%) scale(1.1); }
}




/* ── FOOTER ── */
.fp-footer { border-top: 1px solid var(--fp-border); padding: 8rem 0 3rem; background: #060709; }
.fp-f-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6rem; flex-wrap: wrap; gap: 2rem;}
.bg-copper { background: var(--fp-accent); color: #fff;}
.bg-copper:hover { background: var(--fp-accent-light); color: #000; }
.fp-f-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--fp-border); padding-top: 2rem;}
.f-links { display: flex; gap: 2rem; font-size: 0.95rem; font-weight: 500; color: var(--fp-muted);}
.f-links a:hover { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .fp-nav, .h-actions { display: none; }
    .menu-toggle { display: block; }
    
    .fp-hero { padding-top: 12vh; min-height: 100vh; padding-bottom: 0vh; display: flex; flex-direction: column; overflow: hidden; background: linear-gradient(to bottom, #FBFBFB 0%, #FBFBFB 40%, #030303 100%); }
    .hero-fade-mask { height: 35vh; }
    .badge-pill { display: none; } /* Mobilde çok yer kapladığı için iptal */
    
    .hero-overlay { top: 40%; }
    
    .hero-showroom { position: absolute; top: 0; height: 100vh; margin-top: 0; align-items: flex-start; transform: scale(1.15); transform-origin: top center; opacity: 1; z-index: 0; }
    .showroom-wrapper { transform: rotateX(15deg) rotateZ(-4deg) scale(1); }
    
    
    /* Chapter workflow — mobile */
    .ch-section-header { padding: 8vh 5% 4vh; }
    .ch-section-title { font-size: clamp(2rem, 10vw, 3rem); }
    .ch-counter { display: none; }
    .ch-chapter {
        min-height: 0; padding: 8vh 5%;
        flex-direction: column; align-items: flex-start;
        gap: 0;
    }
    .ch-inner { max-width: 100%; }
    .ch-inner--right { margin-left: 0; text-align: left; }
    .ch-inner--right .ch-desc { margin-left: 0; }
    .ch-inner--right .ch-tags { justify-content: flex-start; }
    .ch-title { font-size: clamp(3rem, 12vw, 5rem); }
    .ch-bg-num { display: none; }
    /* Phone below copy on mobile */
    .ch-phone-float,
    .ch-phone-float--left {
        position: relative;
        right: auto; left: auto; bottom: auto;
        margin-top: 3rem;
        transform: none !important;
        align-self: flex-start;
    }
    .ch-phone-float::before,
    .ch-phone-float--left::before { display: none; }
    .ch-phone { width: min(240px, 65vw); border-radius: 36px; }
    .ch-chapter:hover .ch-phone-float,
    .ch-chapter:hover .ch-phone-float--left,
    .ch-chapter.in-view .ch-phone-float,
    .ch-chapter.in-view .ch-phone-float--left { transform: none !important; }
    .ch-ui { box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
    .ch-ui--menu { width: min(320px, 88vw); }
    .ch-ui--qr { width: min(260px, 72vw); }
    .ch-ui--translate { width: min(320px, 88vw); }
    
    /* Stats Mobile */
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* Pricing Mobile */
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; gap: 2rem; padding: 0 1rem; }
    .pricing-card.popular { transform: scale(1); border-color: var(--fp-accent); }
    .pricing-card.popular:hover { transform: translateY(-6px); }
    
    /* Testimonials Mobile */
    .testimonial-slide { min-width: 300px; max-width: 300px; }
    
    /* Final CTA Mobile */
    .final-cta-orb { width: 300px; height: 300px; }
    .final-cta-buttons { flex-direction: column; align-items: center; }
    
    /* Footer Mobile */
    .min-footer-inner { flex-direction: column; gap: 1rem; text-align: center; }

}

/* Utils */
.fade-up { opacity: 0; transform: translateY(20px); transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; }

/* ── DARK ELITE THEME (Premium Post-Hero Aesthetic) ── */
.dark-elite-theme {
    background-color: #030303; color: #fff;
    --fp-bg: #030303; --fp-text: #fff; --fp-muted: #999; --fp-border: rgba(255,255,255,0.1);
}
.dark-elite-theme .reveal-text { color: #fff; }
.dark-elite-theme h2, .dark-elite-theme h3 { color: #fff; }
.dark-elite-theme .fp-title-lg, .dark-elite-theme .fp-title-md { color: #fff; text-shadow: 0 4px 20px rgba(0,0,0,1); }
.dark-elite-theme .fp-footer { background: #000; border-top: 1px solid rgba(255,255,255,0.05); }
.dark-elite-theme .lang-step .ls-title { color: #fff; }
.dark-elite-theme .lang-step .ls-desc { color: #999; }
.dark-elite-theme .sticky-phone-frame { border-color: #222; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }

@keyframes beam-travel-v {
    0% { top: -30%; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
