:root {
  --teal:    #0F7B6C; --teal-d: #085041; --teal-m: #1D9E75;
  --mint:    #E1F5EE; --mint-m: #9FE1CB;
  --pearl:   #F8F6F2; --night:  #1C2B3A; --night-l: #243545;
  --amber:   #E8A020; --stone:  #888780; --stone-l: #E5E2DA;
  --f-disp:  'Montserrat', system-ui, sans-serif;
  --f-sans:  'Montserrat', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
body   { font-family: var(--f-sans); background: #fff; color: var(--night); }
a      { text-decoration: none; color: inherit; }
img    { display: block; max-width: 100%; }

/* ── PAGE-TOP: sol başlık+form / sağ sticky görsel ─────────────────── */
.ip-page-top       { background: #fff; border-bottom: 1px solid var(--stone-l); }
.ip-page-top-grid  { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 132px); }

.ip-pt-left {
  padding: 64px 80px;
  border-right: 1px solid var(--stone-l);
  display: flex; flex-direction: column; justify-content: center;
  overflow-y: auto;
}
/* Sağ görsel — topbar+nav yüksekliği kadar aşağıdan sticky */
.ip-pt-right {
  position: sticky;
  top: 132px;
  height: calc(100vh - 132px);
  overflow: hidden;
  align-self: flex-start;
}
.ip-pt-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.ip-pt-right-bg {
  width: 100%; height: 100%;
  background: linear-gradient(160deg,#071c14 0%,#0e2c22 50%,#0a1e18 100%);
}

/* Breadcrumb */
.ip-bc      { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.ip-bc a,
.ip-bc span { font-size: 11.5px; color: rgba(28,43,58,.38); transition: color .2s; }
.ip-bc a:hover  { color: var(--teal); }
.ip-bc-sep      { color: rgba(28,43,58,.2); }
.ip-bc-cur      { color: rgba(28,43,58,.55) !important; }

/* Eyebrow */
.ip-eyebrow      { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.ip-eyebrow-line { width: 48px; height: 1px; background: var(--teal); }
.ip-eyebrow-tx   { font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--teal); }

/* H1 */
.ip-h1    { font-family: var(--f-disp); font-size: clamp(44px,6vw,88px); font-weight: 800; color: var(--night); line-height: .93; letter-spacing: -3px; margin-bottom: 18px; }
.ip-h1 em { font-style: italic; font-weight: 300; color: var(--teal); display: block; }
.ip-subdesc { font-size: 16px; font-weight: 300; color: rgba(28,43,58,.5); line-height: 1.7; margin-bottom: 40px; max-width: 440px; }

/* Form */
.ip-form-wrap  { border-top: 1px solid var(--stone-l); padding-top: 32px; }
.ip-form-label { font-size: 9px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--teal); margin-bottom: 8px; }
.ip-form-desc  { font-size: 13.5px; font-weight: 300; color: rgba(28,43,58,.45); line-height: 1.6; margin-bottom: 28px; }
.ip-ff { margin-bottom: 22px; }
.ip-ff-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; transition: color .2s; }
.ip-ff:focus-within .ip-ff-label { color: var(--teal); }
.ip-fi, .ip-fsel {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--stone-l);
  padding: 0 0 10px; font-family: var(--f-sans); font-size: 16px; font-weight: 300;
  color: var(--night); outline: none; transition: border-color .25s; border-radius: 0;
}
.ip-fi:focus, .ip-fsel:focus { border-bottom-color: var(--teal); }
.ip-fi::placeholder { color: rgba(28,43,58,.22); font-style: italic; }
.ip-fsel { cursor: pointer; color: rgba(28,43,58,.45); }
.ip-frow { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ip-kvkk { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 20px; }
.ip-cb {
  width: 15px; height: 15px; border: 1.5px solid var(--stone); border-radius: 3px;
  appearance: none; -webkit-appearance: none; cursor: pointer; flex-shrink: 0; margin-top: 2px;
  position: relative; background: transparent; transition: all .2s;
}
.ip-cb:checked { background: var(--teal); border-color: var(--teal); }
.ip-cb:checked::after { content:""; position:absolute; top:2px; left:4px; width:4px; height:8px; border:1.5px solid white; border-top:none; border-left:none; transform:rotate(45deg); }
.ip-kl { font-size: 12px; color: rgba(28,43,58,.45); line-height: 1.6; cursor: pointer; }
.ip-kl strong { color: var(--night); font-weight: 500; }
.ip-submit {
  display: inline-flex; align-items: center; gap: 13px; background: var(--night); color: #fff;
  border: none; padding: 14px 30px; cursor: pointer; font-family: var(--f-disp); font-size: 13px;
  font-weight: 700; letter-spacing: .5px; transition: all .3s; position: relative; overflow: hidden;
}
.ip-submit::before { content:""; position:absolute; inset:0; background:var(--teal); transform:translateX(-100%); transition:transform .35s cubic-bezier(.4,0,.2,1); }
.ip-submit span, .ip-submit svg { position: relative; z-index: 1; }
.ip-submit:hover::before { transform: translateX(0); }
.ip-submit svg { width:14px; height:14px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; transition:transform .25s; }
.ip-submit:hover svg { transform: translateX(3px); }
.ip-form-alts { display: flex; align-items: center; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.ip-form-alt  { font-size: 13px; font-weight: 300; color: rgba(28,43,58,.45); transition: color .2s; }
.ip-form-alt:hover { color: var(--teal); }

/* ── STATS BAR ──────────────────────────────────────────────────────── */
.ip-stats    { background: var(--mint); border-bottom: 1px solid rgba(15,123,108,.15); }
.ip-stats-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: repeat(4,1fr); }
.ip-stat     { padding: 22px 0 22px 20px; display: flex; align-items: center; gap: 14px; border-right: 1px solid rgba(15,123,108,.15); }
.ip-stat:last-child  { border-right: none; }
.ip-stat svg         { flex-shrink: 0; }
.ip-stat-name        { font-size: 14px; font-weight: 700; color: var(--teal-d); }
.ip-stat-sub         { font-size: 11px; color: rgba(8,80,65,.6); margin-top: 1px; }

/* ── CONTENT ────────────────────────────────────────────────────────── */
.ip-content    { padding: 80px 0 100px; background: #fff; }
.ip-content-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: 1fr 340px; gap: 96px; align-items: flex-start; }

.ip-lead { font-size: clamp(16px,1.8vw,21px); font-weight: 300; color: rgba(28,43,58,.8); line-height: 1.7; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--stone-l); }
.ip-p    { font-size: 15px; font-weight: 300; color: rgba(28,43,58,.72); line-height: 1.9; margin-bottom: 22px; }
.ip-h2   { font-family: var(--f-disp); font-size: clamp(19px,2.2vw,27px); font-weight: 700; color: var(--night); line-height: 1.2; letter-spacing: -.6px; margin: 52px 0 18px; padding-top: 52px; border-top: 1px solid var(--stone-l); }
.ip-h2 em { font-style: italic; font-weight: 300; color: var(--teal); }
.ip-quote   { border-left: 2px solid var(--teal); padding: 4px 0 4px 28px; margin: 32px 0; }
.ip-quote p { font-size: clamp(15px,1.6vw,19px); font-style: italic; font-weight: 300; color: rgba(28,43,58,.65); line-height: 1.55; margin-bottom: 8px; }
.ip-quote cite { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); }
.ip-hl   { background: var(--mint); border-left: 2px solid var(--teal); padding: 20px 24px; margin: 28px 0; }
.ip-hl p { font-size: 14px; font-weight: 300; color: rgba(28,43,58,.7); line-height: 1.8; margin: 0; }
.ip-hl strong { font-weight: 700; color: var(--night); }

/* Liste */
.ip-list    { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 18px 0 24px; }
.ip-list li { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--stone-l); font-size: 15px; font-weight: 300; color: rgba(28,43,58,.7); line-height: 1.6; }
.ip-list li:first-child { border-top: 1px solid var(--stone-l); }
.ip-li-d    { color: var(--teal); flex-shrink: 0; }

/* Adımlar */
.ip-steps  { display: flex; flex-direction: column; gap: 0; margin: 24px 0; }
.ip-st     { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--stone-l); position: relative; }
.ip-st:first-child { border-top: 1px solid var(--stone-l); }
.ip-st::before { content:""; position:absolute; left:0; top:0; bottom:0; width:2px; background:var(--teal); transform:scaleY(0); transform-origin:top; transition:transform .4s cubic-bezier(.4,0,.2,1); }
.ip-st:hover::before { transform: scaleY(1); }
.ip-st-n   { font-family: var(--f-disp); font-size: 34px; font-weight: 800; color: rgba(28,43,58,.06); line-height: 1; letter-spacing: -1px; flex-shrink: 0; width: 44px; padding-top: 2px; transition: color .3s; }
.ip-st:hover .ip-st-n { color: rgba(15,123,108,.15); }
.ip-st-name { font-size: 17px; font-weight: 700; color: var(--night); letter-spacing: -.3px; margin-bottom: 5px; }
.ip-st-name em { font-style: italic; font-weight: 300; color: var(--teal); }
.ip-st-desc { font-size: 13.5px; font-weight: 300; color: rgba(28,43,58,.5); line-height: 1.75; }
.ip-st-tag  { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--stone); margin-top: 6px; }

/* İçerik CTA banner */
.ip-ac-cta      { background: var(--night); padding: 26px 30px; margin: 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ip-ac-cta h4   { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.ip-ac-cta p    { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.4); }
.ip-ac-cta-btn  {
  display: inline-flex; align-items: center; gap: 10px; background: var(--teal); color: #fff;
  padding: 11px 22px; font-family: var(--f-disp); font-size: 12.5px; font-weight: 700;
  white-space: nowrap; transition: background .2s; border: none; flex-shrink: 0; cursor: pointer;
}
.ip-ac-cta-btn:hover { background: var(--teal-m); }
.ip-ac-cta-btn svg { width:14px; height:14px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; }

/* ── SIDEBAR ────────────────────────────────────────────────────────── */
.ip-sidebar      { position: sticky; top: 152px; display: flex; flex-direction: column; gap: 0; }
.ip-toc          { margin-bottom: 40px; }
.ip-toc-label    { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--stone); margin-bottom: 18px; }
.ip-toc-item     { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--stone-l); transition: all .2s; }
.ip-toc-item:first-child { border-top: 1px solid var(--stone-l); }
.ip-toc-item:hover .ip-toc-n  { color: var(--teal); }
.ip-toc-item:hover .ip-toc-tx { color: var(--night); }
.ip-toc-n        { font-size: 14px; font-weight: 700; color: rgba(28,43,58,.18); min-width: 20px; flex-shrink: 0; transition: color .2s; }
.ip-toc-tx       { font-size: 13px; font-weight: 300; color: rgba(28,43,58,.5); line-height: 1.45; transition: color .2s; }
.ip-sb-div       { height: 1px; background: var(--stone-l); margin: 0 0 32px; }
.ip-sb-cta       { background: var(--night); padding: 26px; margin-bottom: 28px; }
.ip-sb-cta-label { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 10px; }
.ip-sb-cta-h     { font-size: 19px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 5px; }
.ip-sb-cta-p     { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: 20px; }
.ip-sb-btn       { display: flex; align-items: center; justify-content: space-between; background: var(--teal); color: #fff; padding: 12px 16px; font-family: var(--f-disp); font-size: 13px; font-weight: 700; border: none; width: 100%; transition: background .2s; margin-bottom: 10px; cursor: pointer; }
.ip-sb-btn:hover { background: var(--teal-m); }
.ip-sb-btn svg   { width:14px; height:14px; stroke:white; fill:none; stroke-width:2; stroke-linecap:round; }
.ip-sb-tel       { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 7px; transition: color .2s; }
.ip-sb-tel:hover { color: var(--mint-m); }
.ip-sb-tel::before { content:""; width:14px; height:1px; background:currentColor; }
.ip-sb-doc       { padding-top: 28px; border-top: 1px solid var(--stone-l); }
.ip-sb-doc-label { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--stone); margin-bottom: 14px; }
.ip-sb-doc-av    { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--stone-l); overflow: hidden; background: var(--pearl); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.ip-sb-doc-av img { width:100%; height:100%; object-fit:cover; object-position:top center; }
.ip-sb-doc-name  { font-size: 17px; font-weight: 700; color: var(--night); margin-bottom: 2px; }
.ip-sb-doc-spec  { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.ip-sb-doc-q     { font-size: 13px; font-style: italic; color: rgba(28,43,58,.5); line-height: 1.65; border-left: 2px solid var(--stone-l); padding-left: 12px; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.ip-faq    { background: var(--pearl); padding: 80px 0; border-top: 1px solid var(--stone-l); }
.ip-faq-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; }
.ip-faq-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 20px; border-bottom: 1px solid var(--stone-l); padding-bottom: 18px; flex-wrap: wrap; }
.ip-faq-h    { font-family: var(--f-disp); font-size: clamp(24px,2.8vw,34px); font-weight: 800; color: var(--night); letter-spacing: -.8px; }
.ip-faq-h em { font-style: italic; font-weight: 300; color: var(--teal); }
.ip-faq-sub  { font-size: 13px; font-weight: 300; color: var(--stone); }
.ip-faq-sub a { color: var(--teal); border-bottom: 1px solid rgba(15,123,108,.3); }
.ip-faq-item  { border-bottom: 1px solid var(--stone-l); cursor: pointer; transition: background .2s; }
.ip-faq-item:first-child { border-top: 1px solid var(--stone-l); }
.ip-faq-item:hover  { background: transparent; }
.ip-faq-q    { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.ip-faq-q-tx { font-size: clamp(15px,1.5vw,18px); font-weight: 700; color: var(--night); line-height: 1.3; }
.ip-faq-ic   { width: 28px; height: 28px; border: 1px solid var(--stone-l); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.ip-faq-ic svg { width:12px; height:12px; stroke:var(--stone); fill:none; stroke-width:2.5; stroke-linecap:round; transition: all .25s; }
.ip-faq-item.open .ip-faq-ic   { border-color: var(--teal); }
.ip-faq-item.open .ip-faq-ic svg { stroke: var(--teal); transform: rotate(45deg); }
.ip-faq-a    { display: none; font-size: 14px; font-weight: 300; color: rgba(28,43,58,.6); line-height: 1.8; border-top: 1px solid var(--stone-l); padding: 16px 0 20px; }
.ip-faq-item.open .ip-faq-a { display: block; }

/* ── CTA ─────────────────────────────────────────────────────────────── */
.ip-cta    { background: var(--night); padding: 80px 0; position: relative; overflow: hidden; }
.ip-cta::before { content: ''; position: absolute; bottom: -150px; right: -150px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle,rgba(15,123,108,.08),transparent 70%); }
.ip-cta-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; position: relative; z-index: 2; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.ip-cta-h  { font-size: clamp(32px,4.5vw,56px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 12px; }
.ip-cta-h em { font-style: italic; font-weight: 300; color: var(--mint-m); }
.ip-cta-p  { font-size: 14.5px; font-weight: 300; color: rgba(255,255,255,.38); line-height: 1.8; }
.ip-cta-acts { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.ip-cta-btn  { display: inline-flex; align-items: center; gap: 14px; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.2); padding: 16px 32px; font-size: 13px; font-weight: 700; letter-spacing: .5px; font-family: var(--f-sans); transition: all .3s; cursor: pointer; position: relative; overflow: hidden; }
.ip-cta-btn::before { content: ''; position: absolute; inset: 0; background: var(--teal); transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
.ip-cta-btn span, .ip-cta-btn svg { position: relative; z-index: 1; }
.ip-cta-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; transition: transform .25s; }
.ip-cta-btn:hover::before { transform: translateX(0); }
.ip-cta-btn:hover svg { transform: translateX(4px); }
.ip-cta-tel  { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.38); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.ip-cta-tel:hover { color: var(--mint); }
.ip-cta-tel::before { content: ''; width: 16px; height: 1px; background: currentColor; }

/* ── MOBİL STICKY BAR ───────────────────────────────────────────────── */
.t-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 210; display: none; background: #fff; border-top: 1px solid var(--stone-l); padding: 12px 16px; gap: 10px; box-shadow: 0 -4px 20px rgba(28,43,58,.1); }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media(max-width:1200px){
  .ip-page-top-grid { grid-template-columns: 1fr; }
  .ip-pt-right      { display: none; }
  .ip-pt-left       { padding: 52px 48px; justify-content: flex-start; }
  .ip-content-in    { grid-template-columns: 1fr; padding: 0 48px; gap: 40px; }
  .ip-sidebar       { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; margin-top: 48px; }
  .ip-stats-in      { padding: 0 48px; grid-template-columns: repeat(2,1fr); }
  .ip-faq-in        { padding: 0 48px; }
  .ip-cta-in        { padding: 0 48px; grid-template-columns: 1fr; }
}
@media(max-width:768px){
  .ip-pt-left    { padding: 36px 24px; }
  .ip-frow       { grid-template-columns: 1fr; gap: 0; }
  .ip-stats-in   { padding: 0 24px; grid-template-columns: 1fr 1fr; }
  .ip-stat       { padding-left: 0; }
  .ip-content-in { padding: 0 24px; }
  .ip-sidebar    { grid-template-columns: 1fr; }
  .ip-faq        { padding: 52px 0; }
  .ip-faq-in     { padding: 0 24px; }
  .ip-faq-head   { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ip-cta        { padding: 52px 0; }
  .ip-cta-in     { padding: 0 24px; }
  .ip-ac-cta     { padding: 20px; }
  .t-sticky-bar { display: flex; }
}
@media(max-width:480px){
  .ip-h1         { letter-spacing: -2px; }
  .ip-stats-in   { grid-template-columns: 1fr; }
  .ip-stat       { border-right: none; border-bottom: 1px solid rgba(15,123,108,.15); }
  .ip-stat:last-child { border-bottom: none; }
}
