:root {
  --gold: #dab87c;
  --gold-bright: #f0d9a8;
  --gold-2: #a17f4f;
  --gold-soft: rgba(218, 184, 124, 0.12);
  --gradient-gold: linear-gradient(135deg, #dab87c, #a17f4f);
  --bg: #0b0b0d;
  --bg-2: #141418;
  --card: #17171c;
  --line: rgba(255, 255, 255, 0.07);
  --text: #f4f4f5;
  --muted: #8a8a93;
  --up: #4ade80;
  --down: #f87171;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 16px 0; transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(11, 11, 13, 0.9); backdrop-filter: blur(12px);
  border-bottom-color: var(--line); padding: 10px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 34px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gradient-gold); color: #1a1408; padding: 10px 22px;
  border-radius: 10px; font-weight: 700; transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(218, 184, 124, .3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 14px 28px; border-radius: 11px; font-size: 1rem; font-weight: 700;
  border: none; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
}
.btn-primary { background: var(--gradient-gold); color: #1a1408; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(218, 184, 124, .28); }
.btn-secondary { background: rgba(255, 255, 255, .05); color: var(--text); border: 1px solid var(--line); }
.btn-secondary:hover { background: rgba(255, 255, 255, .09); border-color: var(--gold); }
.btn.block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding: 130px 24px 80px;
  background: radial-gradient(ellipse at 70% 0%, rgba(218, 184, 124, .12) 0%, transparent 55%);
}
.hero-container {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px;
  background: var(--gold-soft); border: 1px solid rgba(218, 184, 124, .3);
  color: var(--gold); padding: 8px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600;
}
.hero-title { font-size: 3.4rem; font-weight: 800; line-height: 1.1; margin-bottom: 22px; }
.hero-title span {
  background: var(--gradient-gold); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-description { font-size: 1.15rem; color: var(--muted); margin-bottom: 34px; max-width: 520px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero mockup (panel gorunumu) */
.mockup {
  background: linear-gradient(180deg, #1a1a20, #101014); border: 1px solid var(--line);
  border-radius: 20px; padding: 18px; box-shadow: 0 50px 120px rgba(0, 0, 0, .55);
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.mockup-head {
  display: flex; justify-content: space-between; align-items: center; padding: 12px 16px;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent) 1;
  margin-bottom: 8px;
}
.mockup-brand { color: var(--gold); font-weight: 700; letter-spacing: .5px; }
.mockup-clock { font-size: 1.3rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.mockup-table { width: 100%; border-collapse: collapse; }
.mockup-table th {
  text-align: left; color: var(--muted); font-size: .72rem; text-transform: uppercase;
  letter-spacing: .5px; padding: 8px 14px;
}
.mockup-table th:nth-child(n+2), .mockup-table td:nth-child(n+2) { text-align: right; }
.mockup-table td {
  padding: 11px 14px; border-top: 1px solid var(--line);
  font-weight: 700; font-variant-numeric: tabular-nums;
}
.mockup-table td:first-child { color: var(--text); }
.mockup-table td.up { color: var(--up); }
.mockup-table td.down { color: var(--down); }
.mockup-ticker {
  margin-top: 10px; padding: 9px 14px; border-radius: 10px;
  background: var(--gold-soft); color: var(--gold); font-weight: 600; font-size: .85rem;
  white-space: nowrap; overflow: hidden;
}

/* ---------- Sections ---------- */
.section { padding: 90px 24px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--gold-soft); color: var(--gold);
  padding: 7px 18px; border-radius: 50px; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px;
}
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 14px; }
.section-description { color: var(--muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }

/* ---------- Features ---------- */
.features { background: var(--bg-2); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 28px;
  transition: transform .25s, border-color .25s;
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(218, 184, 124, .35); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 13px; background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center; color: #1a1408;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-desc { color: var(--muted); font-size: .92rem; line-height: 1.65; }

/* ---------- References ---------- */
.reference-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.reference-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 30px 24px;
  text-align: center; transition: transform .25s, border-color .25s;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.reference-card:hover { transform: translateY(-6px); border-color: rgba(218, 184, 124, .4); }
.reference-logo {
  height: 84px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px;
}
.reference-logo img { max-height: 84px; max-width: 220px; object-fit: contain; }
.reference-initials {
  width: 72px; height: 72px; border-radius: 50%; background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800;
}
.reference-name { font-size: 1.15rem; font-weight: 700; color: var(--gold); }
.reference-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600;
  color: var(--up); background: rgba(74, 222, 128, .12); padding: 5px 12px; border-radius: 20px;
}
.reference-view { color: var(--muted); font-size: .85rem; font-weight: 600; margin-top: 4px; }
.reference-card:hover .reference-view { color: var(--gold); }

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-2); }
.pricing-common {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  max-width: 900px; margin: -20px auto 50px; color: var(--muted); font-size: .9rem;
}
.pricing-common span { display: inline-flex; align-items: center; gap: 8px; }
.pricing-common i { color: var(--gold); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  max-width: 1040px; margin: 0 auto; align-items: start;
}
.pricing-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 36px 30px;
  position: relative; transition: transform .25s;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.featured { border: 2px solid var(--gold); }
.pricing-card.featured::before {
  content: ''; position: absolute; top: 0; left: 8px; right: 8px; height: 5px;
  background: var(--gradient-gold); border-radius: 16px 16px 0 0;
}
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gradient-gold); color: #1a1408; padding: 6px 16px; border-radius: 50px;
  font-size: .74rem; font-weight: 700;
}
.pricing-title { font-size: 1.4rem; font-weight: 800; margin-top: 6px; }
.pricing-sub { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.pricing-price { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 22px; }
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; font-size: .9rem;
  border-bottom: 1px solid var(--line);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features i { color: var(--gold); width: 16px; margin-top: 4px; }
.pricing-note {
  margin-top: 14px; text-align: center; color: var(--gold); font-size: .8rem;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ---------- CTA ---------- */
.cta { text-align: center; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.cta-title { font-size: 2.6rem; font-weight: 800; margin-bottom: 16px; }
.cta-description { color: var(--muted); font-size: 1.15rem; max-width: 620px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { padding: 60px 24px 34px; background: var(--bg); border-top: 1px solid var(--line); }
.footer-top {
  max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: start;
}
.footer-logo { height: 34px; margin-bottom: 14px; }
.footer-desc { color: var(--muted); font-size: .9rem; max-width: 420px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px 26px; align-content: start; justify-content: flex-end; }
.footer-links a { color: var(--muted); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 40px auto 0; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  color: var(--muted); font-size: .84rem; text-align: center;
}
.footer-powered img { height: 22px; opacity: .8; transition: opacity .2s; }
.footer-powered a:hover img { opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
  .pricing-card.featured { order: -1; }
  .footer-top { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-desc { margin: 0 auto; }
}
@media (max-width: 620px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.4rem; }
  .section { padding: 64px 20px; }
  .section-title, .cta-title { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
}
