/* =============================================================
   AXENDELL — LEGACY CSS (Faz 1)
   Not: *, html, body resets base.css'de tanımlı, buradan kaldırıldı.
   Yükleme sırası: tokens → base → components → legacy → sections
   ============================================================= */

/* ─── Eski renkler (legacy bölümler için) ─── */
:root {
  --gold-1: #FFD700; --gold-2: #F5C518; --gold-3: #DAA520;
  --gold-4: #B8860B; --gold-5: #8B6914;
  --gold-gradient: linear-gradient(135deg,#FFD700,#F5C518,#DAA520,#F5C518,#FFD700);
  --gold-shine: linear-gradient(135deg,#fff6d5,#ffd700,#b8860b,#ffd700,#fff6d5);
  --lila-1: #a855f7; --lila-2: #7c3aed; --lila-glow: rgba(168,85,247,0.4);
  --dark-1: #0a0a0a; --dark-2: #111; --dark-3: #1a1a1a; --dark-4: #222; --dark-5: #2a2a2a;
  --whatsapp: #25D366;
}

/* Background Particles */
.bg-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.bg-particles .particle { position: absolute; width: 3px; height: 3px; background: var(--gold-1); border-radius: 50%; opacity: 0; animation: floatParticle 8s infinite; }
@keyframes floatParticle { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 10% { opacity: .6; } 90% { opacity: .6; } 100% { opacity: 0; transform: translateY(-10vh) scale(1); } }

/* Section Styles */
.section { padding: 100px 20px; position: relative; z-index: 2; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; padding: 6px 16px; background: rgba(255,215,0,.1); border: 1px solid rgba(255,215,0,.2); border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--gold-1); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,5vw,44px); font-weight: 700; margin-bottom: 16px; }
.section-title .gold-text { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 550px; margin: 0 auto; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 24px; }
.feature-card { background: var(--dark-2); border: 1px solid var(--dark-4); border-radius: 20px; padding: 36px 28px; transition: all .4s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold-gradient); opacity: 0; transition: opacity .4s; }
.feature-card:hover { border-color: rgba(255,215,0,.3); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 56px; height: 56px; background: rgba(255,215,0,.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.feature-card h3 { font-family: 'Outfit', sans-serif; font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; }
.testimonial-card { background: var(--dark-2); border: 1px solid var(--dark-4); border-radius: 20px; padding: 28px; transition: all .3s; }
.testimonial-card:hover { border-color: rgba(255,215,0,.2); }
.testimonial-stars { color: var(--gold-1); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: var(--gold-gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--dark-1); font-size: 16px; }
.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-date { font-size: 12px; color: var(--text-secondary); }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { background: var(--dark-2); border: 1px solid var(--dark-4); border-radius: 16px; margin-bottom: 12px; overflow: hidden; transition: border-color .3s; }
.faq-item:hover, .faq-item.active { border-color: rgba(255,215,0,.3); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 15px; transition: color .3s; user-select: none; }
.faq-question:hover { color: var(--gold-1); }
.faq-question .faq-icon { font-size: 20px; color: var(--gold-1); transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* CTA */
.cta-section { text-align: center; padding: 80px 20px; position: relative; z-index: 2; }
.cta-box { max-width: 700px; margin: 0 auto; padding: 60px 40px; background: var(--dark-2); border: 1px solid rgba(255,215,0,.2); border-radius: 30px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at center,rgba(255,215,0,.05) 0%,transparent 70%); }
.cta-box h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px,4vw,36px); font-weight: 700; margin-bottom: 16px; position: relative; }
.cta-box p { font-size: 16px; color: var(--text-secondary); margin-bottom: 30px; position: relative; }

/* Footer */
.footer { background: var(--dark-2); border-top: 1px solid var(--dark-4); padding: 60px 20px 30px; position: relative; z-index: 2; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 600; color: var(--gold-1); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: var(--text-secondary); font-size: 14px; padding: 4px 0; transition: color .3s; }
.footer-col a:hover { color: var(--gold-1); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid var(--dark-4); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: var(--text-secondary); }

/* Scroll Reveal (legacy) */
.reveal { opacity: 0; transform: translateY(40px); transition: all .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Section başlıkları altın tonu ── */
#accounts .section-title, #how .section-title, #features .section-title,
#testimonials .section-title, #faq .section-title {
  background: linear-gradient(180deg,#F3DD84 0%,#D4AF37 60%,#8C6A16 100%) !important;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-title .gold-text { background: none !important; -webkit-text-fill-color: #F3DD84 !important; color: #F3DD84 !important; }
.section-desc { color: #B8B4A7 !important; font-family: 'Inter', sans-serif !important; font-size: 15.5px !important; line-height: 1.7 !important; max-width: 620px; margin: 0 auto !important; }

/* ── NASIL ÇALIŞIR ── */
.ax-how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.ax-step {
  position: relative;
  background: linear-gradient(180deg,rgba(20,20,26,.88),rgba(12,12,16,.96));
  border: 1px solid rgba(212,175,55,.16); border-radius: 20px; padding: 32px 28px 28px;
  transition: transform .3s ease, border-color .3s ease; overflow: hidden;
}
.ax-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,rgba(212,175,55,.4),transparent); }
.ax-step:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.32); }
.ax-step-num { font-family: 'Playfair Display',serif; font-size: 46px; font-weight: 700; line-height: 1; background: linear-gradient(180deg,#F3DD84 0%,#8C6A16 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .55; margin-bottom: 8px; letter-spacing: -1px; }
.ax-step-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(212,175,55,.06); border: 1px solid rgba(212,175,55,.16); color: #D4AF37; margin-bottom: 20px; }
.ax-step h3 { font-family: 'Playfair Display',serif; font-size: 22px; font-weight: 700; color: #F5F2E8; margin-bottom: 10px; letter-spacing: -.2px; }
.ax-step p { font-family: 'Inter',sans-serif; font-size: 14.5px; line-height: 1.7; color: #B8B4A7; }

/* ── Kart çerçeve rafinesi ── */
.feature-card, .testimonial-card, .faq-item {
  border: 1px solid rgba(212,175,55,.16) !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.35) !important;
}

/* Responsive */
@media (max-width: 900px) { .ax-how-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; } .ax-step { padding: 24px 22px; } .ax-step-num { font-size: 38px; } }
@media (max-width: 768px) { .section { padding: 60px 16px; } .features-grid { grid-template-columns: 1fr; } .testimonials-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } .footer-bottom { flex-direction: column; text-align: center; } .cta-box { padding: 40px 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }