/* ═══════════════════════════════════════════
   Motiva Medya — Fiyat Listesi
   style.css
   ═══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0D0D0D;
  --bg2: #161616;
  --bg3: #1E1E1E;
  --border: #2A2A2A;
  --border2: #383838;
  --gold: #ef3e5b;
  --gold2: #F0C97A;
  --gold-bg: rgba(212, 168, 83, 0.08);
  --gold-border: rgba(212, 168, 83, 0.28);
  --text: #F0EDE8;
  --text2: #A0998E;
  --text3: #575757;
  --white: #FFFFFF;
  --teal: #4CC9B0;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
  min-height: 100vh;
}

/* ── HEADER ── */
header {
  padding: 90px 32px 70px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.13) 0%, transparent 68%);
  pointer-events: none;
}

.logo-line {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.logo-line::before,
.logo-line::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-border);
}

.logo-line span {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

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

header p {
  font-size: 15px;
  color: var(--text2);
  max-width: 460px;
  margin: 0 auto 36px;
  font-weight: 300;
  position: relative;
}

.header-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
}

.pill {
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  color: var(--text2);
  background: var(--bg2);
}

/* ── STICKY NAV ── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 16px;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 17px 22px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text3);
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.nav-btn:hover {
  color: var(--text2);
}

.nav-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-btn svg {
  width: 15px;
  height: 15px;
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav-btn.active svg,
.nav-btn:hover svg {
  opacity: 0.9;
}

/* ── MAIN LAYOUT ── */
main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── SECTIONS ── */
.section {
  display: none;
  padding: 60px 0 90px;
  animation: fadeUp 0.3s ease;
}

.section.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-head h2 {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.section-head p {
  font-size: 14px;
  color: var(--text2);
  font-weight: 300;
}

/* ── CARD GRIDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.cards-grid.two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cards-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.cards-grid.single {
  grid-template-columns: minmax(0, 440px);
  justify-content: center;
}

/* ── CARD ── */
.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  position: relative;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* ── FEATURED CARD ── */
.card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(150deg, #181610 0%, #1a1a1a 100%);
  /* Extra top padding to clear the badge */
  padding-top: 52px;
}

.card.featured:hover {
  border-color: rgba(212, 168, 83, 0.5);
}

/* Badge sits OUTSIDE card flow — flush with top border */
.card.featured .featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  line-height: 1;
}

/* ── CARD INTERNALS ── */
.card-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: -0.015em;
}

.card-sub {
  font-size: 12px;
  color: var(--text3);
  margin-bottom: 22px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.price-amount.gold {
  color: var(--gold);
}

.price-suffix {
  font-size: 12px;
  color: var(--text3);
}

/* ── FEATURE LIST ── */
.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

.feat-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
}

.feat-list li strong {
  color: var(--text);
  font-weight: 500;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* ── META GRID ── */
.meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
  font-size: 12px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-item .mk {
  color: var(--text3);
}

.meta-item .mv {
  color: var(--text2);
  font-weight: 500;
}

.meta-item .mv.green {
  color: var(--teal);
}

/* ── CATALOG BOX ── */
.catalog-box {
  background: var(--bg3);
  border: 1px dashed var(--border2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 14px;
}

.catalog-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.catalog-row:last-child {
  border-bottom: none;
}

.catalog-row .ck {
  color: var(--text3);
}

.catalog-row .cv {
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}

/* ── NOTE BOX ── */
.note-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.note-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text2);
  line-height: 1.65;
}

.note-icon {
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

.wa-float svg {
  width: 27px;
  height: 27px;
  fill: #fff;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text3);
}

footer strong {
  color: var(--gold);
  font-weight: 500;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  header {
    padding: 60px 20px 48px;
  }

  .cards-grid,
  .cards-grid.two,
  .cards-grid.four {
    grid-template-columns: 1fr;
  }

  main {
    padding: 0 14px;
  }

  .section {
    padding: 44px 0 64px;
  }

  .nav-btn {
    padding: 14px 14px;
    font-size: 12px;
  }

  .card.featured {
    padding-top: 50px;
  }
}