/* Entegre Takip – ortak stil (revize) */
:root{
  --bg: radial-gradient(60% 60% at 50% -10%, rgb(247 250 252), transparent 60%),
        linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);

  --text:#0b1220;
  --muted:#5c677a;

  --line: rgba(15, 23, 42, .10);
  --line2: rgba(15, 23, 42, .07);

  --card: rgba(255,255,255,.78);
  --card2: rgba(255,255,255,.66);

  --shadow: 0 24px 70px rgba(2, 6, 23, .10);
  --shadow2: 0 14px 36px rgba(2, 6, 23, .08);
  --shadow3: 0 8px 18px rgba(2, 6, 23, .08);

  --radius: 24px;
  --radius2: 18px;
  --radius3: 14px;

  --accent1: #22c55e;
  --accent2: #a78bfa;
  --accent3: #06b6d4;
  --accent4: #fb7185;

  --btn-h: 44px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
a{color:inherit;text-decoration:none}
.container{width:min(1180px, 92vw); margin:0 auto}

/* =======================
   TOPBAR / NAV
======================= */
.topbar{
  position:sticky; top:0; z-index:40;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.70);
  border-bottom: 1px solid var(--line2);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:850;
  letter-spacing:-.4px;
}
.logo{
  width:38px; height:38px; border-radius:14px;
  background: linear-gradient(135deg, rgba(34,197,94,.22), rgba(167,139,250,.22), rgba(6,182,212,.22));
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: var(--shadow3);
  position:relative;
}
.logo:after{
  content:""; position:absolute; inset:8px; border-radius:12px;
  background: linear-gradient(135deg, rgba(34,197,94,.32), rgba(251,113,133,.22));
  filter:saturate(1.1);
}

.navlinks{
  display:flex; gap:10px; align-items:center; flex-wrap:wrap;
}
.navlinks a{
  font-size:14px;
  color: rgba(11,18,32,.76);
  padding:10px 12px;
  border-radius:999px;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
  position:relative;
}
.navlinks a:hover{
  background: rgba(2,6,23,.05);
  color: rgba(11,18,32,.90);
}
.navlinks a:active{transform: translateY(1px)}

.actions{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

/* =======================
   BUTTONS
======================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  height: var(--btn-h);
  padding: 0 16px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow3);
  font-weight:750;
  font-size:14px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
  will-change: transform;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
  border-color: rgba(15,23,42,.14);
}
.btn:active{transform: translateY(0px)}

.btn.primary{
  border: 1px solid rgba(2,6,23,.10);
  background:
    linear-gradient(135deg,
      rgba(6,182,212,.22),
      rgba(167,139,250,.18),
      rgba(34,197,94,.14)
    );
}
.btn.primary:hover{
  background:
    linear-gradient(135deg,
      rgba(6,182,212,.28),
      rgba(167,139,250,.22),
      rgba(34,197,94,.18)
    );
}
.btn.dark{
  background: rgba(2,6,23,.92);
  color:#fff;
  border-color: rgba(255,255,255,.12);
}
.btn.dark:hover{
  background: rgba(2,6,23,.96);
  border-color: rgba(255,255,255,.16);
}

/* =======================
   HERO
======================= */
.hero{
  padding: 78px 0 30px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 28px;
  align-items:stretch;
}
@media (max-width: 940px){
  .hero{padding: 52px 0 20px;}
  .heroGrid{grid-template-columns:1fr}
}

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line2);
  color: rgba(11,18,32,.76);
  font-size:13px;
  font-weight:650;
  box-shadow: 0 10px 26px rgba(2,6,23,.06);
}
.kdot{
  width:9px;height:9px;border-radius:50%;
  background: linear-gradient(135deg, var(--accent3), var(--accent2));
}

h1{
  margin:14px 0 12px;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height:1.05;
  letter-spacing:-1.1px;
  color:#0b1220; /* başlıkta mavi yok */
}
.lead{
  margin:0 0 18px;
  color: rgba(92,103,122,.95);
  font-size: 16.5px;
  line-height:1.65;
  max-width: 62ch;
}

.heroUnderline{ margin-top:10px; height:20px; }
.heroUnderline svg{width:100%; height:100%}
.path{
  stroke: rgba(6,182,212,.50);
  stroke-width: 8;
  fill:none;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: draw 1.2s ease forwards;
}
@keyframes draw{to{stroke-dashoffset:0}}

/* =======================
   CARDS / FEATURES
======================= */
.card{
  background: var(--card);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cardTitle{
  font-weight:900;
  letter-spacing:-.35px;
  margin:0 0 10px;
  color:#0b1220;
}
.small{
  color: rgba(92,103,122,.95);
  font-size:14px;
  line-height:1.6;
}

.badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.badge{
  padding:10px 13px;
  border-radius:999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.74);
  font-size:13px;
  font-weight:800;
  box-shadow: 0 10px 26px rgba(2,6,23,.05);
}
.badge b{font-weight:950}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}
@media (max-width: 920px){ .grid3{grid-template-columns:1fr} }

.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
@media (max-width: 920px){ .grid2{grid-template-columns:1fr} }

.feature{
  padding:18px 18px 16px;
  border-radius: var(--radius2);
  border:1px solid rgba(15,23,42,.10);
  background: var(--card2);
  box-shadow: var(--shadow3);
  position:relative;
  overflow:hidden;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.feature:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
  border-color: rgba(15,23,42,.12);
}
.feature:before{
  content:"";
  position:absolute; inset:-90px -100px auto auto;
  width:190px;height:190px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(167,139,250,.22), transparent 58%);
}
.feature:after{
  content:"";
  position:absolute; inset:auto auto -90px -90px;
  width:170px;height:170px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(6,182,212,.18), transparent 60%);
}
.feature h3{
  margin:0 0 8px;
  font-size:16px;
  letter-spacing:-.2px;
  color:#0b1220;
}
.feature p{
  margin:0;
  color: rgba(92,103,122,.96);
  font-size:14px;
  line-height:1.6;
}

/* =======================
   SECTIONS
======================= */
.section{padding: 34px 0}
.sectionHead{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom:14px;
}
h2{
  margin:0;
  font-size: clamp(22px, 2.7vw, 30px);
  letter-spacing:-.55px;
  color:#0b1220;
}
.sub{
  margin:0;
  color: rgba(92,103,122,.95);
  font-size:14.5px;
  line-height:1.65;
  max-width: 62ch;
}

.split{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:16px; align-items:stretch;
}
@media (max-width: 920px){ .split{grid-template-columns:1fr} }

/* =======================
   CTA
======================= */
.cta{
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(15,23,42,.10);
  background:
    linear-gradient(135deg,
      rgba(34,197,94,.12),
      rgba(6,182,212,.12),
      rgba(167,139,250,.10)
    );
  box-shadow: var(--shadow);
  display:flex; align-items:center; justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.cta strong{
  font-size:18px;
  letter-spacing:-.3px;
  color:#0b1220;
}
.cta span{
  color: rgba(92,103,122,.95);
  display:block;
  margin-top:4px;
}

/* =======================
   FOOTER
======================= */
.footer{
  margin-top: 44px;
  border-top: 1px solid var(--line2);
  background: rgba(255,255,255,.60);
  padding: 26px 0;
}
.footerGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap:16px;
}
@media (max-width: 920px){ .footerGrid{grid-template-columns:1fr} }

.footer h4{margin:0 0 10px; color:#0b1220; letter-spacing:-.3px}
.footer a{color: rgba(11,18,32,.82)}
.footer a:hover{text-decoration:underline}
.copy{
  margin-top: 14px;
  color: rgba(92,103,122,.9);
  font-size:13px;
}

/* =======================
   BREADCRUMB
======================= */
.breadcrumb{
  display:flex; gap:10px; flex-wrap:wrap;
  font-size:13px;
  color: rgba(92,103,122,.95);
  margin-top: 10px;
}
.breadcrumb a{
  color: rgba(11,18,32,.82);
  text-decoration:underline;
  text-decoration-color: rgba(6,182,212,.22);
}
.breadcrumb a:hover{text-decoration-color: rgba(6,182,212,.50)}

/* =======================
   REVEAL
======================= */
.reveal{opacity:0; transform: translateY(10px); transition: .65s var(--ease)}
.reveal.is-in{opacity:1; transform:none}

/* =======================
   TABLE
======================= */
.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow3);
}
.table th,.table td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(15,23,42,.08);
  text-align:left;
  font-size:14px;
}
.table th{color:#0b1220}
.table td{color: rgba(92,103,122,.95)}
.table tr:last-child td{border-bottom:none}

/* =======================
   FAQ (tek açık)
======================= */
.faq{
  border-radius: var(--radius);
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.faq-item{border-top:1px solid rgba(15,23,42,.08)}
.faq-item:first-child{border-top:none}
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  background: transparent;
  border:none;
  font-weight:900;
  letter-spacing:-.2px;
  cursor:pointer;
  color:#0b1220;
}
.faq-icon{
  width:34px;height:34px;border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  display:grid; place-items:center;
  background: rgba(255,255,255,.74);
  transition: transform .25s var(--ease);
}
.faq-a{
  height:0;
  overflow:hidden;
  transition: height .25s var(--ease);
}
.faq-aInner{
  padding: 0 18px 16px;
  color: rgba(92,103,122,.96);
  font-size:14.5px;
  line-height:1.65;
}
.faq-item.is-open .faq-icon{transform: rotate(45deg)}

/* =======================
   MOBILE NAV (küçük düzeltme)
   - toggle butonu zaten HTML'de var
======================= */
@media (max-width: 900px){
  .nav{gap:12px}
  .navlinks{
    display:none; /* JS toggle açacak */
    width:100%;
    padding: 10px 0 12px;
    gap:8px;
    border-top: 1px solid var(--line2);
    margin-top: 10px;
  }
  .navlinks.is-open{display:flex}
  .navlinks a{width:100%; justify-content:flex-start}
  .actions{margin-left:auto}
}
h1, h2, h3, .cardTitle{
  color: var(--heading);
}

h1{
  font-weight: 900;
  letter-spacing: -1.2px;
}

h2{
  font-weight: 850;
  letter-spacing: -0.7px;
}

.navlinks a{
  font-weight: 650;
  color: rgba(10,16,32,.80);
}

.lead{
  color: var(--muted);
  font-weight: 550;
}

.sub, .small{
  color: var(--muted);
  font-weight: 520;
}
