/* ==========================================================================
   AllGuide Consultancy — Pazaryeri Büyüme Danışmanlığı
   Tek stil dosyası. Renk ve tipografi değişkenleri en üstte.
   ========================================================================== */

:root {
  /* AllGuide Consultancy — yeşil / lacivert / beyaz */
  --paper:    #F4F7F9;
  --surface:  #FFFFFF;
  --ink:      #1C4286;   /* marka laciverti: gövde metni + koyu bölümler */
  --ink-d:    #16356C;   /* koyu bölüm içindeki kart zemini */
  --muted:    #5A6B87;
  --line:     #DDE3EC;
  --signal:   #008842;   /* marka yeşili: birincil aksiyon */
  --signal-d: #006A34;   /* yeşil hover + bağlantı metni */
  --signal-l: #E6F4EC;   /* açık yeşil zemin tonu */
  --mint:     #7FE3AE;   /* lacivert zemin üzerinde vurgu */
  --alert:    #B3382F;   /* yalnızca uyarı / zayıf skor */

  --display: "Bricolage Grotesque", "Segoe UI", sans-serif;
  --body:    "IBM Plex Sans", "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, monospace;

  --wrap: 1080px;
  --r: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--signal-d); }

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Tipografi -------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 5.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }

.lede {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--muted);
  max-width: 56ch;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--signal);
  flex: none;
}

.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* --- Navigasyon ------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 247, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: -0.025em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.2;
}
.brand .mark { width: 27px; height: 27px; flex: none; }
.brand-t span {
  display: block;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 0.94rem;
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { border-bottom-color: var(--signal); }

/* --- Butonlar --------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: var(--r);
  border: 1.5px solid var(--signal);
  background: var(--signal);
  color: #fff;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--signal-d); border-color: var(--signal-d); }
.btn:active { transform: translateY(1px); }

.btn-ghost {
  background: transparent;
  color: var(--signal-d);
}
.btn-ghost:hover { background: rgba(0, 136, 66, 0.08); border-color: var(--signal-d); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* --- Bölümler --------------------------------------------------------- */

.sec { padding: 76px 0; border-top: 1px solid var(--line); }
.sec-first { padding-top: 56px; border-top: 0; }
.sec-dark {
  background: var(--ink);
  color: var(--paper);
  border-top: 0;
}
.sec-dark h2 { color: #fff; }
.sec-dark .lede { color: #C3D3EA; }
.sec-dark .eyebrow { color: var(--mint); }
.sec-dark .eyebrow::before { background: var(--mint); }

/* --- Hero ------------------------------------------------------------- */

.hero { padding: 64px 0 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 span { color: var(--signal); }

.trust {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.trust div { font-family: var(--mono); font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.trust b {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* --- Skor kartı (imza öğesi) ------------------------------------------ */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}

.scorecard { padding: 24px; box-shadow: 0 1px 0 rgba(28,66,134,.05), 0 18px 40px -28px rgba(28,66,134,.26); }
.scorecard-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.scorecard-head strong { font-family: var(--display); font-size: 1.02rem; }
.scorecard-head em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.srow { padding: 12px 0 11px; border-bottom: 1px solid #EEF2F7; }
.srow-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 7px;
}
.srow-top span { font-size: 0.92rem; }
.srow-top i {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
  white-space: nowrap;
}
.srow-top i b { color: var(--ink); font-weight: 600; }

.track { height: 7px; background: #E4EAF2; border-radius: 99px; overflow: hidden; }
.fill {
  height: 100%;
  width: 0;
  background: var(--signal);
  border-radius: 99px;
  transition: width 1.05s cubic-bezier(.22,.72,.27,1);
}
.fill.weak { background: var(--alert); }
.fill.mid  { background: var(--ink); }
.is-on .fill { width: var(--w); }

.scorecard-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--ink);
  border-radius: var(--r);
  color: #fff;
}
.scorecard-total span { font-size: 0.85rem; color: #C3D3EA; }
.scorecard-total strong {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.scorecard-total strong i { font-style: normal; font-size: 0.9rem; color: #93AAD0; font-weight: 500; }
.scorecard-note {
  margin: 10px 0 0;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  line-height: 1.5;
}

/* --- Kapsam tablosu --------------------------------------------------- */

.ledger { margin-top: 34px; border-top: 2px solid var(--ink); }
.lrow {
  display: grid;
  grid-template-columns: 54px 1fr 1.35fr;
  gap: 22px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.lrow-w {
  font-family: var(--mono);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--signal);
  padding-top: 2px;
}
.lrow h3 { margin: 0 0 4px; font-size: 1.05rem; }
.lrow-m { margin: 0; font-family: var(--mono); font-size: 0.74rem; color: var(--muted); line-height: 1.7; }
.lrow p.lrow-d { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* --- Kart ızgaraları --------------------------------------------------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 34px; }

.tile { padding: 26px 24px; }
.tile .k {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  display: block;
  margin-bottom: 12px;
}
.tile h3 { margin-bottom: 8px; }
.tile p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* --- Uygun / uygun değil ---------------------------------------------- */

.fit { padding: 26px 24px; border-radius: var(--r); }
.fit-yes { background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--signal); }
.fit-no  { background: transparent; border: 1px solid var(--line); border-left: 4px solid var(--alert); }
.fit h3 { margin-bottom: 14px; }
.fit ul { margin: 0; padding-left: 0; list-style: none; }
.fit li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 0.95rem;
  color: var(--muted);
}
.fit li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--mono);
  font-weight: 600;
}
.fit-yes li::before { content: "+"; color: var(--signal); }
.fit-no  li::before { content: "–"; color: var(--alert); }

/* --- Paketler --------------------------------------------------------- */

.pack {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.pack-hot { border: 2px solid var(--ink); }
.pack-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--signal);
  color: #fff;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.pack h3 { margin-bottom: 6px; }
.pack-price {
  font-family: var(--display);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 10px 0 4px;
}
.pack-price i { font-style: normal; font-family: var(--mono); font-size: 0.8rem; font-weight: 500; color: var(--muted); }
.pack ul { list-style: none; margin: 16px 0 22px; padding: 0; }
.pack li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.93rem;
  color: var(--muted);
}
.pack li::before {
  content: "→";
  position: absolute;
  left: 0;
  font-family: var(--mono);
  color: var(--signal);
}
.pack .btn { margin-top: auto; text-align: center; }

/* --- SSS -------------------------------------------------------------- */

.faq { margin-top: 30px; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 17px;
  font-family: var(--mono);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--signal);
}
.faq details[open] summary::after { content: "–"; }
.faq p { margin: 0 0 20px; color: var(--muted); font-size: 0.97rem; max-width: 70ch; }

/* --- Kapanış CTA ------------------------------------------------------ */

.cta-box { text-align: center; padding: 12px 0; }
.cta-box .lede { margin-left: auto; margin-right: auto; }
.cta-box .btn-row { justify-content: center; }

/* --- Form ------------------------------------------------------------- */

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.88rem; font-weight: 600; }
.field label em { font-style: normal; color: var(--muted); font-weight: 400; }
.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 13px;
  width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--signal); outline-offset: 1px; }

.consent {
  grid-column: 1 / -1;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}
.consent input { margin-top: 3px; flex: none; width: 17px; height: 17px; }

.contact-side { padding: 26px 24px; }
.contact-side h3 { margin-bottom: 16px; }
.contact-side dl { margin: 0; }
.contact-side dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
}
.contact-side dt:first-child { margin-top: 0; }
.contact-side dd { margin: 4px 0 0; font-size: 1rem; }
.contact-side dd a { text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-side dd a:hover { border-bottom-color: var(--signal); }

/* --- Blog ------------------------------------------------------------- */

.post-list { margin-top: 34px; border-top: 2px solid var(--ink); }
.post-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.post-item a { text-decoration: none; color: var(--ink); }
.post-item h3 { font-size: 1.35rem; margin-bottom: 8px; }
.post-item a:hover h3 { color: var(--signal); }
.post-meta {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.post-item p { margin: 0; color: var(--muted); font-size: 0.96rem; max-width: 68ch; }

.article { max-width: 720px; margin: 0 auto; padding: 56px 0 76px; }
.article h1 { margin-bottom: 18px; }
.article h2 { margin-top: 46px; font-size: 1.5rem; }
.article h3 { margin-top: 32px; font-size: 1.12rem; }
.article p, .article li { font-size: 1.05rem; }
.article ul, .article ol { padding-left: 22px; margin-bottom: 1.2em; color: var(--ink); }
.article li { margin-bottom: 9px; }
.article strong { font-weight: 600; }
.article blockquote {
  margin: 30px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--signal);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.45;
}
.article-cta {
  margin-top: 46px;
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--signal);
  border-radius: var(--r);
}
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { font-size: 0.98rem; color: var(--muted); }

/* --- Footer ----------------------------------------------------------- */

.foot {
  background: var(--ink);
  color: #AFC3E0;
  padding: 46px 0 34px;
  font-size: 0.88rem;
}
.foot-in { display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.foot a { color: var(--paper); text-decoration: none; }
.foot a:hover { text-decoration: underline; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-note {
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid #2E5697;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.7;
  color: #93AAD0;
  max-width: 74ch;
}

/* --- Hareket / erişilebilirlik ---------------------------------------- */

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-on { opacity: 1; transform: none; }

.skip {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .fill { width: var(--w); }
}

/* --- Responsive -------------------------------------------------------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .lrow { grid-template-columns: 44px 1fr; gap: 16px; }
  .lrow p.lrow-d { grid-column: 2; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .sec { padding: 56px 0; }
  .hero { padding: 40px 0 52px; }
  .grid-2, .form-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.88rem; }
  .trust { gap: 20px; }
  .btn { width: 100%; text-align: center; }
  .btn-row { flex-direction: column; }
}

/* --- Form durum mesajları & spam tuzağı -------------------------------- */

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-msg {
  margin: 14px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  min-height: 1px;
}
.form-msg:empty { display: none; }
.form-msg.is-ok {
  color: var(--signal-d);
  padding: 12px 14px;
  background: rgba(0, 136, 66, 0.08);
  border-left: 3px solid var(--signal);
  border-radius: var(--r);
}
.form-msg.is-hata {
  color: var(--alert);
  padding: 12px 14px;
  background: rgba(179, 56, 47, 0.07);
  border-left: 3px solid var(--alert);
  border-radius: var(--r);
}

#gonderBtn:disabled { opacity: 0.6; cursor: default; }


/* --- AllGuide marka vurguları ---------------------------------------- */

.scorecard-total strong { color: var(--mint); }
.scorecard-total strong i { color: #93AAD0; }

.sec-dark { background: var(--ink); }
.sec-dark .card { background: var(--ink-d); border-color: #2E5697; }
.sec-dark .tile h3 { color: #fff; }
.sec-dark .tile p { color: #C3D3EA; }
.sec-dark .tile .k { color: var(--mint); }

.pack-hot { border-color: var(--signal); }
.pack-hot .pack-price { color: var(--signal-d); }

.hero h1 span { color: var(--signal); }

/* Altın ince çizgi: bölüm başlıklarının üstünde marka izi */
.eyebrow::before { background: var(--signal); }
.sec-dark .eyebrow::before { background: var(--mint); }

.foot .brand-t span { color: #93AAD0; }

/* --- Uyum notu kutusu -------------------------------------------------- */

.note-legal {
  margin-top: 34px;
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  border-radius: var(--r);
}
.note-legal h3 { margin-bottom: 12px; }
.note-legal p {
  margin: 0 0 12px;
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 72ch;
}
.note-legal p:last-child { margin-bottom: 0; }
.note-legal strong { color: var(--ink); font-weight: 600; }

/* --- Hizmet hatti duzeni (index) -------------------------------------- */

/* Kart basligindan bolume giden baglanti */
.tile-link { color: inherit; text-decoration: none; }
.tile-link:hover { color: var(--signal-d); }
.sec-dark .tile-link:hover { color: var(--mint); }

/* Bolum ici ara baslik ve ona yapisan blok */
.sub-h { margin-top: 52px; }
.ledger-tight { margin-top: 18px; }
.grid-tight { margin-top: 18px; }
.pack-group { margin-top: 44px; margin-bottom: 0; }
.pack-group + .grid-3,
.pack-group + .grid-2 { margin-top: 14px; }

/* Paket kenar seritleri */
.pack-navy  { border-left: 4px solid var(--ink); }
.pack-green { border-left: 4px solid var(--signal); }

/* Yesil kenarli bilgi kutusu */
.note-green { border-left-color: var(--signal); }

/* --- Koyu bolum icindeki ledger --------------------------------------- */

.sec-dark .ledger { border-top-color: var(--mint); }
.sec-dark .lrow { border-bottom-color: #2E5697; }
.sec-dark .lrow-w { color: var(--mint); }
.sec-dark .lrow h3 { color: #fff; }
.sec-dark .lrow p.lrow-d { color: #C3D3EA; }
.sec-dark .lrow-m { color: #93AAD0; }

/* --- Koyu bolum icindeki bilgi kutusu ---------------------------------- */

.sec-dark .note-legal { background: var(--ink-d); border-color: #2E5697; }
.sec-dark .note-legal h3 { color: #fff; }
.sec-dark .note-legal p { color: #C3D3EA; }
.sec-dark .note-legal strong { color: #fff; }

/* --- Calisma modeli bolumu: motto ------------------------------------- */

.motto {
  font-size: clamp(2rem, 5.2vw, 3.1rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.32em;
}
.motto-line {
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid #2E5697;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--mint);
}

/* Ara basligin hemen altindaki aciklama */
.sub-lede { margin-bottom: 0; }
