/* ── CALLMAN BLUEPRINT CARD ── */
.callman-bp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(124, 58, 237, .25);
}

/* ── ABOUT ── */
#about { background: var(--bg2); }

.about-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 72px;
  align-items: start;
}

.about-text p { color: var(--t2); font-size: 15.5px; line-height: 1.9; margin-bottom: 18px; }
.about-text strong { color: var(--t); font-weight: 500; }

.skill-wrap { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }

.sk {
  font-family: var(--fm);
  font-size: 11.5px;
  padding: 5px 13px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--t2);
  transition: all .2s;
  cursor: default;
}
.sk:hover { border-color: var(--a); color: var(--a); background: rgba(180, 83, 9, .07); }

.tl-wrap { display: flex; flex-direction: column; }

.tl { display: flex; gap: 22px; padding: 26px 0; border-bottom: 1px solid var(--border); }
.tl:last-child { border-bottom: none; }
.tl-yr { font-family: var(--fm); font-size: 11px; color: var(--a); min-width: 48px; padding-top: 3px; }
.tl h4 { font-family: var(--fh); font-size: 15.5px; font-weight: 600; margin-bottom: 3px; }
.tl p { font-size: 13px; color: var(--t2); }

/* ── TEACHING BLOCK ── */
.teach-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-top: 88px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.teach-title {
  font-family: var(--fh);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 16px 0 22px;
}

.teach-text p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.9;
  margin-bottom: 16px;
}
.teach-text p strong { color: var(--t); font-weight: 500; }

.teach-stats {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.ts-item { display: flex; flex-direction: column; gap: 4px; }
.ts-num {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 700;
  color: var(--a);
  letter-spacing: -.03em;
  line-height: 1;
}
.ts-label { font-family: var(--fm); font-size: 11px; color: var(--t3); letter-spacing: .04em; }

/* Gallery */
.teach-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  align-items: start;
}

.tg-left,
.tg-right { display: flex; flex-direction: column; gap: 10px; }

.tg-left img,
.tg-right img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: transform .6s ease;
}
.tg-left img:hover,
.tg-right img:hover { transform: scale(1.02); }

/* Sol sütun — hər ikisi landscape */
.tg-left img:first-child {
  aspect-ratio: 4 / 3;
  object-position: center 20%;
}
.tg-left img:last-child {
  aspect-ratio: 4 / 3;
  object-position: center 15%;
}

/* Sağ sütun — portre + landscape */
.tg-right img:first-child {
  aspect-ratio: 3 / 4;
  object-position: center top;
}
.tg-right img:last-child {
  aspect-ratio: 4 / 3;
  object-position: center 30%;
}

@media(max-width:900px) {
  .teach-block { grid-template-columns: 1fr; gap: 40px; }
  .teach-gallery { height: 320px; }
}

/* ── APPS ── */
#apps { background: var(--bg); }

.work-list { display: flex; flex-direction: column; margin-top: 64px; }

.wi {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.wi::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%; width: 0;
  background: rgba(180, 83, 9, .04);
  transition: width .35s ease;
}
.wi:hover::before { width: 100%; }
.wi:hover .wi-arrow { transform: translate(5px, -5px); color: var(--a); }
.wi:hover .wi-title { color: var(--a); }

.wi-num { font-family: var(--fm); font-size: 12px; color: var(--t3); min-width: 36px; }

.wi-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: transform .25s;
}
.wi:hover .wi-icon { transform: rotate(-5deg) scale(1.08); }

.wi-body { flex: 1; }
.wi-title { font-family: var(--fh); font-size: 22px; font-weight: 700; margin-bottom: 6px; transition: color .25s; }
.wi-desc  { font-size: 14px; color: var(--t2); }

.wi-tags { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }

.wi-arrow { font-size: 22px; color: var(--t3); transition: all .25s; flex-shrink: 0; }

/* ── BLUEPRINTS ── */
#blueprints { background: var(--bg2); }

.bp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 64px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(180, 83, 9, .07), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card:hover { border-color: rgba(180, 83, 9, .28); transform: translateY(-5px); }

.card-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.card h3 { font-family: var(--fh); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.card p  { font-size: 13.5px; color: var(--t2); line-height: 1.72; margin-bottom: 18px; }

.price { font-family: var(--fh); font-size: 26px; font-weight: 700; color: var(--a); margin-bottom: 18px; }
.price small { font-size: 13px; color: var(--t3); font-weight: 400; }

.bsm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px; font-weight: 500;
  padding: 9px 20px;
  border-radius: 40px;
  background: var(--a);
  color: #fff;
  border: none;
  cursor: none;
  font-family: var(--fb);
  transition: all .2s;
}
.bsm:hover { background: #c46c10; transform: translateY(-1px); }
.bsm.ol { background: transparent; border: 1px solid var(--border2); color: var(--t2); }
.bsm.ol:hover { border-color: var(--a); color: var(--a); }

/* ── ARTICLES ── */
#articles { background: var(--bg); }

.art-list { display: flex; flex-direction: column; margin-top: 64px; }

.art {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: all .2s;
}
.art:hover .art-title { color: var(--a); }
.art:hover .art-arr   { transform: translate(4px, -4px); color: var(--a); }

.art-n    { font-family: var(--fm); font-size: 11px; color: var(--t3); min-width: 28px; padding-top: 5px; }
.art-info { flex: 1; }
.art-title{ font-family: var(--fh); font-size: 19.5px; font-weight: 600; margin-bottom: 6px; transition: color .2s; }
.art-desc { font-size: 13.5px; color: var(--t2); margin-bottom: 6px; }
.art-meta { font-family: var(--fm); font-size: 11px; color: var(--t3); }
.art-arr  { font-size: 20px; color: var(--t3); transition: all .25s; padding-top: 4px; }

/* article with image */
.art-img-wrap {
  width: 120px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.art-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.art-has-img:hover .art-img { transform: scale(1.06); }
@media(max-width:860px){ .art-img-wrap { width: 80px; height: 52px; } }

/* ── N8N ── */
#n8n { background: var(--bg2); }

.n8n-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}

.n8n-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .3s;
}
.n8n-card:hover { border-color: rgba(15, 118, 110, .28); transform: translateY(-4px); }

.n8n-ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(15, 118, 110, .09);
  border: 1px solid rgba(15, 118, 110, .18);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.n8n-card h3 { font-family: var(--fh); font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.n8n-card p  { font-size: 13px; color: var(--t2); line-height: 1.7; }

/* ── CONTACT ── */
#contact { background: var(--bg); }

.contact-g {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}

.contact-links { display: flex; flex-direction: column; gap: 13px; margin-top: 32px; }

.clink {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: var(--t2);
  transition: all .22s;
}
.clink:hover { border-color: rgba(180, 83, 9, .35); color: var(--a); transform: translateX(5px); }

.clink-ico {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.clink span { font-size: 13.5px; }

.cf { display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-g { display: flex; flex-direction: column; gap: 7px; }
.cf-label { font-family: var(--fm); font-size: 11.5px; color: var(--t2); }

.cf-input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--t);
  padding: 12px 15px;
  border-radius: 11px;
  font-size: 14.5px;
  font-family: var(--fb);
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.cf-input:focus { border-color: rgba(180, 83, 9, .5); }
textarea.cf-input { resize: vertical; min-height: 118px; }

.cf-submit {
  background: var(--a);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 11px;
  font-size: 15px; font-weight: 500;
  font-family: var(--fb);
  transition: all .25s;
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
}
.cf-submit:hover {
  background: #c46c10;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(180, 83, 9, .3);
}
