@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #060606;
  color: #e8e8e8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #f97316; border-radius: 2px; }

/* ── Subtle grain ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 999;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 0;
  transition: all 0.3s;
}

.navbar-inner {
  max-width: 1180px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 10px 20px;
  transition: all 0.3s;
}

.navbar.scrolled .navbar-inner {
  border-radius: 0;
  margin: 0 auto;
  border-left: none; border-right: none; border-top: none;
  border-bottom-color: rgba(249,115,22,0.12);
  border-radius: 0;
}

.logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 12px rgba(249,115,22,0.4);
  flex-shrink: 0;
}

.nav-link {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  position: relative; padding-bottom: 1px;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: #f97316;
  transform: scaleX(0); transition: transform 0.2s; transform-origin: left;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { transform: scaleX(1); }

.btn-nav-ghost {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 7px 16px;
  background: rgba(255,255,255,0.03);
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif; cursor: pointer;
}
.btn-nav-ghost:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.18); }

.btn-nav-primary {
  font-size: 12px; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: none; border-radius: 8px; padding: 8px 18px;
  box-shadow: 0 3px 14px rgba(249,115,22,0.38);
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.btn-nav-primary:hover {
  box-shadow: 0 5px 20px rgba(249,115,22,0.55);
  transform: translateY(-1px);
}

/* ── Mobile menu ── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(4,4,4,0.97);
  z-index: 998; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-size: 18px; font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 11px 28px; border-radius: 10px;
  transition: all 0.15s; text-align: center; width: 100%; max-width: 260px;
}
.mobile-nav-link:hover { color: #fb923c; background: rgba(249,115,22,0.07); }

/* ── Common buttons ── */
.btn-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff; font-weight: 700; border-radius: 10px;
  box-shadow: 0 4px 20px rgba(249,115,22,0.38);
  transition: all 0.2s; position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif; cursor: pointer; border: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-orange:hover { box-shadow: 0 7px 28px rgba(249,115,22,0.55); transform: translateY(-2px); }

.btn-ghost {
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; font-weight: 500; font-family: 'Poppins', sans-serif;
  background: rgba(255,255,255,0.03); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.2); }

/* ── Orange gradient text ── */
.text-grad {
  background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section tag ── */
.stag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #f97316; margin-bottom: 14px;
}
.stag::before { content: ''; width: 18px; height: 1.5px; background: #f97316; border-radius: 1px; }

/* ── HERO ── */
.hero-bg {
  background: #060606; position: relative; overflow: hidden;
}

.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
  animation: orb-f 12s ease-in-out infinite alternate;
}
.orb-1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(249,115,22,0.22) 0%, transparent 65%); top: -180px; right: -80px; }
.orb-2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(234,88,12,0.14) 0%, transparent 65%); bottom: -80px; left: -60px; animation-delay: -6s; }
.orb-3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(251,146,60,0.1) 0%, transparent 65%); top: 40%; left: 38%; animation-delay: -10s; }
@keyframes orb-f {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(25px,-18px) scale(1.05); }
  100% { transform: translate(-18px,28px) scale(0.96); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, black 25%, transparent 100%);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.22);
  border-radius: 99px; padding: 5px 14px 5px 9px;
  font-size: 12px; font-weight: 600; color: #fb923c;
}
.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f97316; box-shadow: 0 0 6px #f97316;
  animation: pulse-d 2.2s infinite;
}
@keyframes pulse-d { 0%,100% { box-shadow: 0 0 4px #f97316; } 50% { box-shadow: 0 0 12px #f97316, 0 0 24px rgba(249,115,22,0.25); } }

/* ── Mockup ── */
.mockup-shell {
  background: #0e0e0e; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(249,115,22,0.08), 0 28px 70px rgba(0,0,0,0.7), 0 0 50px rgba(249,115,22,0.05);
}
.mockup-titlebar { background: #131313; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 10px 14px; display: flex; align-items: center; gap: 5px; }
.m-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-sidebar { background: #111; border-right: 1px solid rgba(255,255,255,0.05); width: 148px; flex-shrink: 0; padding: 10px 8px; }
.m-nav { padding: 7px 10px; border-radius: 6px; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 6px; margin-bottom: 2px; }
.m-nav.on { background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.18); color: #fb923c; }
.m-card { background: #171717; border: 1px solid rgba(255,255,255,0.06); border-radius: 9px; padding: 11px 13px; }
.m-bar-t { height: 3px; background: rgba(255,255,255,0.06); border-radius: 99px; overflow: hidden; }
.m-bar-f { height: 100%; background: linear-gradient(90deg,#f97316,#fb923c); border-radius: 99px; }
.m-tag { background: rgba(249,115,22,0.14); border: 1px solid rgba(249,115,22,0.22); color: #fb923c; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 99px; }

/* ── Ticker ── */
.ticker-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent); }
.ticker-inner { display: flex; width: max-content; animation: tick 22s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.t-item { display: flex; align-items: center; gap: 9px; padding: 0 28px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.28); white-space: nowrap; }
.t-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(249,115,22,0.45); flex-shrink: 0; }

/* ── Feature cards ── */
.feat-card {
  background: #0e0e0e; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 26px;
  position: relative; overflow: hidden; transition: all 0.22s;
}
.feat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(249,115,22,0.35), transparent); opacity: 0; transition: opacity 0.22s; }
.feat-card:hover { border-color: rgba(249,115,22,0.18); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.feat-card:hover::before { opacity: 1; }

/* ── Modules ── */
.mod-card {
  background: #0e0e0e; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 24px;
  transition: all 0.2s; position: relative; overflow: hidden;
}
.mod-card:hover { border-color: rgba(249,115,22,0.18); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(0,0,0,0.45); }

/* ── Steps ── */
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #f97316, #ea580c);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
  box-shadow: 0 4px 16px rgba(249,115,22,0.38);
  flex-shrink: 0; position: relative; z-index: 1;
}

/* ── Testimonials ── */
.quote-card {
  background: #0e0e0e; border: 1px solid rgba(255,255,255,0.07); border-radius: 14px; padding: 26px;
  transition: border-color 0.2s;
}
.quote-card:hover { border-color: rgba(249,115,22,0.14); }

/* ── CREDITS (pricing) ── */
.credit-card {
  background: #0e0e0e; border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 30px 28px;
  position: relative; overflow: hidden; transition: all 0.22s;
}
.credit-card:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(0,0,0,0.5); }
.credit-card.featured { border-color: rgba(249,115,22,0.38); background: linear-gradient(160deg, #121212 0%, #0e0e0e 100%); box-shadow: 0 0 0 1px rgba(249,115,22,0.12), 0 16px 50px rgba(0,0,0,0.45); }
.featured-tag {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white; font-size: 10px; font-weight: 700;
  padding: 3px 13px; border-radius: 99px; white-space: nowrap;
  box-shadow: 0 3px 12px rgba(249,115,22,0.38);
}
.credit-amount {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.credit-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 15px;
}
.credit-modules {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.credit-mod-pill {
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.45);
}
.credit-feat { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 9px; }
.credit-check { width: 15px; height: 15px; border-radius: 50%; background: rgba(249,115,22,0.12); border: 1px solid rgba(249,115,22,0.28); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #f97316; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.055); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 17px 0; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.8); text-align: left; background: none; border: none; cursor: pointer; font-family: 'Poppins', sans-serif; gap: 16px; transition: color 0.2s; }
.faq-btn:hover { color: #fb923c; }
.faq-arrow { width: 22px; height: 22px; border-radius: 6px; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #f97316; transition: transform 0.25s; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 180px; padding-bottom: 15px; }
.faq-answer p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ── CTA Section ── */
.cta-sec { background: #060606; position: relative; overflow: hidden; }
.cta-glow { position: absolute; width: 480px; height: 480px; background: radial-gradient(circle, rgba(249,115,22,0.1) 0%, transparent 65%); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }

/* ── Divider ── */
.divider-o { height: 1px; background: linear-gradient(90deg, transparent, rgba(249,115,22,0.25), transparent); }

/* ── Footer ── */
.footer-link { font-size: 12px; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-link:hover { color: #fb923c; }

/* ── Reveal animations ── */
@keyframes fade-up { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fade-in { animation: fade-up 0.55s ease both; }
.d1 { animation-delay: 0.08s; } .d2 { animation-delay: 0.16s; } .d3 { animation-delay: 0.24s; } .d4 { animation-delay: 0.32s; } .d5 { animation-delay: 0.40s; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal.d100 { transition-delay: 0.1s; } .reveal.d200 { transition-delay: 0.2s; } .reveal.d300 { transition-delay: 0.3s; } .reveal.d400 { transition-delay: 0.4s; }

/* ── Platform badges ── */
.platform-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 99px;
  font-size: 11px; font-weight: 600;
  border: 1px solid; white-space: nowrap;
}

@media (max-width: 768px) {
  .navbar-inner { margin: 8px 12px 0; }
  .hero-grid { background-size: 32px 32px; }
  .step-line { display: none; }
}

@media (max-width: 640px) {
  .navbar-inner { margin: 6px 10px 0; }
}

/* ── MOBILE OVERFLOW FIX ── */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* Orbs use position:absolute so they can overflow — clip them at the section level */
.hero-bg, section, footer {
  overflow-x: hidden;
}

/* Navbar inner pill must not exceed viewport */
.navbar-inner {
  max-width: calc(100vw - 20px);
}

/* Ticker must not cause overflow */
.ticker-wrap {
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Module card wide span resets on mobile */
@media (max-width: 640px) {
  [style*="grid-column: span 2"],
  [style*="grid-column:span 2"] {
    grid-column: span 1 !important;
  }
  .navbar-inner {
    margin: 6px 8px 0;
    border-radius: 10px;
    max-width: calc(100vw - 16px);
  }
}

/* Wide module card - spans 2 cols on desktop, 1 on mobile */
.mod-card-wide {
  grid-column: span 2;
}
@media (max-width: 700px) {
  .mod-card-wide {
    grid-column: span 1 !important;
  }
}

/* ════════════════════════════════════
   NAVBAR — GERÇEK ORTALAMA
════════════════════════════════════ */
.navbar-inner {
  position: relative;
}

/* Nav linklerini gerçekten ortala */
.nav-center-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-center-links .nav-link {
  white-space: nowrap;
}

/* ════════════════════════════════════
   MODULES GRID — 3 kolon düzenli
════════════════════════════════════ */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Wide card sadece desktop'ta 2 kolon kaplar */
.mod-card-wide {
  grid-column: 1 / -1; /* tüm kolonları kapla */
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ════════════════════════════════════
   KREDİ KARTI — featured-tag taşma fix
════════════════════════════════════ */
.credit-card.featured {
  padding-top: 36px; /* rozetin alanı için alan aç */
}

/* ════════════════════════════════════
   GENEL İÇERİK — daha yakın/büyük
════════════════════════════════════ */

/* Daha büyük body font */
body { font-size: 15px; }

/* Section başlıkları daha büyük */
.stag { font-size: 12px; margin-bottom: 10px; }

/* Feature kartlar daha dolgun */
.feat-card { padding: 30px; }
.feat-card h3 { font-size: 16px; }
.feat-card p { font-size: 14px; }

/* Modül kartlar */
.mod-card { padding: 26px; }

/* Kredi kartlar */
.credit-card { padding: 32px; }

/* Quote kartlar */
.quote-card { padding: 28px; }
.quote-card p { font-size: 14px; }

/* FAQ */
.faq-btn { font-size: 15px; }
.faq-answer p { font-size: 14px; }

/* ════════════════════════════════════
   TAM MOBİL UYUM
════════════════════════════════════ */
@media (max-width: 900px) {
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .mod-card-wide {
    grid-column: 1;
    flex-direction: column;
  }
  .mod-card-wide > div:last-child {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .nav-center-links { display: none !important; }
  .navbar-inner {
    padding: 8px 14px;
    margin: 6px 10px 0;
    border-radius: 12px;
  }

  /* Hero */
  .hero-bg { padding-top: 88px !important; }

  /* Stats satırı mobilde dikey */
  .hero-stats-row {
    flex-direction: column !important;
    gap: 0 !important;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
  }

  /* Modules */
  .modules-grid { grid-template-columns: 1fr !important; }
  .mod-card-wide { grid-column: 1 !important; }

  /* Krediler */
  .credit-card { padding: 28px 22px; }
  .credit-card.featured { padding-top: 40px; }

  /* Sections */
  section { padding: 52px 0 !important; }

  /* FAQs */
  .faq-btn { font-size: 14px; }

  /* Footer grid */
  footer .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  /* CTA buttons stack */
  .cta-flex {
    flex-direction: column !important;
    align-items: center !important;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    margin: 5px 8px 0;
    border-radius: 10px;
    padding: 7px 12px;
  }

  /* Hero headline */
  h1 { letter-spacing: -0.8px !important; }

  /* Platform badges wrap */
  .platform-badges {
    gap: 6px !important;
  }

  /* Credit cards */
  .credit-card { padding: 24px 18px; }

  /* Module cards */
  .mod-card { padding: 20px 16px; }

  /* Feat cards */
  .feat-card { padding: 22px 18px; }

  /* Quote cards */
  .quote-card { padding: 20px 16px; }

  /* Stats in hero */
  [data-t] { font-size: 22px !important; }

  /* Footer */
  footer { padding: 40px 0 28px !important; }
}

/* Prevent any horizontal overflow everywhere */
* { max-width: 100%; }
img, svg { max-width: 100%; height: auto; }