/* Sponsorlu Reklam — Klasik Kurumsal Stil */

:root {
  --navy: #0a2540;
  --navy-dark: #061a30;
  --navy-light: #1a3a5c;
  --gold: #c9a961;
  --gold-dark: #856221;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --white: #ffffff;
  --success: #16a34a;
  --danger: #dc2626;
  --shadow-sm: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow: 0 4px 12px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 37, 64, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Georgia", "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: .85rem; }
h3 { font-size: 1.35rem; margin-bottom: .75rem; }
h4 { font-size: 1.15rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; }
ul, ol { margin: 0 0 1rem 1.25rem; }
li { margin-bottom: .35rem; }

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

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
  gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .6rem; }
.logo svg { height: 38px; width: auto; }
.logo-text { font-family: "Playfair Display", Georgia, serif; font-weight: 700; color: var(--navy); font-size: 1.15rem; line-height: 1; }
.logo-text small { display: block; font-family: "Inter", sans-serif; font-size: .65rem; font-weight: 500; color: var(--gold-dark); letter-spacing: .15em; text-transform: uppercase; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  padding: .5rem .85rem;
  color: var(--gray-700);
  font-weight: 500;
  font-size: .95rem;
  border-radius: 6px;
  transition: all .2s ease;
}
.nav a:hover, .nav a.active { color: var(--navy); background: var(--gray-100); }
.nav .btn-cta { background: var(--navy); color: var(--white); margin-left: .5rem; }
.nav .btn-cta:hover { background: var(--navy-dark); color: var(--white); }

.nav-toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--navy); margin: 5px 0; transition: all .25s ease; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: .5rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 1rem; }
  .nav .btn-cta { margin: .5rem 0 0; text-align: center; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201,169,97,.12), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,169,97,.08), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); max-width: 820px; }
.hero .lead { font-size: 1.2rem; max-width: 720px; margin-bottom: 2rem; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-bar { display: inline-block; height: 4px; width: 60px; background: var(--gold); margin-bottom: 1.25rem; }

/* Section */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header .eyebrow { display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: .85rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .85rem 1.65rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: 0;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { border: 2px solid rgba(255,255,255,.5); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-dark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--white); }
.btn-block { display: block; width: 100%; }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }

/* Card grid */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  transition: all .25s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card .icon {
  width: 52px; height: 52px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.card .icon svg { width: 26px; height: 26px; }

/* Pricing */
.price-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .25s ease;
}
.price-card.featured { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.price-card.featured::before {
  content: "EN POPÜLER";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  padding: .35rem .9rem; border-radius: 20px;
}
.price-card h3 { color: var(--navy); margin-bottom: .35rem; }
.price-card .old-price { text-decoration: line-through; color: var(--gray-500); font-size: 1rem; }
.price-card .badge-discount { background: var(--danger); color: white; font-size: .7rem; font-weight: 600; padding: 2px 8px; border-radius: 4px; margin-left: .35rem; vertical-align: middle; }
.price-card .price { font-family: "Playfair Display", Georgia, serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); margin: .35rem 0 .25rem; }
.price-card .price small { font-size: .9rem; font-weight: 400; color: var(--gray-500); }
.price-card .features { list-style: none; margin: 1.5rem 0; padding: 0; flex: 1; }
.price-card .features li { padding: .55rem 0 .55rem 1.65rem; border-bottom: 1px solid var(--gray-100); position: relative; font-size: .94rem; }
.price-card .features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold-dark); font-weight: 700; }
.price-card .features li.no::before { content: "✕"; color: var(--gray-300); }

/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; }
.feature-list li { padding: .65rem 0 .65rem 1.85rem; position: relative; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: .65rem;
  width: 20px; height: 20px;
  background: var(--gold); color: var(--navy);
  border-radius: 50%; font-size: .75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* Two-col content */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.5rem 0; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: "Playfair Display", Georgia, serif; font-size: 2.5rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat .label { color: var(--gray-500); font-size: .9rem; margin-top: .5rem; }

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: .75rem; }
.cta-strip p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 1.75rem; max-width: 620px; margin-left: auto; margin-right: auto; }

/* Forms */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: .35rem; color: var(--gray-700); font-size: .92rem; }
.form-control {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color .2s ease;
}
.form-control:focus { outline: 0; border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* Tables */
.table { width: 100%; border-collapse: collapse; background: white; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.table th, .table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--gray-200); }
.table th { background: var(--navy); color: white; font-weight: 600; font-size: .9rem; }
.table tr:last-child td { border-bottom: 0; }

/* FAQ accordion */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.15rem 0; font-size: 1.05rem; font-weight: 600; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: "+"; font-size: 1.5rem; color: var(--gold-dark); transition: transform .25s ease; flex-shrink: 0; }
.faq-q.open::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a.open { max-height: 800px; padding-bottom: 1.15rem; }
.faq-a p { margin: 0 0 .75rem; color: var(--gray-700); }

/* Article (blog/yazılar) */
.article-meta { color: var(--gray-500); font-size: .9rem; margin-bottom: 1.5rem; }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content h2 { margin-top: 2.25rem; }
.article-content h3 { margin-top: 1.85rem; }
.article-content p { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); }
.article-content ul li, .article-content ol li { font-size: 1.05rem; line-height: 1.7; }
.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding: .75rem 1.25rem;
  background: var(--gray-50);
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-700);
}

/* Page hero (smaller) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 3.5rem 0 3rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 700px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--gold); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { color: var(--white); font-family: "Inter", sans-serif; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .03em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a { color: rgba(255,255,255,.82); font-size: .92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand p { font-size: .92rem; line-height: 1.7; margin-top: .85rem; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text small { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.72);
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 99;
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); color: white; }
.wa-float svg { width: 30px; height: 30px; }

/* Tag/Badge */
.tag { display: inline-block; padding: .25rem .7rem; background: var(--gray-100); color: var(--gray-700); font-size: .8rem; border-radius: 20px; font-weight: 500; }
.tag-gold { background: var(--gold); color: var(--navy); }
.tag-navy { background: var(--navy); color: var(--white); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.lead { font-size: 1.15rem; color: var(--gray-700); }

/* Notes/Alerts */
.alert { padding: 1rem 1.25rem; border-radius: var(--radius); margin: 1rem 0; border-left: 4px solid; }
.alert-info { background: #eff6ff; border-color: #2563eb; color: #1e3a8a; }
.alert-warn { background: #fffbeb; border-color: #f59e0b; color: #78350f; }
.alert-success { background: #ecfdf5; border-color: var(--success); color: #14532d; }
.alert strong { display: block; margin-bottom: .25rem; }

/* Logo cloud */
.logo-cloud { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; align-items: center; padding: 2rem 0; opacity: .8; }
@media (max-width: 800px) { .logo-cloud { grid-template-columns: repeat(3, 1fr); } }
.logo-cloud > div { aspect-ratio: 3/1; background: var(--gray-100); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: var(--gray-500); font-weight: 600; font-size: .85rem; }
