/* ============================================================
   FincanName - Web Sitesi CSS
   Konum: /assets/css/website.css
   ============================================================ */

:root {
  --fn-primary:    #6C3BAA;
  --fn-primary-dk: #4f2b80;
  --fn-primary-lt: #9b59b6;
  --fn-gold:       #D4AF37;
  --fn-gold-lt:    #f0c040;
  --fn-dark:       #0F0F23;
  --fn-dark-2:     #1A1A2E;
  --fn-dark-3:     #16213E;
  --fn-card:       #1E2A45;
  --fn-text:       #e0e0e0;
  --fn-muted:      #9e9e9e;
  --fn-white:      #ffffff;
  --fn-border:     rgba(255,255,255,.1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.fn-body {
  background: var(--fn-dark);
  color: var(--fn-text);
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
}

/* ── Navbar ── */
.fn-navbar {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--fn-border);
  padding: 14px 0;
}
.fn-brand { display:flex; align-items:center; gap:10px; text-decoration:none; }
.fn-brand-icon { font-size: 1.6rem; }
.fn-brand-name { font-size: 1.25rem; font-weight: 800; color: var(--fn-white); letter-spacing: -.3px; }
.fn-nav-link {
  color: rgba(255,255,255,.7) !important;
  font-size: .9rem; font-weight: 500;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: all .2s;
}
.fn-nav-link:hover, .fn-nav-link.active {
  color: var(--fn-white) !important;
  background: rgba(108,59,170,.3);
}

/* ── Buttons ── */
.fn-btn-primary {
  background: linear-gradient(135deg, var(--fn-primary), var(--fn-primary-dk));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.fn-btn-primary:hover { opacity: .9; color: #fff; transform: translateY(-1px); }
.fn-btn-outline {
  background: transparent;
  color: var(--fn-white);
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 500;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fn-btn-outline:hover { border-color: var(--fn-primary); color: var(--fn-white); background: rgba(108,59,170,.15); }

/* ── Download buttons ── */
.fn-download-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--fn-dark-3); color: var(--fn-white);
  border: 1.5px solid var(--fn-border);
  border-radius: 14px; padding: 12px 22px;
  text-decoration: none; transition: all .25s;
}
.fn-download-btn:hover { border-color: var(--fn-primary); background: var(--fn-dark-2); color: #fff; transform: translateY(-2px); }
.fn-download-btn i  { font-size: 1.6rem; color: var(--fn-gold); }
.fn-download-btn small { font-size: .7rem; color: var(--fn-muted); display: block; }
.fn-download-btn-lg { padding: 16px 28px; }
.fn-download-btn-lg i { font-size: 2rem; }

/* ── Gradient text ── */
.fn-gradient-text {
  background: linear-gradient(135deg, var(--fn-primary-lt), var(--fn-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── HERO ── */
.fn-hero {
  padding: 90px 0 80px;
  background: linear-gradient(135deg, var(--fn-dark) 0%, var(--fn-dark-2) 50%, #1a0a30 100%);
  position: relative; overflow: hidden;
}
.fn-hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(108,59,170,.15) 0%, transparent 70%);
  pointer-events: none;
}
.fn-hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(108,59,170,.2);
  border: 1px solid rgba(108,59,170,.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: .82rem;
  color: var(--fn-primary-lt);
  font-weight: 500;
}
.fn-hero-title { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--fn-white); line-height: 1.15; margin-bottom: 20px; }
.fn-hero-desc  { font-size: 1.05rem; color: var(--fn-muted); max-width: 500px; line-height: 1.7; }
.fn-hero-stats { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.fn-stat-item  { text-align: center; }
.fn-stat-num   { font-size: 1.4rem; font-weight: 800; color: var(--fn-white); }
.fn-stat-lbl   { font-size: .75rem; color: var(--fn-muted); }
.fn-stat-divider { width: 1px; height: 36px; background: var(--fn-border); }

/* ── Phone mockup ── */
.fn-phone-frame {
  width: 240px; margin: 0 auto;
  background: var(--fn-dark-2);
  border-radius: 36px;
  border: 2px solid rgba(108,59,170,.5);
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05),
              inset 0 1px 0 rgba(255,255,255,.1);
  overflow: hidden;
  aspect-ratio: 9/19;
}
.fn-phone-screen { padding: 20px 14px; }

/* ── Sections ── */
.fn-section { padding: 80px 0; }
.fn-section-header { text-align: center; margin-bottom: 50px; }
.fn-section-header h2 { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 700; color: var(--fn-white); margin-bottom: 10px; }
.fn-section-header p  { color: var(--fn-muted); font-size: 1rem; }
.fn-how-section     { background: var(--fn-dark-2); }
.fn-features-section{ background: var(--fn-dark); }

/* ── Step Cards ── */
.fn-step-card {
  background: var(--fn-card);
  border: 1px solid var(--fn-border);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform .25s;
}
.fn-step-card:hover { transform: translateY(-4px); }
.fn-step-num {
  position: absolute; top: -16px; left: 24px;
  background: linear-gradient(135deg, var(--fn-primary), var(--fn-primary-dk));
  color: #fff; font-weight: 800; font-size: .8rem;
  padding: 4px 10px; border-radius: 8px;
}
.fn-step-icon { font-size: 2.2rem; color: var(--fn-gold); margin: 12px 0; }
.fn-step-card h4 { color: var(--fn-white); font-weight: 700; font-size: 1.1rem; margin-bottom: 10px; }
.fn-step-card p  { color: var(--fn-muted); font-size: .9rem; }

/* ── Feature Cards ── */
.fn-feature-card {
  background: var(--fn-dark-2);
  border: 1px solid var(--fn-border);
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  transition: all .25s;
}
.fn-feature-card:hover { border-color: var(--fn-primary); transform: translateY(-3px); }
.fn-feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.fn-feature-card h5 { color: var(--fn-white); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.fn-feature-card p  { color: var(--fn-muted); font-size: .88rem; margin: 0; }

/* ── CTA ── */
.fn-cta-section {
  background: linear-gradient(135deg, var(--fn-dark-2) 0%, #1a0a30 100%);
  padding: 90px 0;
  border-top: 1px solid var(--fn-border);
}
.fn-cta-section h2 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: var(--fn-white); margin-bottom: 12px; }
.fn-cta-section p  { color: var(--fn-muted); font-size: 1rem; }

/* ── Pages ── */
.fn-page-section { padding: 60px 0 80px; }
.fn-page-header  { margin-bottom: 40px; }
.fn-page-header h1 { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: var(--fn-white); }
.fn-page-lead    { color: var(--fn-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.fn-prose { color: var(--fn-text); line-height: 1.8; font-size: .97rem; }
.fn-prose h2, .fn-prose h3 { color: var(--fn-white); margin-top: 28px; }
.fn-prose a { color: var(--fn-primary-lt); }
.fn-prose p { margin-bottom: 16px; }

/* ── Contact ── */
.fn-contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.fn-contact-card {
  background: var(--fn-card);
  border: 1px solid var(--fn-border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.fn-contact-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(108,59,170,.2); color: var(--fn-primary-lt);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.fn-contact-label { font-size: .72rem; color: var(--fn-muted); text-transform: uppercase; letter-spacing: .08em; }
.fn-contact-value { color: var(--fn-white); font-size: .9rem; text-decoration: none; }
.fn-contact-value:hover { color: var(--fn-primary-lt); }

.fn-contact-form-box {
  background: var(--fn-dark-2);
  border: 1px solid var(--fn-border);
  border-radius: 20px;
  padding: 36px;
}
.fn-form-title { color: var(--fn-white); font-weight: 700; font-size: 1.4rem; margin-bottom: 4px; }
.fn-label { display: block; color: var(--fn-muted); font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.fn-input {
  width: 100%;
  background: var(--fn-dark-3);
  border: 1.5px solid var(--fn-border);
  border-radius: 12px;
  color: var(--fn-white);
  padding: 12px 16px;
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
  display: block;
}
.fn-input:focus { border-color: var(--fn-primary); }
.fn-input option { background: var(--fn-dark-2); }

/* ── FAQ ── */
.fn-faq-item { background: var(--fn-dark-2); border: 1px solid var(--fn-border) !important; border-radius: 12px !important; margin-bottom: 10px; overflow: hidden; }
.fn-faq-btn { background: var(--fn-dark-2) !important; color: var(--fn-white) !important; font-weight: 600; box-shadow: none !important; border-radius: 12px !important; }
.fn-faq-btn:not(.collapsed) { color: var(--fn-primary-lt) !important; }
.fn-faq-btn::after { filter: invert(1); }
.fn-faq-body { color: var(--fn-muted); background: var(--fn-dark-3); padding: 16px 22px; font-size: .92rem; line-height: 1.7; }

/* ── Footer ── */
.fn-footer {
  background: var(--fn-dark-2);
  border-top: 1px solid var(--fn-border);
  padding: 60px 0 30px;
}
.fn-footer-brand { display: flex; align-items: center; font-size: 1.2rem; font-weight: 700; color: var(--fn-white); }
.fn-footer-title { color: var(--fn-white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.fn-footer-links { list-style: none; padding: 0; margin: 0; }
.fn-footer-links li { margin-bottom: 8px; }
.fn-footer-links a { color: var(--fn-muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.fn-footer-links a:hover { color: var(--fn-white); }
.fn-footer-divider { border-color: var(--fn-border); margin: 30px 0 20px; }
.fn-social-link { color: var(--fn-muted); font-size: 1.2rem; transition: color .2s; }
.fn-social-link:hover { color: var(--fn-primary-lt); }

.fn-store-btn {
  display: flex; align-items: center; gap: 10px;
  background: var(--fn-dark-3); color: var(--fn-white);
  border: 1px solid var(--fn-border);
  border-radius: 10px; padding: 10px 18px;
  text-decoration: none; font-size: .88rem;
  transition: all .2s;
}
.fn-store-btn:hover { border-color: var(--fn-primary); color: #fff; }
.fn-store-btn i { font-size: 1.1rem; color: var(--fn-gold); }

/* ── Ads ── */
.fn-ad { text-align: center; margin: 12px 0; }
.fn-ad img { border-radius: 8px; max-width: 100%; }

/* ── Popup Reklam ── */
.fn-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.fn-popup-box {
  background: var(--fn-dark-2);
  border: 1px solid var(--fn-border);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  max-width: 600px;
  width: 100%;
}
.fn-popup-close {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.1); border: none;
  color: var(--fn-white); border-radius: 50%;
  width: 32px; height: 32px;
  cursor: pointer; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
}

/* ── Floating Reklam ── */
.fn-float-ad {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 9000;
  background: var(--fn-dark-2);
  border: 1px solid var(--fn-border);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.fn-float-close {
  position: absolute; top: -8px; right: -8px;
  background: var(--fn-primary); border: none;
  color: #fff; border-radius: 50%;
  width: 22px; height: 22px;
  cursor: pointer; font-size: .65rem;
  display: flex; align-items: center; justify-content: center;
}

/* ── Maintenance ── */
.fn-maintenance { min-height: 100vh; display: flex; align-items: center; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .fn-hero { padding: 60px 0; }
  .fn-section { padding: 50px 0; }
  .fn-contact-form-box { padding: 24px 18px; }
}
