*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #F97316;
  --orange-dim: rgba(249,115,22,0.1);
  --bg: #ffffff;
  --surface: #F9FAFB;
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #9CA3AF;
  --text-mid: #6B7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s, background 0.3s;
  gap: 1.5rem;
}

nav.scrolled {
  border-bottom-color: var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.logo span { color: var(--orange); }
.logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--text); background: var(--surface); }
.nav-menu a.active { color: var(--text); font-weight: 600; }

.nav-links { display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; }

.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-login {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
}
.btn-login:hover { border-color: #D1D5DB !important; }

.btn-cta {
  background: var(--orange) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.btn-cta:hover { background: #EA580C !important; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.75rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: var(--text);
}

h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  color: var(--text-mid);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover { background: #EA580C; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: #D1D5DB; }

/* ── TICKER ── */
.ticker-wrapper {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.ticker-wrapper::after  { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker 40s linear infinite;
  width: max-content;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-size: 0.8rem;
  color: var(--text-mid);
}

.ticker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34,197,94,0.4);
}

.ticker-dot.orange { background: var(--orange); box-shadow: 0 0 6px rgba(249,115,22,0.4); }

.ticker-route { color: var(--text); font-weight: 500; }
.ticker-detail { color: var(--text-muted); }
.ticker-badge {
  background: var(--orange-dim);
  color: var(--orange);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}
.ticker-sep {
  color: var(--border);
  font-size: 1.2rem;
}

/* ── HOW IT WORKS ── */
.how-section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 3rem;
  color: var(--text);
}

.tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.3rem;
  width: fit-content;
}

.tab {
  padding: 0.55rem 1.25rem;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.2s;
  border: none;
  background: transparent;
}

.tab.active {
  background: var(--orange);
  color: #fff;
}

.tab-content { display: none; }
.tab-content.active { display: flex; flex-direction: column; gap: 0.5rem; }

.step-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.step-row:hover { border-color: #D1D5DB; }

.step-num-big {
  font-size: 3rem;
  font-weight: 900;
  color: #E5E7EB;
  line-height: 1;
  width: 60px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.step-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.step-icon {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ── SPLIT CTA ── */
.split-section {
  padding: 2rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.split-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.split-card:hover { border-color: #D1D5DB; transform: translateY(-2px); }

.split-card.accent { border-color: rgba(249,115,22,0.3); }
.split-card.accent:hover { border-color: var(--orange); }

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.card-arrow {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.1rem;
  transition: background 0.2s;
}
.split-card:hover .card-arrow { background: var(--orange); color: #fff; }

/* ── EMAIL ── */
.email-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.email-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.email-box h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.email-box p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.email-row {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.email-row input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.email-row input::placeholder { color: var(--text-muted); }
.email-row input:focus { border-color: var(--orange); }

.email-row button {
  padding: 0.75rem 1.25rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.email-row button:hover { background: #EA580C; }

.email-confirm {
  display: none;
  color: #16A34A;
  font-size: 0.875rem;
  margin-top: 1rem;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-col a {
  display: block;
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  opacity: 0.6;
  cursor: not-allowed;
  user-select: none;
}

.store-badge svg { width: 20px; height: 20px; flex-shrink: 0; }

.store-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

.store-badge-text small {
  font-size: 0.62rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

footer .logo { font-size: 1rem; }

footer p {
  color: var(--text-muted);
  font-size: 0.78rem;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}
footer a:hover { color: var(--text); }

/* ── PAGE HERO (alt sayfalar) ── */
.page-hero {
  padding: 9rem 2rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: -1.5px;
}

.page-hero p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 600px;
}

/* ── CONTENT (prose) ── */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.content-section h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}
.content-section h2:first-child { margin-top: 0; }

.content-section p,
.content-section li {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}

.content-section p { margin-bottom: 1rem; }
.content-section ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.content-section li { margin-bottom: 0.4rem; }

/* ── TEAM GRID (hakkımızda) ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

.value-card .icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.value-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.stat-box .num { font-size: 2rem; font-weight: 900; color: var(--orange); letter-spacing: -1px; }
.stat-box .label { font-size: 0.8rem; color: var(--text-mid); margin-top: 0.25rem; }

/* ── FAQ (sss) ── */
.faq-list { max-width: 900px; margin: 0 auto; padding: 0 2rem 5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--surface);
  border: none;
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}

.faq-question .icon { color: var(--orange); font-size: 1.2rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 1.4rem 1.1rem;
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

/* ── CONTACT FORM ── */
.contact-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.contact-info-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1.25rem; color: var(--text); }

.contact-info-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.contact-info-row .icon { color: var(--orange); flex-shrink: 0; }
.contact-info-row a { color: var(--text-mid); text-decoration: none; }
.contact-info-row a:hover { color: var(--text); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--orange); }

.form-msg {
  font-size: 0.85rem;
  display: none;
}
.form-msg.success { color: #16A34A; display: block; }
.form-msg.error { color: #DC2626; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-links .btn-ghost-nav { display: none; }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 99;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    display: block;
    color: var(--text-mid);
    text-decoration: none;
    background: none;
    border-radius: 0;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid var(--border);
  }
  .mobile-menu a:last-child { border-bottom: none; }

  .mobile-menu a.btn {
    display: flex;
    justify-content: center;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    border-bottom: none;
    margin: 0.4rem 0;
  }
}

@media (min-width: 861px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 640px) {
  .split-section { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-cols { gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { letter-spacing: -1px; }

  nav { padding: 0.9rem 1.25rem; gap: 0.75rem; }
  .nav-links .btn { padding: 0.6rem 0.9rem; font-size: 0.82rem; }

  .hero { padding: 7rem 1.25rem 3rem; }
  .hero-actions { margin-bottom: 3rem; }
  .hero-actions .btn { flex: 1; justify-content: center; }

  .page-hero { padding: 7.5rem 1.25rem 2.5rem; }
  .how-section, .content-section, .split-section, .email-section,
  .faq-list, .contact-wrap, footer { padding-left: 1.25rem; padding-right: 1.25rem; }

  .tabs { width: 100%; }
  .tab { flex: 1; text-align: center; }

  .step-row { flex-wrap: wrap; gap: 1rem; padding: 1.25rem; }
  .step-num-big { width: auto; font-size: 2rem; }
  .step-icon { margin-left: 0; order: -1; }
  .step-body { order: 1; flex-basis: 100%; }

  .split-card, .contact-info-card, .contact-form { padding: 1.5rem; }
  .email-box { padding: 2rem 1.5rem; }
  .email-row { flex-direction: column; }
}
