/* ===== CanFit — Spor Salonu Sitesi ===== */

:root {
  --bg: #0a0a0a;
  --bg-alt: #131313;
  --panel: #1b1b1b;
  --panel-border: #2a2a2a;
  --red: #ff1436;
  --red-bright: #ff3d59;
  --red-dark: #8f0d21;
  --red-glow: rgba(255, 20, 54, 0.35);
  --white: #f4f4f4;
  --gray: #9a9a9a;
  --gray-dark: #666;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 300;
  transition: width 0.1s ease-out;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0 0 16px;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

p { color: var(--gray); margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  color: var(--red);
  font-family: var(--font-display);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.section {
  padding: 90px 0;
}
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.95rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 0 rgba(255,20,54,0);
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 8px 24px var(--red-glow);
  transform: translateY(-2px);
}
.btn-outline {
  border-color: rgba(244,244,244,0.3);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: var(--white);
}
.logo span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, var(--bg) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.75) 100%);
}
.hero-glow {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  top: 0;
  left: 0;
  transform: translate(calc(60vw - 240px), calc(10vh - 240px));
  pointer-events: none;
  filter: blur(10px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-content h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 20px;
}
.hero-content h1 .hl { color: var(--red); }
.hero-content .lead {
  font-size: 1.15rem;
  color: #d5d5d5;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gray);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollpulse 1.8s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 0;
  border-bottom: 1px solid var(--panel-border);
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--red);
  line-height: 1;
}
.stat-label {
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===== Cards ===== */
.grid {
  display: grid;
  gap: 28px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  display: block;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); border-color: var(--red-dark); }
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap 0.2s ease;
}
.card:hover .card-more { gap: 10px; }
.card-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-photo img { transform: scale(1.08); }
.card-body { padding: 22px; }
.card-body h3 { margin-bottom: 8px; }
.card-body p { margin-bottom: 0; font-size: 0.95rem; }
.card-tag {
  display: inline-block;
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 10px;
}

/* ===== Features ===== */
.feature {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 8px;
  background: rgba(255,20,54,0.12);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

/* ===== Testimonials ===== */
.testimonial-wrap { position: relative; }
.testimonial-wrap::before,
.testimonial-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 18px;
  width: 70px;
  pointer-events: none;
  z-index: 2;
}
.testimonial-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.testimonial-wrap::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 4px 18px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--red-dark) var(--panel);
}
.testimonial-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.testimonial-track::-webkit-scrollbar { height: 6px; }
.testimonial-track::-webkit-scrollbar-track { background: var(--panel); border-radius: 4px; }
.testimonial-track::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 4px; }

.testimonial-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.t-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.t-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }

.testimonial {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--red);
  border-radius: 8px;
  padding: 28px;
  user-select: none;
}
.testimonial p { color: var(--white); font-style: italic; }
.testimonial-name {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(10,10,10,0.92));
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
.cta-banner p { max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--panel-border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 14px; }
.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--panel-border);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-dark);
}
.footer-bottom a { color: var(--gray-dark); text-decoration: underline; }

/* ===== Page header (inner pages) ===== */
.page-header {
  position: relative;
  padding: 170px 0 80px;
  overflow: hidden;
}
.page-header-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.page-header-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4), var(--bg) 95%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { font-size: clamp(2.4rem, 6vw, 4rem); }

/* ===== Day slider (haftalık program) ===== */
.day-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 24px;
  scrollbar-width: none;
}
.day-tabs::-webkit-scrollbar { display: none; }
.day-tab {
  flex: 0 0 auto;
  padding: 12px 22px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  color: var(--gray);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.day-tab:hover { border-color: var(--red); color: var(--white); }
.day-tab.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.day-slides-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.day-slides-viewport {
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--panel);
}
.day-slides-track {
  display: flex;
  transition: transform 0.4s ease;
}
.day-slide {
  flex: 0 0 100%;
  padding: 8px 0;
}
.day-schedule-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--panel-border);
  font-size: 0.95rem;
  color: var(--white);
}
.day-schedule-list li:last-child { border-bottom: none; }
.day-time {
  flex: 0 0 70px;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  color: var(--red);
}
.day-arrow {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.day-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }

@media (max-width: 640px) {
  .day-arrow { display: none; }
}

/* ===== Values / Icon list ===== */
.value-card {
  text-align: center;
  padding: 32px 20px;
}
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

/* ===== Trainer cards ===== */
.trainer-card { text-align: center; }
.trainer-card .card-photo { aspect-ratio: 3/4; }
.trainer-card .card-body h3 { margin-bottom: 2px; }
.trainer-role { color: var(--red); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }

/* ===== Gallery strip ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery img {
  width: 100%; height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-item .icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(255,20,54,0.12);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item h4 { margin: 0 0 4px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--white); }
.contact-info-item p { margin: 0; }

.form-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 36px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-row input, .form-row textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--panel-border);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-note { font-size: 0.8rem; color: var(--gray-dark); margin-top: 14px; }

/* ===== Program detail pages ===== */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  transition: color 0.2s ease, gap 0.2s ease;
}
.back-link:hover { color: var(--red); gap: 12px; }

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}
.detail-main h2 { margin-top: 44px; }
.detail-main h2:first-child { margin-top: 0; }
.detail-main p { font-size: 1rem; }

.benefit-list, .flow-steps { margin: 0 0 8px; padding: 0; list-style: none; }
.benefit-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.95rem;
}
.benefit-list li::before {
  content: "✓";
  color: var(--red);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.flow-steps { counter-reset: step; }
.flow-steps li {
  position: relative;
  padding-left: 46px;
  margin-bottom: 22px;
  color: var(--gray);
}
.flow-steps li strong { color: var(--white); display: block; margin-bottom: 4px; }
.flow-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--font-display);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

.info-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 30px;
  position: sticky;
  top: 100px;
}
.info-card h4 {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.info-card .info-value {
  color: var(--white);
  font-family: var(--font-display);
  margin-bottom: 20px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.info-card hr {
  border: none;
  border-top: 1px solid var(--panel-border);
  margin: 22px 0;
}
.info-card .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .navbar-inner.open .nav-links {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,10,0.97);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--panel-border);
  }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
  .testimonial { flex-basis: 280px; }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* ===== Blog ===== */
.blog-post {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
.blog-post-media { aspect-ratio: 4/3; }
.blog-post-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-body { padding: 28px 28px 28px 0; }
.blog-meta {
  color: var(--gray);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog-post-body h2 { margin: 0 0 14px; font-size: 1.5rem; }
.blog-post-body p { color: var(--gray); font-size: 0.96rem; margin-bottom: 12px; }
.blog-post-body p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .blog-post { grid-template-columns: 1fr; }
  .blog-post-body { padding: 22px; }
}

/* ===== FAQ (accordion) ===== */
.faq-item {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  margin-bottom: 10px;
}
.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.4rem;
  margin-left: 16px;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item[open] summary { border-bottom: 1px solid var(--panel-border); }
.faq-item p { padding: 18px 24px 22px; color: var(--gray); font-size: 0.95rem; margin: 0; }

/* ===== Pricing packages ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-color: var(--red); position: relative; }
.pricing-card.featured::before {
  content: "En Popüler";
  position: absolute;
  top: -13px; left: 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  text-transform: uppercase;
}
.pricing-name { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.pricing-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }
.pricing-list { margin: 0 0 26px; padding: 0; list-style: none; flex-grow: 1; }
.pricing-list li {
  padding: 10px 0;
  border-top: 1px solid var(--panel-border);
  color: var(--white);
  font-size: 0.92rem;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pricing-list li::before { content: "✓"; color: var(--red); font-weight: 700; }
.pricing-list li.muted { color: var(--gray-dark); }
.pricing-list li.muted::before { content: "–"; color: var(--gray-dark); }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
