/* ============================================================
   EvimABD — style.css
   Warm Modern · Fraunces + Plus Jakarta Sans
   ============================================================ */

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

:root {
  --bg:     #faf8f5;
  --ink:    #1c1c1e;
  --red:    #b5341c;
  --sand:   #e8ddd0;
  --warm:   #f0ebe3;
  --muted:  #7a6f66;
  --border: #e0d8ce;
  --white:  #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 56px;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 700;
  text-decoration: none; color: var(--ink);
}
.nav__logo em { font-style: italic; color: var(--red); }

.nav__links {
  list-style: none;
  display: flex; gap: 36px;
}
.nav__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--ink); }

.nav__cta {
  background: var(--ink); color: var(--white);
  padding: 11px 24px; font-size: 13px; font-weight: 600;
  text-decoration: none; border-radius: 100px;
  transition: background 0.2s;
}
.nav__cta:hover { background: var(--red); }
.nav__cta.active { background: var(--red); }

/* Dropdown nav items */
.nav__item { position: relative; list-style: none; }

.nav__trigger {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 14px; font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 5px;
  padding: 0; transition: color 0.2s;
}
.nav__trigger:hover,
.nav__trigger.active { color: var(--ink); }

.nav__arrow {
  font-size: 9px; line-height: 1;
  transition: transform 0.2s; display: inline-block;
}
.nav__item--open .nav__arrow { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute;
  top: calc(100% + 18px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}
.nav__item--open .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a {
  display: block; padding: 9px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--muted); text-decoration: none;
  border-radius: 8px; transition: all 0.15s;
}
.nav__dropdown a:hover { background: var(--warm); color: var(--ink); }
.nav__dropdown a.active { color: var(--red); font-weight: 600; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed; top: 65px; left: 0; right: 0; z-index: 99;
  background: rgba(250,248,245,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px 56px 32px;
  flex-direction: column; gap: 0;
  max-height: calc(100vh - 65px);
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  text-decoration: none; color: var(--ink);
  font-size: 15px; font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--red); }

.nav__mobile-group {
  padding: 12px 0 0; border-bottom: 1px solid var(--border);
}
.nav__mobile-group:last-of-type { border-bottom: 1px solid var(--border); }
.nav__mobile-label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); font-weight: 700;
  margin-bottom: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.nav__mobile-group a {
  font-size: 14px; color: var(--muted);
  padding: 10px 0; border-bottom: none;
  display: block;
}
.nav__mobile-group a:last-child { padding-bottom: 14px; }

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  text-decoration: none; border-radius: 100px;
  transition: all 0.2s; cursor: pointer; border: none;
}
.btn--primary {
  background: var(--ink); color: var(--white);
  padding: 14px 32px;
}
.btn--primary:hover { background: var(--red); }

.btn--ghost {
  background: none; color: var(--ink);
  padding: 0;
}
.btn--ghost:hover { gap: 12px; }

.btn--outline {
  background: none; color: var(--ink);
  border: 1.5px solid var(--border);
  padding: 12px 24px;
}
.btn--outline:hover { border-color: var(--red); color: var(--red); }

/* ------------------------------------------------------------
   SECTION LABELS & TITLES
   ------------------------------------------------------------ */
.section-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  font-weight: 600; margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: 44px; font-weight: 700;
  letter-spacing: -1.5px; margin-bottom: 48px;
  line-height: 1.05;
}
.section-title em { font-style: italic; color: var(--red); }

.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 56px;
}

/* ------------------------------------------------------------
   BREADCRUMB
   ------------------------------------------------------------ */
.breadcrumb {
  padding: 100px 56px 0;
  display: flex; gap: 8px; align-items: center;
  flex-wrap: wrap;
}
.breadcrumb a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb__sep { font-size: 13px; color: var(--muted); }
.breadcrumb__current { font-size: 13px; color: var(--ink); font-weight: 500; }

/* ------------------------------------------------------------
   PAGE HERO (iç sayfalar)
   ------------------------------------------------------------ */
.page-hero {
  padding: 40px 56px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: end;
}

.page-hero .section-label {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 900; letter-spacing: -2.5px;
  line-height: 1.0;
  grid-column: 1;
  grid-row: 2;
}
.page-hero__title em { font-style: italic; color: var(--red); }

.page-hero__sub {
  font-size: 19px; color: var(--muted);
  line-height: 1.8; font-weight: 300;
  max-width: none;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  padding-bottom: 4px;
}

/* ------------------------------------------------------------
   INFO BOX
   ------------------------------------------------------------ */
.info-box {
  background: var(--warm); border-radius: var(--radius);
  padding: 28px 32px; margin: 32px 0;
  border: 1px solid var(--border);
}
.info-box__title {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700; margin-bottom: 14px;
}
.info-box ul { list-style: none; }
.info-box ul li {
  display: flex; gap: 12px;
  font-size: 14px; color: var(--muted);
  line-height: 1.6; margin-bottom: 10px;
}
.info-box ul li::before { content: '—'; color: var(--red); flex-shrink: 0; }

/* ------------------------------------------------------------
   WARNING BOX
   ------------------------------------------------------------ */
.warning-box {
  background: #fef9f8; border-radius: var(--radius);
  padding: 28px 32px; margin: 32px 0;
  border: 1px solid #f0c4bc;
}
.warning-box__title {
  font-size: 14px; font-weight: 600; color: var(--red); margin-bottom: 10px;
}
.warning-box p { font-size: 14px; color: var(--muted); margin: 0; }

/* ------------------------------------------------------------
   TABLE
   ------------------------------------------------------------ */
.table-wrap { overflow-x: auto; margin: 24px 0 32px; }
.table-wrap table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; white-space: nowrap;
}
.table-wrap th {
  background: var(--ink); color: white;
  padding: 12px 16px; text-align: left;
  font-weight: 600; font-size: 13px;
}
.table-wrap th:first-child { border-radius: 8px 0 0 0; }
.table-wrap th:last-child { border-radius: 0 8px 0 0; }
.table-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: #3d3832;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:nth-child(even) td { background: var(--warm); }
.tag-yes { color: #2d6a2d; font-weight: 600; }
.tag-no  { color: var(--red); font-weight: 600; }

/* ------------------------------------------------------------
   CONTENT LAYOUT (iç sayfa: main + sidebar)
   ------------------------------------------------------------ */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 0 56px 100px;
  align-items: start;
}

.main-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 700;
  letter-spacing: -0.5px; margin: 48px 0 18px;
}
.main-content h2:first-child { margin-top: 0; }
.main-content h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  margin: 32px 0 12px;
}
.main-content p {
  font-size: 16px; line-height: 1.8;
  color: #3d3832; margin-bottom: 18px;
}
.main-content p strong { font-weight: 600; color: var(--ink); }
.main-content hr {
  border: none; border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ------------------------------------------------------------
   SIDEBAR
   ------------------------------------------------------------ */
.sidebar {
  position: sticky; top: 88px;
  display: flex; flex-direction: column; gap: 20px;
}

.sidebar-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--border);
}
.sidebar-card--dark {
  background: var(--ink); border-color: transparent;
}
.sidebar-card--warm { background: var(--warm); }

.sidebar-card__title {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700; margin-bottom: 16px;
}
.sidebar-card--dark .sidebar-card__title { color: white; }

.sidebar-links { display: flex; flex-direction: column; }
.sidebar-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--ink);
  text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--red); }
.sidebar-link span { color: var(--muted); font-size: 12px; }

.sidebar-card--dark p {
  font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.sidebar-card__cta {
  display: block; text-align: center;
  background: white; color: var(--ink);
  padding: 12px; border-radius: 10px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; margin-top: 16px;
  transition: background 0.2s;
}
.sidebar-card__cta:hover { background: var(--sand); }

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq-section { padding: 0 56px 100px; }
.faq-section__title {
  font-family: 'Fraunces', serif;
  font-size: 36px; font-weight: 700;
  letter-spacing: -1px; margin-bottom: 32px;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none;
  text-align: left; padding: 20px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon {
  font-size: 20px; color: var(--muted);
  flex-shrink: 0; transition: transform 0.2s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--red); }
.faq-answer {
  font-size: 15px; color: var(--muted);
  line-height: 1.8; padding-bottom: 20px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ------------------------------------------------------------
   DISCLAIMER
   ------------------------------------------------------------ */
.disclaimer {
  margin: 0 56px 80px;
  background: var(--warm); border-radius: var(--radius);
  padding: 24px 32px; border: 1px solid var(--border);
}
.disclaimer p { font-size: 12px; color: var(--muted); line-height: 1.7; }

/* ------------------------------------------------------------
   CONTACT FORM
   ------------------------------------------------------------ */
.form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: var(--ink);
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 16px;
  transition: border-color 0.2s; width: 100%; resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--ink);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-submit {
  background: var(--ink); color: white;
  border: none; border-radius: 100px;
  padding: 14px 32px; font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background 0.2s; align-self: flex-start;
}
.form-submit:hover { background: var(--red); }
.form-success {
  display: none; background: #f0fdf0;
  border: 1px solid #86efac; border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 14px; color: #166534;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--warm); border-top: 1px solid var(--border);
  padding: 56px 56px 0;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px;
}
.footer__logo {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700; margin-bottom: 12px;
}
.footer__logo em { font-style: italic; color: var(--red); }
.footer__desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.6; max-width: 260px;
}
.footer__col h4 {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.footer__col a {
  display: block; font-size: 14px; color: var(--ink);
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--red); }

.footer__bottom {
  border-top: 1px solid var(--border);
  margin: 48px 56px 0;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: 12px; color: var(--muted); }

/* ------------------------------------------------------------
   COOKIE BANNER
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  background: var(--ink); color: white;
  border-radius: var(--radius); padding: 20px 24px;
  max-width: 380px; box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.cookie-banner p {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.7); margin-bottom: 14px;
}
.cookie-banner a { color: white; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-accept {
  background: white; color: var(--ink);
  border: none; border-radius: 100px;
  padding: 8px 20px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cookie-accept:hover { background: var(--sand); }

/* ------------------------------------------------------------
   ROADMAP NAV (Yol Haritası sayfaları için)
   ------------------------------------------------------------ */
.roadmap-nav {
  margin: 0 56px 64px;
  background: var(--warm); border-radius: var(--radius);
  padding: 32px; border: 1px solid var(--border);
}
.roadmap-nav__label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.roadmap-steps { display: flex; flex-direction: column; }
.roadmap-step {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--muted);
  transition: color 0.2s;
}
.roadmap-step:last-child { border-bottom: none; }
.roadmap-step:hover { color: var(--ink); }
.roadmap-step.active { color: var(--red); }
.roadmap-step__num {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-weight: 700;
  opacity: 0.35; width: 32px; flex-shrink: 0;
}
.roadmap-step.active .roadmap-step__num { opacity: 0.6; }
.roadmap-step__name { font-size: 14px; font-weight: 500; }

/* ------------------------------------------------------------
   ARTICLE BODY (Makaleler için)
   ------------------------------------------------------------ */
.article-body { max-width: 680px; }
.article-body h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: -0.5px; margin: 48px 0 16px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  font-size: 16px; line-height: 1.85;
  color: #3d3832; margin-bottom: 20px;
}
.article-body p strong { font-weight: 600; color: var(--ink); }
.article-body hr {
  border: none; border-top: 1px solid var(--border);
  margin: 48px 0;
}
.pull-quote {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 24px; margin: 32px 0;
}
.pull-quote p {
  font-family: 'Fraunces', serif;
  font-size: 22px; font-style: italic;
  color: var(--ink); line-height: 1.5; margin: 0;
}

/* ------------------------------------------------------------
   STAT ROW (Eyalet sayfaları için)
   ------------------------------------------------------------ */
.stat-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin: 0 56px 72px;
  background: var(--border); border-radius: var(--radius); overflow: hidden;
}
.stat-card { background: var(--white); padding: 32px 28px; }
.stat-card__label {
  font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.stat-card__value {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 700; color: var(--ink);
  line-height: 1; margin-bottom: 6px;
}
.stat-card__note { font-size: 12px; color: var(--muted); }

/* ------------------------------------------------------------
   MINI STATE GRID (Diğer eyaletler)
   ------------------------------------------------------------ */
.states-mini-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.state-mini {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  text-decoration: none; color: var(--ink);
  transition: border-color 0.2s, transform 0.2s; display: block;
}
.state-mini:hover { border-color: var(--red); transform: translateY(-4px); }
.state-mini__flag { font-size: 24px; margin-bottom: 10px; }
.state-mini h3 {
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700; margin-bottom: 4px;
}
.state-mini p { font-size: 12px; color: var(--muted); }

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1024px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .states-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr 1fr; }
  .page-hero {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .page-hero .section-label { grid-row: 1; }
  .page-hero__title { grid-row: 2; margin-bottom: 20px; }
  .page-hero__sub { grid-column: 1; grid-row: 3; align-self: start; padding-bottom: 0; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .breadcrumb { padding: 88px 24px 0; }
  .page-hero { padding: 32px 24px 56px; }
  .section-divider { margin: 0 24px; }

  .content-layout { padding: 0 24px 80px; }
  .stat-row { margin: 0 24px 48px; grid-template-columns: 1fr 1fr; }
  .faq-section { padding: 0 24px 80px; }
  .disclaimer { margin: 0 24px 60px; }
  .roadmap-nav { margin: 0 24px 48px; }

  .states-mini-grid { grid-template-columns: 1fr 1fr; }

  .footer {
    grid-template-columns: 1fr;
    padding: 40px 24px 0; gap: 32px;
  }
  .footer__bottom { margin: 32px 24px 0; flex-direction: column; gap: 8px; text-align: center; }

  .section-title { font-size: 32px; }
  .faq-section__title { font-size: 28px; }

  .nav__mobile { padding: 24px 24px 32px; }

  .cookie-banner { left: 16px; right: 16px; max-width: none; bottom: 16px; }
}

@media (max-width: 520px) {
  .stat-row { grid-template-columns: 1fr; }
  .states-mini-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HOMEPAGE — index.html specific
   ============================================================ */

/* Hero */
.home-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 120px 56px 80px;
  align-items: center;
}

.home-hero__left {}

.home-hero__label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.home-hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 900; letter-spacing: -3px;
  line-height: 0.97; margin-bottom: 24px;
}
.home-hero__title em { font-style: italic; color: var(--red); }

.home-hero__tagline {
  font-size: clamp(18px, 2vw, 24px);
  color: var(--muted); font-weight: 300;
  line-height: 1.6; margin-bottom: 36px;
  max-width: 460px;
}

.home-hero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
}

.home-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  text-decoration: none; border-radius: 100px;
  transition: all 0.2s; border: none; cursor: pointer;
}
.home-btn--primary {
  background: var(--ink); color: var(--white);
  padding: 15px 32px;
}
.home-btn--primary:hover { background: var(--red); }
.home-btn--ghost {
  background: none; color: var(--ink);
  padding: 15px 0;
}
.home-btn--ghost:hover { color: var(--red); gap: 14px; }

/* Hero right — question list */
.home-hero__right {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.home-hero__right-label {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.home-questions { list-style: none; }
.home-questions li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; line-height: 1.5; color: var(--ink); font-weight: 500;
}
.home-questions li:last-child { border-bottom: none; }
.home-questions__icon {
  color: var(--red); font-size: 14px; font-weight: 700;
  margin-top: 2px; flex-shrink: 0; width: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Trust strip */
.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin: 0 56px;
  background: var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  background: var(--warm); padding: 36px 32px;
}
.trust-item__value {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700; letter-spacing: -0.2px;
  color: var(--red); margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
.trust-item__desc {
  font-size: 15px; color: var(--muted); line-height: 1.6;
}
.trust-item__desc strong { color: var(--ink); }

/* Rehber list */
.rehber-section { padding: 100px 56px; }
.rehber-section__header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 56px;
}
.rehber-section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 900; letter-spacing: -2px; line-height: 1.0;
}
.rehber-section__title em { font-style: italic; color: var(--red); }
.rehber-section__desc {
  font-size: 16px; color: var(--muted); line-height: 1.8; font-weight: 300;
}

.rehber-list { display: flex; flex-direction: column; }
.rehber-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 28px; align-items: center;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--ink);
  transition: all 0.2s;
}
.rehber-item:first-child { border-top: 1px solid var(--border); }
.rehber-item:hover { padding-left: 8px; }
.rehber-item:hover .rehber-item__num { color: var(--red); }

.rehber-item__num {
  font-family: 'Fraunces', serif;
  font-size: 40px; font-weight: 900; color: var(--sand);
  line-height: 1; letter-spacing: -2px;
  transition: color 0.2s;
}
.rehber-item__content {}
.rehber-item__title {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700; margin-bottom: 4px;
}
.rehber-item__desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.rehber-item__arrow { font-size: 20px; color: var(--muted); transition: all 0.2s; }
.rehber-item:hover .rehber-item__arrow { color: var(--red); transform: translateX(4px); }

/* Eyalet section */
.eyalet-section { padding: 0 56px 100px; }
.eyalet-section__header { margin-bottom: 40px; }
.eyalet-section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900; letter-spacing: -1.5px; margin-bottom: 12px;
}
.eyalet-section__title em { font-style: italic; color: var(--red); }
.eyalet-section__desc { font-size: 16px; color: var(--muted); }

.eyalet-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.eyalet-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; border: 1px solid var(--border);
  text-decoration: none; color: var(--ink);
  transition: all 0.2s; display: block;
}
.eyalet-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.eyalet-card__abbr {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-weight: 700; color: var(--red);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 10px;
}
.eyalet-card__name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700; margin-bottom: 8px;
}
.eyalet-card__highlight {
  font-size: 12px; color: var(--muted); line-height: 1.5;
}
.eyalet-card__arrow {
  margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--red);
}

/* Neden section */
.neden-section {
  background: var(--ink); padding: 100px 56px;
}
.neden-section__header { margin-bottom: 56px; }
.neden-section__label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 600; margin-bottom: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.neden-section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900; letter-spacing: -1.5px; color: var(--white);
}
.neden-section__title em { font-style: italic; color: var(--red); }

.neden-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.neden-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 36px 32px;
}
.neden-item__title {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.neden-item__desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* Home CTA section */
.home-cta-section {
  padding: 100px 56px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.home-cta-section__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900; letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 16px;
}
.home-cta-section__title em { font-style: italic; color: var(--red); }
.home-cta-section__desc { font-size: 16px; color: var(--muted); line-height: 1.8; }
.home-cta-section__links { display: flex; flex-direction: column; gap: 0; }
.home-cta-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--ink);
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 700;
  transition: all 0.2s;
}
.home-cta-link:first-child { border-top: 1px solid var(--border); }
.home-cta-link:hover { color: var(--red); padding-left: 6px; }
.home-cta-link span { font-size: 18px; color: var(--muted); transition: all 0.2s; }
.home-cta-link:hover span { color: var(--red); transform: translateX(4px); display: inline-block; }

/* Homepage responsive */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; gap: 40px; }
  .rehber-section__header { grid-template-columns: 1fr; }
  .eyalet-grid { grid-template-columns: repeat(3, 1fr); }
  .neden-grid { grid-template-columns: 1fr; gap: 20px; }
  .home-cta-section { grid-template-columns: 1fr; gap: 40px; }
  .trust-strip { margin: 0 56px; grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .home-hero { padding: 100px 24px 60px; }
  .trust-strip { margin: 0 24px; }
  .rehber-section { padding: 60px 24px; }
  .eyalet-section { padding: 0 24px 60px; }
  .eyalet-grid { grid-template-columns: repeat(2, 1fr); }
  .neden-section { padding: 60px 24px; }
  .home-cta-section { padding: 60px 24px; }
  .rehber-item { grid-template-columns: 48px 1fr auto; gap: 16px; }
  .rehber-item__num { font-size: 28px; }
}

@media (max-width: 520px) {
  .eyalet-grid { grid-template-columns: 1fr 1fr; }
}
