:root{
  --bg: #eef1ef;
  --text: #0e0f10;
  --muted: rgba(0,0,0,.55);

  --card: #ffffff;
  --soft: #f6f7f6;

  --gold: #b39a76;
  --chipGray: #e2e3e2;
  --tabBg: #e3e6e5;

  --pillBg: #edf0ee;
  --greenBg: #cfeccf;
  --greenText: #145c33;

  --danger: #cf4a4a;
  --ok: #39a86b;

  --shadow: 0 14px 30px rgba(0,0,0,.08);

  --container: 1180px;
  --topbarH: 88px;

  --rCard: 24px;
  --rPill: 999px;
  --rBtn: 10px;
}

*{ box-sizing: border-box; }
html, body { height: 100%;   max-width: 100%;
  overflow-x: hidden;}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-top: var(--topbarH);
}

img{ max-width:100%; height:auto; display:block; }

.container{
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 0 28px;
}

section{ scroll-margin-top: calc(var(--topbarH) + 16px); }

/* ---------------- TOPBAR ---------------- */
.topbar{
  position: fixed;
  top:0; left:0; right:0;
  height: var(--topbarH);
  background: var(--bg);
  z-index: 9999;
}

.topbar__inner{
  height: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
  color: var(--text);
}

.brand__logo{ width: 64px; height: 64px; object-fit: contain; }
.brand__name{ font-size: 22px; font-weight: 700; }

.nav{
  display:flex;
  gap: 40px;
  align-items:center;
}

.nav__link{
  text-decoration:none;
  color: var(--text);
  font-weight: 600;
}
.nav__link:hover{ opacity:.75; }

.burger{
  display:none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
}
.burger span{
  display:block;
  height: 2px;
  margin: 6px 0;
  background: rgba(0,0,0,.65);
}

.mobileNav{
  position: fixed;
  inset: 0;
  z-index: 9998;          /* topbar 9999, bunun altında kalır */
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.mobileNav.is-open{
  opacity: 1;
  pointer-events: auto;
}

.mobileNav__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.45);
  border:0;
}

.mobileNav__panel{
  position:absolute;
  left:0; right:0;
  top: var(--topbarH);    /* ✅ topbar’ın altından başlasın */
  background: var(--bg);  /* ✅ opak */
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 14px 18px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.16);
}

.mobileNav__link{
  display:block;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration:none;
  color: var(--text);
  font-weight: 750;
  background: rgba(0,0,0,.05);
  margin-top: 10px;
}
/* ---------------- HERO ---------------- */
.hero{
  padding: 50px 0 120px;
  
  min-height: calc(100vh - var(--topbarH));
  display: flex;
  align-items: center;
}


.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  align-items:center;
  gap: 32px;
}
.hero__grid,
.process__grid,
.formGrid,
.donutBlock{
  min-width: 0;
}

.hero__title{
  margin: 0 0 50px;   /* 16 → 28 */
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -1px;
}

.hero__lead{
  margin: 0 0 18px;   /* 10 → 18 */
  font-size: 21px;
  line-height: 1.6;
}

.hero__sub{
  margin: 0;
  font-size: 21px;
  line-height: 1.6;
}

.hero__title b{ font-weight: 900; }
.hero__gold{ color: var(--gold); font-weight: 900; }



.donutBlock{
  display:flex;
  align-items:center;
  gap: 24px;
  flex-wrap: nowrap; /* 🔥 alta geçmesin */
}

.donut{
  width: 210px;
  height: 210px;
  aspect-ratio: 1 / 1;
  flex: 0 0 210px; /* 🔥 sabit boyut, shrink yok */
  border-radius: 50%;

  background: conic-gradient(
    var(--gold) 0deg 225deg,
    #d7d9d8 225deg 315deg,
    var(--gold) 315deg 360deg
  );

  -webkit-mask: radial-gradient(circle, transparent 42%, #000 43%);
          mask: radial-gradient(circle, transparent 42%, #000 43%);
}

.donutLegend{
  display:flex;
  flex-direction:column;
  gap: 20px;   /* 12px → 20px */
  min-width: 0;
}

.legendRow{
  display:flex;
  gap: 12px;
  align-items:center;   /* 🔥 Yazı noktaya göre ortalanır */
}

.dot{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  flex: 0 0 40px;   /* ✅ width ile aynı olmalı */
}

.dot--gold{ background: var(--gold); }
.dot--gray{ background: #d5d7d6; }

/* ---------------- SECTION BASE ---------------- */
.section{
  padding: 44px 0 72px;
}

.h2{
  margin: 0 0 18px;
  font-size: 30px;
  letter-spacing: -.2px;
}
.h2--right{ text-align:left; }
.h2 b{ font-weight: 900; }

.center{ text-align:center; }

.bigTitle{
  margin: 0 0 30px;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -1px;
}
.bigTitle b{ font-weight: 950; }

/* ---------------- PROCESS ---------------- */
.process__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items:start;
}

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

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

.step__badge{
  background: var(--chipGray);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 900;
}

.step__text{
  background: rgba(255,255,255,.35);
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1.45;
  color: rgba(0,0,0,.8);
}

/* Before/After card (sağ) */
.baCard{
  background: var(--soft);
  border-radius: var(--rCard);
  box-shadow: var(--shadow);
  padding: 22px;
  width: 100%;
  max-width: 520px;
}

.baTabs{
  display:inline-flex;
  background: var(--tabBg);
  padding: 8px;
  border-radius: var(--rPill);
  gap: 8px;
}

.baTab{
  border: 0;
  background: transparent;
  padding: 12px 26px;
  border-radius: var(--rPill);
  font-weight: 800;
  cursor:pointer;
  color: rgba(0,0,0,.85);
}
.baTab.is-active{
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,.10);
}

.metrics{
  margin-top: 16px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.metric{
  display:flex;
  align-items:center;
  gap:16px;
  background:#ECEEEE;           /* senin muted */
  border-radius:9999px;
  padding:16px 18px;
}

.metric__label{
  flex:1 1 auto;
  min-width:0;                  /* wrap için şart */
  font-weight:600;
  line-height:1.2;
  overflow-wrap:anywhere;       /* uzun metin taşmasın */
}

.metric__value{
  flex:0 0 auto;                /* asla sıkışmasın */
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:44px;
  padding:0 14px;               /* sayı uzarsa genişler */
  border-radius:9999px;

  font-weight:700;
  color:#fff;
  white-space:nowrap;           /* sayı asla satır kırmasın */
}

.metric__value--red{ background:#C84B4B; }
.metric__value--green{ background:#0E8B5A; }

/* ---------------- GUARANTEE ---------------- */
.section--garanti{ padding-top: 0; }

.cards3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.infoCard{
  background: var(--card);
  border-radius: var(--rCard);
  box-shadow: var(--shadow);
  padding: 22px;
}

.infoCard__icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #f3f4f3;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 14px;
}
.infoCard__icon img{
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.infoCard__title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.infoCard__p{
  margin: 0 0 10px;
  line-height: 1.55;
  color: rgba(0,0,0,.8);
}

.infoCard__p--bold{
  font-weight: 900;
  margin-top: 10px;
}

/* ---------------- PRICING ---------------- */
.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.priceCard{
  background: var(--card);
  border-radius: var(--rCard);
  box-shadow: var(--shadow);
  padding: 22px;
}

.priceCard__top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
}
.priceCard__top--space{
  justify-content:flex-start;
}

.chip{
  background: var(--chipGray);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 900;
  font-size: 13px;
  display:inline-flex;
}
.chip--gold{
  background: #d5c2a5;
  color: rgba(0,0,0,.85);
}

.priceCard__price{ margin-top: 10px; }

.priceCard__amount{
  font-size: 30px;
  font-weight: 950;
}

.priceCard__sub{
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
}

.greenBar{
  margin-top: 14px;
  background: var(--greenBg);
  color: var(--greenText);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.bullets{
  margin: 14px 0 18px;
  padding-left: 20px;
  line-height: 1.75;
}
.bullets li{ margin: 6px 0; }

/* Buttons (tasarımdaki gibi full width) */
.btn{
  width: 100%;
  height: 52px;
  border-radius: var(--rBtn);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  text-decoration:none;
  font-weight: 900;
  border: 0;
  cursor:pointer;
  user-select:none;
}

.btn--secondary{
  background: var(--chipGray);
  color: rgba(0,0,0,.88);
  margin-bottom: 12px;
}

.btn--gold{
  background: var(--gold);
  color: #fff;
}

.btn--dark{
  background: #4a4a4a;
  color: #fff;
}

.btn__icon{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ---------------- FOOTER ---------------- */
.footer{ padding: 40px 0 50px; }
.footer__inner{
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.06);
  color: var(--muted);
}

/* ---------------- FORM PAGE ---------------- */
.formPage{ padding: 40px 0 70px; }

.formGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items:start;
}

.formTitle{
  margin: 0 0 14px;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -1px;
}

.formP{
  margin: 0 0 10px;
  color: rgba(0,0,0,.8);
  line-height: 1.5;
  font-size: 18px;
}

.leadForm{
  margin-top: 34px;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.field__label{
  display:block;
  margin-bottom: 8px;
  color: rgba(0,0,0,.5);
  font-weight: 750;
}

.field__input{
  width: 100%;
  height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.06);
  background: #f2f3f2;
  padding: 0 16px;
  font-size: 16px;
  outline: none;
}
.field__input:focus{
  border-color: rgba(179,154,118,.55);
  box-shadow: 0 0 0 4px rgba(179,154,118,.18);
}

.formNote{
  margin: 10px 0 0;
  min-height: 18px;
  color: rgba(0,0,0,.65);
}

.formRight{
  position: relative;
}

.backLink{
  display:block;
  text-align:right;
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 800;
}

.sidePlan{
  background: var(--card);
  border-radius: var(--rCard);
  box-shadow: var(--shadow);
  padding: 22px;
}

.sidePlan__price{ margin: 16px 0 14px; }
.sidePlan__amount{ font-size: 30px; font-weight: 950; }
.sidePlan__sub{ margin-top: 6px; color: var(--muted); font-size: 14px; }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px){
  :root{ --topbarH: 74px; }
  .nav{ display:none; }
  .burger{ display:block; }

  .container{ width: min(var(--container), calc(100% - 36px)); }
  .container{ padding: 0 18px; }

  .hero__grid{ grid-template-columns: 1fr; }
  .hero__title{ font-size: 48px; }

  .process__grid{ grid-template-columns: 1fr; }
  .baCard{ max-width: 100%; }

  .cards3{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }

  .formGrid{ grid-template-columns: 1fr; }
  .backLink{ text-align:left; }
}

@media (max-width: 520px){

  /* Container spacing */
  .container{
    padding: 0 0;
  }

  /* HERO */
  .hero{
    padding: 0 0 50px; /* en üst boşluk küçülsün */
  }

  .hero__title{
    font-size: 60px;
  }

  /* Lead + sub daha okunabilir */
  .hero__lead,
  .hero__sub{
    font-size: 16px;
  }

  /* DONUT + LEGEND (yanyana kalsın, taşmasın) */
  .donutBlock{
    gap: 20px;
  }

  .donut{
    width: 150px;
    height: 150px;
    flex: 0 0 0; /* 🔥 sabit boyut, shrink yok */
  }

  .dot{
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
  }

  .donutLegend{
    font-size: 16px;
    gap: 14px;
  }

  /* Other sections */
  .bigTitle{
    font-size: 44px;
  }

  .formTitle{
    font-size: 40px;
  }

  .step{
    grid-template-columns: 1fr;
  }

  .hero__grid,
.donutBlock{
  min-width: 0;
}
  .hero__grid{
    gap: 80px;
  }
}