:root{
  --bg: #f5fbf7;
  --bg-2:#eef8f2;
  --surface:#ffffff;
  --surface-2:#f9fffb;
  --text:#0b1b12;
  --muted:#476555;
  --border: rgba(16, 60, 36, .12);
  --shadow: 0 18px 55px rgba(9, 26, 16, .10);
  --shadow-2: 0 10px 24px rgba(9, 26, 16, .08);
  --radius: 18px;
  --radius-sm: 14px;

  --green-700:#0f6a43;
  --green-600:#138a57;
  --green-500:#16a34a;
  --green-400:#34d399;
  --green-300:#86efac;

  --accent: var(--green-600);
  --accent-2: #2dd4bf;
  --warning:#f59e0b;
}

*{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, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(52, 211, 153,.25), transparent 60%),
    radial-gradient(900px 460px at 90% 0%, rgba(45, 212, 191,.14), transparent 55%),
    radial-gradient(900px 520px at 40% 115%, rgba(22, 163, 74,.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height:1.55;
}

a{color:inherit}
img{max-width:100%; display:block}
.container{max-width:1120px; margin:0 auto; padding:0 20px}
.muted{color:var(--muted)}
.small{font-size:13px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(22, 163, 74, .10);
  border:1px solid rgba(22, 163, 74, .18);
  color: var(--green-700);
  font-weight:800;
  font-size:13px;
}
.dot{
  width:8px; height:8px; border-radius:999px;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .18);
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(245, 251, 247, .78);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.logo{
  width:40px; height:40px;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(22, 163, 74, .95), rgba(45, 212, 191, .90));
  box-shadow: 0 12px 28px rgba(19, 138, 87, .18);
  border:1px solid rgba(15, 106, 67, .15);
  overflow:hidden;
  display:grid; place-items:center;
}
.logo img{width:100%; height:100%; object-fit:cover}
.brandTitle{
  font-weight:900; letter-spacing:-.2px;
}
.brandTitle small{
  display:block;
  font-weight:700;
  color:var(--muted);
  letter-spacing:0;
  margin-top:2px;
  font-size:12.5px;
}
.menu{display:flex; align-items:center; gap:18px}
.menu a{
  color:var(--muted);
  font-weight:800;
  font-size:14px;
  text-decoration:none;
}
.menu a:hover{color:var(--text)}
.menu a.active{color:var(--green-700)}
.ctaRow{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow-2);
  color:var(--text);
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  white-space:nowrap;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(9, 26, 16, .10);
  background: rgba(255,255,255,.78);
  border-color: rgba(22, 163, 74, .22);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(22, 163, 74, .95), rgba(45, 212, 191, .92));
  color:#052012;
  border-color: rgba(15, 106, 67, .20);
}
.btn.ghost{
  background: rgba(255,255,255,.0);
}
.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.60);
  cursor:pointer;
  font-size:18px;
}
.mobileMenu{
  display:none;
  padding:0 0 14px;
}
.mobileMenu a{
  display:block;
  padding:12px 12px;
  border-radius:16px;
  background: rgba(255,255,255,.65);
  border:1px solid var(--border);
  color:var(--muted);
  text-decoration:none;
  font-weight:900;
  margin-top:10px;
}
.mobileMenu a:hover{color:var(--text)}
.mobileMenu.show{display:block}

.hero{
  padding:56px 0 22px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:18px;
  align-items:stretch;
}
.panel{
  background: rgba(255,255,255,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.heroMain{padding:26px; position:relative; overflow:hidden}
.heroMain::after{
  content:"";
  position:absolute; inset:-120px -120px auto auto;
  width:320px; height:320px;
  background: radial-gradient(circle at 40% 40%, rgba(22, 163, 74,.25), transparent 60%);
  transform: rotate(12deg);
}
h1{
  margin:14px 0 10px;
  font-size:46px;
  line-height:1.05;
  letter-spacing:-.9px;
}
.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16.5px;
}
.heroActions{display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 10px}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.55);
  color: var(--muted);
  font-weight:800;
  font-size:13px;
}
.heroSide{
  display:flex; flex-direction:column; gap:12px;
  padding:16px;
}
.stats{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.stat{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.70);
}
.stat b{display:block; font-size:18px}
.stat span{color:var(--muted); font-weight:800; font-size:12.5px}
.callout{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(22, 163, 74, .18);
  background: linear-gradient(180deg, rgba(22, 163, 74, .08), rgba(255,255,255,.55));
}
.callout h3{margin:0 0 8px; font-size:16px}
.callout p{margin:0; color:var(--muted)}
.heroArt{
  border-radius: var(--radius);
  border:1px dashed rgba(22, 163, 74, .22);
  background: rgba(255,255,255,.55);
  overflow:hidden;
}

.section{padding:34px 0}
.sectionHeader{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px;
  margin-bottom:16px;
}
.sectionHeader h2{margin:0; font-size:26px; letter-spacing:-.2px}
.sectionHeader p{margin:0; color:var(--muted); max-width:640px}

.grid3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}
.card{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow-2);
}
.card h3{margin:8px 0 8px; font-size:17px}
.card p{margin:0; color:var(--muted)}
.icon{
  width:46px; height:46px;
  border-radius:16px;
  display:grid; place-items:center;
  background: rgba(22, 163, 74, .10);
  border:1px solid rgba(22, 163, 74, .18);
}

.kpis{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:12px;
}
.kpi{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow-2);
}
.kpi b{display:block; font-size:22px; letter-spacing:-.2px}
.kpi span{color:var(--muted); font-weight:800; font-size:12.5px}

.steps{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}
.step{
  display:flex; gap:12px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.70);
  box-shadow: var(--shadow-2);
}
.num{
  width:40px; height:40px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:900;
  color: var(--green-700);
  background: rgba(22, 163, 74, .12);
  border:1px solid rgba(22, 163, 74, .20);
  flex: 0 0 auto;
}
.step b{display:block}
.step span{color:var(--muted); font-weight:800}

.quote{
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-2);
}
.quote p{margin:0; color:var(--muted)}
.quote b{display:block; margin-top:10px}

details{
  background: rgba(255,255,255,.70);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px 16px;
  box-shadow: var(--shadow-2);
}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
summary::-webkit-details-marker{display:none}
details p{margin:10px 0 0; color:var(--muted)}
.notice{
  padding:14px 16px;
  border-radius: var(--radius);
  border:1px solid rgba(245, 158, 11, .22);
  background: rgba(245, 158, 11, .09);
}
.notice b{color:#7a4d00}

.formGrid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
label{display:block; font-weight:900; margin:10px 0 6px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.82);
  color: var(--text);
  outline:none;
  font-size:14.5px;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color: rgba(22, 163, 74, .32);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .12);
}

.footer{
  padding:26px 0 34px;
  border-top:1px solid var(--border);
  background: rgba(255,255,255,.45);
}
.footerRow{
  display:flex; flex-wrap:wrap;
  align-items:center; justify-content:space-between;
  gap:12px;
}
.footerLinks{display:flex; gap:14px; flex-wrap:wrap}
.footerLinks a{color:var(--muted); font-weight:900; text-decoration:none}
.footerLinks a:hover{color:var(--text)}
.hr{height:1px; background: var(--border); margin:14px 0}

.cookie{
  position:fixed; left:18px; right:18px; bottom:18px;
  max-width: 980px;
  margin:0 auto;
  z-index:100;
  display:none;
}
.cookie.show{display:block}
.cookieBox{
  display:flex; flex-wrap:wrap;
  gap:12px; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-radius: 20px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.90);
  box-shadow: 0 18px 55px rgba(9, 26, 16, .14);
}
.cookieBox p{margin:0; color:var(--muted); font-weight:800; max-width:720px}
.cookieActions{display:flex; gap:10px; flex-wrap:wrap}

@media (max-width: 980px){
  .heroGrid{grid-template-columns:1fr}
  h1{font-size:38px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .kpis{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr}
  .menu{display:none}
  .hamburger{display:inline-grid; place-items:center}
  .formGrid{grid-template-columns:1fr}
}
@media (max-width: 520px){
  h1{font-size:34px}
  .kpis{grid-template-columns:1fr}
}
/* Wordmark (yatay) logo için */
.logo--wordmark{
  width: auto;
  height: 52px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  display: flex;
  align-items: center;
}
.logo--wordmark img{
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Wordmark kullandığımızda sağdaki metni gizle */
.brandTitle{ display: none; }

@media (max-width: 980px){
  .logo--wordmark, .logo--wordmark img{ height: 42px; }
}
