/* ================================================
   ÇALIŞKAN FİTTİNGS — style.css
   ================================================ */

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

/* ── CSS VARIABLES ── */
:root {
  --red:          #c0392b;
  --red-dark:     #96281b;
  --red-light:    #fdf2f1;
  --steel:        #ffffff;
  --steel-mid:    #f4f5f7;
  --steel-light:  #e8eaee;
  --silver:       #6b7280;
  --silver-light: #374151;
  --cream:        #111827;
  --white:        #ffffff;
  --accent:       #e8a020;
  --border:       #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--steel);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--red-dark);
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  letter-spacing: .04em;
  font-weight: 500;
}
.topbar a { color: #fff; text-decoration: none; opacity: .85; }
.topbar a:hover { opacity: 1; }
.topbar-left  { display: flex; gap: 28px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.topbar-icon:hover { background: rgba(255,255,255,.3); }
.topbar-icon svg { width: 14px; height: 14px; fill: white; }

/* ── NAVBAR ── */
nav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--red);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark {
  width: 46px; height: 46px;
  background: var(--red);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: white; letter-spacing: .05em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name  { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: .12em; color: #111827; }
.logo-sub   { font-size: 10px; letter-spacing: .25em; color: var(--silver); text-transform: uppercase; font-weight: 500; }

.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  color: #374151;
  text-decoration: none;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border-radius: 4px;
  transition: all .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .active { color: var(--red); }
.nav-links .active::after { transform: scaleX(1); }

.nav-cta { background: var(--red); color: white !important; padding: 10px 22px !important; border-radius: 4px !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(17,24,39,.96) 0%, rgba(17,24,39,.78) 55%, rgba(17,24,39,.35) 100%),
    repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(192,57,43,.05) 2px, rgba(192,57,43,.05) 4px),
    linear-gradient(135deg, #1a1f2e 0%, #2d1810 100%);
}
.hero-graphic {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  opacity: .18;
  animation: rotSlow 40s linear infinite;
}
@keyframes rotSlow { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content { position: relative; z-index: 2; padding: 0 80px; max-width: 760px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(192,57,43,.15);
  border: 1px solid rgba(192,57,43,.4);
  color: #e87060;
  font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 2px; margin-bottom: 32px;
  animation: fadeUp .8s ease both;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #e87060;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  line-height: .95; letter-spacing: .03em;
  color: #fff;
  animation: fadeUp .8s .15s ease both;
}
.hero h1 span { color: var(--red); }

.hero-desc {
  margin-top: 24px;
  font-size: 17px; font-weight: 300; line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  animation: fadeUp .8s .3s ease both;
}
.hero-actions { display: flex; gap: 16px; margin-top: 40px; animation: fadeUp .8s .45s ease both; }

.hero-stats  { display: flex; gap: 48px; margin-top: 64px; animation: fadeUp .8s .6s ease both; }
.stat-item   { border-left: 3px solid var(--red); padding-left: 16px; }
.stat-num    { font-family: 'Bebas Neue', sans-serif; font-size: 42px; letter-spacing: .03em; color: white; line-height: 1; }
.stat-num sup { font-size: 20px; }
.stat-label  { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.4); font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  animation: fadeUp .8s .9s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red); color: white;
  padding: 15px 34px;
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all .25s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.4); }

.btn-outline {
  border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7);
  padding: 15px 34px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all .25s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-outline:hover { border-color: rgba(255,255,255,.6); color: white; transform: translateY(-2px); }

.btn-white {
  background: white; color: var(--red);
  padding: 15px 32px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all .25s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

.btn-ghost-white {
  border: 1.5px solid rgba(255,255,255,.5); color: white;
  padding: 15px 32px;
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  transition: all .25s;
}
.btn-ghost-white:hover { border-color: white; transform: translateY(-2px); }

/* ── FEATURES STRIP ── */
.features-strip {
  background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.feature-card {
  padding: 40px 32px;
  display: flex; align-items: flex-start; gap: 18px;
  border-right: 1px solid var(--border);
  transition: background .25s; cursor: default;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover { background: var(--red-light); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.18);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 2; }
.feature-body h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #111827; margin-bottom: 6px; }
.feature-body p  { font-size: 13px; color: var(--silver); line-height: 1.55; }

/* ── SECTIONS SHARED ── */
section { padding: 100px 80px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 4.5vw, 58px); letter-spacing: .04em;
  color: #111827; line-height: 1.05;
}

/* ── ABOUT ── */
.about { background: var(--steel-mid); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-box {
  width: 100%; aspect-ratio: 4/3;
  background: var(--steel-light); border-radius: 4px; border: 1px solid var(--border);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.about-image-box::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,.08) 0%, transparent 60%);
}
.about-svg { width: 80%; opacity: .15; }
.about-badge-overlay {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red); padding: 24px 28px; border-radius: 4px;
  text-align: center; box-shadow: 0 10px 40px rgba(192,57,43,.3);
}
.about-badge-overlay .num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: white; line-height: 1; }
.about-badge-overlay .lbl { font-size: 12px; color: rgba(255,255,255,.8); letter-spacing: .1em; text-transform: uppercase; margin-top: 2px; }
.about-text p { color: var(--silver); line-height: 1.75; font-size: 15.5px; margin-top: 24px; }
.about-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.metric {
  background: var(--white); padding: 24px; border-radius: 4px;
  border: 1px solid var(--border); border-left: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.metric-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: #111827; }
.metric-lbl { font-size: 12px; color: var(--silver); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-header { max-width: 560px; margin-bottom: 60px; }
.services-header p { color: var(--silver); font-size: 15px; line-height: 1.7; margin-top: 20px; }
.services-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
}
.service-item {
  background: var(--white); padding: 48px 44px;
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: start;
  transition: background .25s; cursor: default;
}
.service-item:hover { background: var(--steel-mid); }
.service-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 58px;
  color: rgba(192,57,43,.12); line-height: 1; letter-spacing: -.02em;
  transition: color .25s;
}
.service-item:hover .service-num { color: rgba(192,57,43,.3); }
.service-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700;
  letter-spacing: .04em; color: #111827; margin-bottom: 12px; text-transform: uppercase;
}
.service-body p { color: var(--silver); font-size: 14px; line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 20px;
  color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: gap .2s;
}
.service-link:hover { gap: 14px; }

/* ── PROCESS ── */
.process { background: var(--steel-mid); display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.process-header { position: sticky; top: 100px; }
.process-header p { color: var(--silver); font-size: 15px; line-height: 1.7; margin-top: 20px; }
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: 36px 0; border-bottom: 1px solid var(--border); transition: all .25s;
}
.step:first-child { padding-top: 0; }
.step:last-child  { border-bottom: none; }
.step-num-wrap { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 52px; height: 52px;
  border: 2px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--red);
  flex-shrink: 0; transition: all .25s;
}
.step:hover .step-num { background: var(--red); color: white; }
.step-line { flex: 1; width: 1px; background: rgba(192,57,43,.2); margin-top: 8px; }
.step:last-child .step-line { display: none; }
.step-body { padding-top: 10px; }
.step-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: #111827; margin-bottom: 10px;
}
.step-body p { color: var(--silver); font-size: 14px; line-height: 1.65; }

/* ── EXPERTISE ── */
.expertise { background: var(--white); }
.expertise-header { max-width: 600px; margin-bottom: 60px; }
.expertise-header p { color: var(--silver); font-size: 15px; line-height: 1.7; margin-top: 20px; }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.expertise-card {
  background: var(--steel-mid); border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.expertise-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); }
.expertise-img {
  height: 220px; background: var(--steel-light);
  position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.expertise-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(244,245,247,.9) 100%);
}
.expertise-img-icon { opacity: .3; }
.expertise-img-icon svg { width: 100px; height: 100px; stroke: #374151; fill: none; stroke-width: 1; }
.expertise-body { padding: 28px; }
.expertise-body h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: #111827; margin-bottom: 10px;
}
.expertise-body p { color: var(--silver); font-size: 13.5px; line-height: 1.6; }
.expertise-tag {
  display: inline-block; margin-top: 16px;
  background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.18);
  color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px;
}

/* ── FAQ ── */
.faq { background: var(--steel-mid); display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.faq-left { position: sticky; top: 100px; }
.faq-left p { color: var(--silver); font-size: 15px; line-height: 1.7; margin-top: 20px; }
.faq-contact { margin-top: 40px; padding: 28px; background: var(--red); border-radius: 4px; }
.faq-contact h4 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: white; letter-spacing: .05em; }
.faq-contact p  { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 8px; line-height: 1.5; }
.faq-contact a  { display: block; margin-top: 16px; font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: white; text-decoration: none; letter-spacing: .05em; }
.faq-list { display: flex; flex-direction: column; gap: 4px; }
.faq-item { background: var(--white); border-radius: 3px; border: 1px solid var(--border); overflow: hidden; }
.faq-q {
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; font-weight: 600; font-size: 15px; color: #111827;
  transition: color .2s; user-select: none;
}
.faq-q:hover { color: var(--red); }
.faq-q-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border: 1.5px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .25s; color: var(--silver);
}
.faq-item.open .faq-q-icon { background: var(--red); border-color: var(--red); color: white; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner {
  padding: 18px 24px 22px;
  color: var(--silver); font-size: 14px; line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red); padding: 80px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,.04) 10px, rgba(255,255,255,.04) 20px);
}
.cta-banner-text { position: relative; }
.cta-banner-text p { font-size: 13px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 10px; }
.cta-banner-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 4vw, 56px); color: white; letter-spacing: .04em; }
.cta-banner-actions { display: flex; gap: 16px; position: relative; flex-shrink: 0; }

/* ── FOOTER ── */
footer { background: #111827; padding: 72px 80px 32px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 60px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { color: #9ca3af; font-size: 14px; line-height: 1.7; margin-top: 20px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #9ca3af; text-decoration: none; font-size: 13px;
  transition: all .2s;
}
.social-btn:hover { background: var(--red); border-color: var(--red); color: white; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: #9ca3af; font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: #f3f4f6; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-icon  { color: var(--red); flex-shrink: 0; margin-top: 2px; font-size: 14px; }
.contact-text  { color: #9ca3af; font-size: 13.5px; line-height: 1.55; }
.contact-text a { color: #9ca3af; text-decoration: none; }
.contact-text a:hover { color: #f3f4f6; }
.footer-bottom {
  padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-bottom p { color: #6b7280; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: #6b7280; font-size: 13px; text-decoration: none; }
.footer-bottom-links a:hover { color: #f3f4f6; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .features-strip { grid-template-columns: 1fr 1fr; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 80px 40px; }
  .cta-banner { padding: 60px 40px; }
  footer { padding: 60px 40px 28px; }
}
@media (max-width: 800px) {
  .topbar { display: none; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px; }
  .hero-stats { gap: 24px; }
  .about, .process, .faq { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .features-strip { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .about-badge-overlay { bottom: 16px; right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; }
}

/* ================================================
   FİYATLAR BÖLÜMÜ
   ================================================ */

.fiyatlar { background: var(--steel-mid); }

.fiyatlar-header { margin-bottom: 56px; }
.fiyatlar-header .section-title { margin-bottom: 0; }
.fiyatlar-desc {
  margin-top: 18px;
  font-size: 15px; color: var(--silver); line-height: 1.7;
  max-width: 580px;
}

/* PDF Grid */
.pdf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* PDF Card */
.pdf-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.pdf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  border-color: rgba(192,57,43,.3);
}

.pdf-card-icon {
  background: var(--red-light);
  padding: 28px 28px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid var(--border);
}
.pdf-card-icon svg { width: 56px; height: 56px; }

.pdf-card-body {
  padding: 22px 24px 16px;
  flex: 1;
}
.pdf-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.pdf-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  letter-spacing: .02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.pdf-card-desc {
  font-size: 13.5px;
  color: var(--silver);
  line-height: 1.6;
}
.pdf-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.pdf-meta-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(192,57,43,.08);
  border: 1px solid rgba(192,57,43,.18);
  color: var(--red);
  padding: 3px 10px;
  border-radius: 2px;
}
.pdf-meta-size {
  font-size: 12px;
  color: var(--silver);
}

.pdf-card-action {
  padding: 14px 24px 18px;
  border-top: 1px solid var(--border);
}
.pdf-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap .2s;
}
.pdf-card:hover .pdf-open-btn { gap: 12px; }

/* Güncelleme Notu */
.fiyatlar-note {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--silver);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 14px 20px;
  border-radius: 4px;
  max-width: 600px;
}
.fiyatlar-note svg { flex-shrink: 0; stroke: var(--accent); }
.fiyatlar-note a { color: var(--red); font-weight: 600; text-decoration: none; }
.fiyatlar-note a:hover { text-decoration: underline; }

/* ── PDF MODAL ── */
.pdf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  padding: 24px;
  align-items: center;
  justify-content: center;
  animation: fadeIn .2s ease;
}
.pdf-modal.open { display: flex; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.pdf-modal-inner {
  background: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 960px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.4);
  animation: slideUp .25s ease;
}
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.pdf-modal-header {
  padding: 18px 24px;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  flex-shrink: 0;
}
.pdf-modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #111827;
}
.pdf-modal-actions { display: flex; align-items: center; gap: 10px; }

.pdf-modal-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background .2s;
}
.pdf-modal-download:hover { background: var(--red-dark); }

.pdf-modal-close {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver);
  transition: all .2s;
}
.pdf-modal-close:hover { background: #fee2e2; border-color: var(--red); color: var(--red); }

.pdf-modal-body { flex: 1; overflow: hidden; }
.pdf-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Responsive fiyatlar */
@media (max-width: 1100px) {
  .pdf-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .pdf-grid { grid-template-columns: 1fr; }
  .pdf-modal { padding: 12px; }
  .pdf-modal-inner { height: 95vh; }
}
