/* NET Aracı — tanıtım sitesi.
   Palet, net-araci/src/index.css ile aynı ilkeyi izler: aydınlık, sakin,
   tehditsiz, alarm renginden kaçınan, loş/karanlık tema olmayan bir tasarım
   (kitap kuralı: yarı karanlık ortam disosiyasyonu hızlandırır). */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f4f1ec;
  color: #2f2b26;
  font-size: 16px;
  line-height: 1.6;
}

[dir='rtl'] body {
  font-family: 'Segoe UI', Tahoma, system-ui, sans-serif;
}

a {
  color: #4a684f;
}

a:hover {
  color: #2f2b26;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- üst çubuk --- */

header.site {
  border-bottom: 2px solid #e0d9cd;
  background: #fdfcf9;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: #5b4636;
  text-decoration: none;
}

.brand .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5b7c65;
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #5f574e;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: #efe9df;
  color: #2f2b26;
}

.nav .spacer {
  flex: 1;
}

.lang-switch {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.lang-switch a {
  font-size: 13px;
  text-decoration: none;
  color: #7a7168;
  padding: 5px 9px;
  border-radius: 6px;
  border: 1px solid #e0d9cd;
}

.lang-switch a.on {
  background: #5b7c65;
  border-color: #4a684f;
  color: #fff;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5b7c65;
  border: 1px solid #4a684f;
  color: #fff !important;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.cta:hover {
  background: #4e6d58;
}

.cta.ghost {
  background: transparent;
  color: #4a684f !important;
  border-color: #cfc6b8;
}

.cta.ghost:hover {
  background: #efe9df;
}

/* --- hero --- */

.hero {
  padding: 64px 0 56px;
}

.hero .eyebrow {
  display: inline-block;
  background: #eef5ef;
  border: 1px solid #c4dcc9;
  color: #3d6b47;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #2f2b26;
  max-width: 820px;
}

.hero h1 em {
  font-style: normal;
  color: #4a684f;
}

.hero p.lead {
  font-size: 19px;
  color: #5f574e;
  max-width: 640px;
  margin: 0 0 28px;
}

.hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero .fine {
  font-size: 13px;
  color: #7a7168;
}

/* --- bölümler --- */

section {
  padding: 48px 0;
}

section.alt {
  background: #fff;
  border-top: 1px solid #e0d9cd;
  border-bottom: 1px solid #e0d9cd;
}

h2.section-title {
  font-size: 28px;
  margin: 0 0 10px;
  color: #5b4636;
}

p.section-sub {
  color: #5f574e;
  font-size: 16px;
  max-width: 680px;
  margin: 0 0 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 12px;
  padding: 22px;
}

section.alt .feature-card {
  background: #fbfaf7;
}

.feature-card .icon {
  font-size: 26px;
  margin-bottom: 10px;
  display: block;
}

.feature-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: #2f2b26;
}

.feature-card p {
  font-size: 14px;
  color: #5f574e;
  margin: 0;
}

/* --- yöntem adımları --- */

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 12px;
  padding: 18px 20px;
}

.step .num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #5b7c65;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #2f2b26;
}

.step p {
  margin: 0;
  font-size: 14px;
  color: #5f574e;
}

/* --- güven / gizlilik şeridi --- */

.trust-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  text-align: center;
}

.trust-strip .item {
  padding: 12px;
}

.trust-strip .num {
  font-size: 15px;
  font-weight: 700;
  color: #4a684f;
  margin-bottom: 4px;
  display: block;
}

.trust-strip .label {
  font-size: 13px;
  color: #7a7168;
}

/* --- ikna/kapanış --- */

.closer {
  text-align: center;
  background: #eef5ef;
  border: 1px solid #c4dcc9;
  border-radius: 16px;
  padding: 48px 30px;
}

.closer h2 {
  margin: 0 0 12px;
  color: #2f2b26;
  font-size: 26px;
}

.closer p {
  color: #3d6b47;
  margin: 0 0 22px;
  font-size: 16px;
}

/* --- makale sayfaları --- */

.article-head {
  padding: 44px 0 20px;
}

.article-head .eyebrow {
  display: inline-block;
  background: #eef5ef;
  border: 1px solid #c4dcc9;
  color: #3d6b47;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.article-head h1 {
  font-size: 32px;
  color: #2f2b26;
  margin: 0 0 14px;
  max-width: 760px;
}

.article-head .meta {
  color: #7a7168;
  font-size: 13px;
}

article.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 10px 0 60px;
  font-size: 17px;
  color: #2f2b26;
}

article.content h2 {
  font-size: 23px;
  color: #5b4636;
  margin: 36px 0 12px;
}

article.content h3 {
  font-size: 18px;
  color: #4a684f;
  margin: 26px 0 10px;
}

article.content p {
  margin: 0 0 16px;
  color: #34302a;
}

article.content ul,
article.content ol {
  margin: 0 0 16px;
  padding-inline-start: 22px;
}

article.content li {
  margin-bottom: 8px;
}

article.content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: #fbfaf7;
  border-inline-start: 4px solid #5b7c65;
  border-radius: 8px;
  color: #4a4238;
  font-size: 15px;
}

.article-cta {
  margin: 36px 0;
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-cta p {
  margin: 0;
  font-size: 15px;
  color: #2f2b26;
  flex: 1;
  min-width: 220px;
}

.related {
  border-top: 1px dashed #e0d9cd;
  padding-top: 20px;
  margin-top: 30px;
}

.related h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #7a7168;
  margin: 0 0 10px;
}

/* --- alt bilgi --- */

footer.site {
  border-top: 1px solid #e0d9cd;
  background: #fdfcf9;
  padding: 34px 0;
  color: #7a7168;
  font-size: 13px;
}

footer.site .foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

footer.site a {
  color: #5f574e;
  text-decoration: none;
}

footer.site a:hover {
  text-decoration: underline;
}

footer.site .foot-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- nasıl kullanılır: adım + ekran görüntüsü --- */

.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.howto-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.howto-step.reverse .howto-shot {
  order: -1;
}

.howto-step .howto-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.howto-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #5b7c65;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.howto-step h3 {
  margin: 4px 0 0;
  font-size: 21px;
  color: #2f2b26;
}

.howto-step p {
  margin: 0;
  color: #5f574e;
  font-size: 15px;
  line-height: 1.65;
}

.howto-benefit {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #eef5ef;
  border: 1px solid #c4dcc9;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 6px;
}

.howto-benefit .icon {
  font-size: 17px;
  line-height: 1;
}

.howto-benefit p {
  color: #3d6b47;
  font-size: 14px;
  margin: 0;
}

.howto-shot {
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 24px rgba(93, 78, 55, 0.08);
}

.howto-shot img {
  width: 100%;
  height: auto;
  border-radius: 7px;
  display: block;
  border: 1px solid #efe9df;
}

@media (max-width: 760px) {
  .howto-step,
  .howto-step.reverse {
    grid-template-columns: 1fr;
  }
  .howto-step.reverse .howto-shot {
    order: 0;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 30px;
  }
  .hero p.lead {
    font-size: 17px;
  }
  section {
    padding: 36px 0;
  }
  footer.site .foot-grid {
    flex-direction: column;
  }
}

/* --- çerez onay bandı --- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  background: #fdfcf9;
  border-top: 2px solid #e0d9cd;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.1);
  padding: 16px 0;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner .wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-banner p {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 14px;
  color: #44403a;
}

.cookie-banner p a {
  color: #4a684f;
  text-decoration: underline;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 560px) {
  .cookie-banner .wrap {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner .cookie-actions {
    justify-content: stretch;
  }
  .cookie-banner .cookie-actions .cta {
    flex: 1;
    justify-content: center;
  }
}

/* --- yasal / kurumsal sayfalar (gizlilik, çerez, hakkımızda) --- */

.founder-strip {
  border-top: 1px dashed #e0d9cd;
  margin-top: 14px;
  padding-top: 12px;
}

.founder-credit {
  font-size: 15px;
  font-weight: 600;
  color: #2f2b26;
  margin: 0 0 8px;
}

.founder-credit a {
  color: #4a684f;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.founder-credit a:hover {
  color: #2f2b26;
}

.founder-legal {
  font-size: 12px;
  color: #7a7168;
  margin: 0;
}

.founder-legal a {
  color: #5f574e;
}

.legal-updated {
  font-size: 13px;
  color: #7a7168;
  margin-bottom: 24px;
}

.person-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 12px;
  padding: 22px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.person-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #eef5ef;
  border: 1px solid #c4dcc9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.person-card .links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* --- eğitim / kampanya sayfası --- */

.promo-hero {
  padding: 52px 0 44px;
  background: linear-gradient(180deg, #eef5ef 0%, #f4f1ec 100%);
  border-bottom: 1px solid #e0d9cd;
}

.promo-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #5b7c65;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.promo-hero h1 {
  font-size: 38px;
  line-height: 1.22;
  margin: 0 0 16px;
  color: #2f2b26;
  max-width: 780px;
}

.promo-hero h1 em {
  font-style: normal;
  color: #4a684f;
}

.promo-hero p.lead {
  font-size: 18px;
  color: #5f574e;
  max-width: 660px;
  margin: 0 0 26px;
}

.fact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.fact-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #2f2b26;
}

.fact-pill .icon {
  font-size: 16px;
}

.fact-pill strong {
  color: #4a684f;
}

.promo-hero .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cta.big {
  font-size: 17px;
  padding: 15px 26px;
  border-radius: 11px;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #34302a;
  line-height: 1.5;
}

.checklist li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef5ef;
  color: #3d6b47;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 12px;
  overflow: hidden;
  font-size: 14.5px;
}

.schedule-table th {
  background: #4a684f;
  color: #fff;
  text-align: start;
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.schedule-table td {
  padding: 12px 16px;
  border-top: 1px solid #efe9df;
  vertical-align: top;
}

.schedule-table tr.break td {
  background: #fbfaf7;
  font-style: italic;
  color: #7a7168;
}

.schedule-table td.time {
  white-space: nowrap;
  color: #7a7168;
  font-variant-numeric: tabular-nums;
}

.schedule-table td.module {
  font-weight: 700;
  color: #4a684f;
}

.schedule-table-wrap {
  overflow-x: auto;
}

.faq-item {
  background: #fff;
  border: 1px solid #e0d9cd;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq-item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #2f2b26;
}

.faq-item p {
  margin: 0;
  font-size: 14.5px;
  color: #5f574e;
}

.quota-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #8a5a2b;
  background: #fbf1e4;
  border: 1px solid #eccf9d;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 0 0 20px;
  max-width: fit-content;
}

@media (max-width: 640px) {
  .promo-hero h1 {
    font-size: 27px;
  }
  .promo-hero p.lead {
    font-size: 16px;
  }
}
