:root{
  --brand:#0ea5e9;
  --brand2:#38bdf8;
  --navy:#0B1F3B;
  --bg:#f6f8fc;
  --card:#ffffff;
  --text:#0f172a;
  --muted:rgba(2,6,23,.62);
  --border:rgba(2,6,23,.10);
  --shadow: 0 10px 28px rgba(2,6,23,.10);
  --radius:18px;

  /* Logo (home’daki ayarlar) */
  --logo-height:58px;
  --logo-scale:1.55;
  --logo-clip-top:30%;
  --logo-clip-right:18%;
  --logo-clip-bottom:30%;
  --logo-clip-left:6%;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }

/* NAV */
.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.90);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:78px; gap:16px;
}
.brand{ display:flex; align-items:center; padding:10px 0; min-width:220px; }
.brand img{
  height:var(--logo-height);
  width:auto;
  object-fit:contain;
  transform-origin:left center;
  transform:scale(var(--logo-scale));
  clip-path: inset(var(--logo-clip-top) var(--logo-clip-right) var(--logo-clip-bottom) var(--logo-clip-left));
  -webkit-clip-path: inset(var(--logo-clip-top) var(--logo-clip-right) var(--logo-clip-bottom) var(--logo-clip-left));
}
.nav-links{
  display:flex; align-items:center; gap:18px;
  flex-wrap:wrap; justify-content:flex-end;
}
.nav-links a{
  font-weight:600; font-size:.95rem;
  color:rgba(2,6,23,.82);
  padding:10px 10px; border-radius:12px;
  white-space:nowrap;
}
.nav-links a:hover{ background:rgba(2,6,23,.04); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 16px; border-radius:14px;
  font-weight:800; border:1px solid transparent;
  cursor:pointer;
  transition:transform .05s ease, filter .15s ease, background .15s ease;
  user-select:none; white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{
  background:var(--brand); color:#fff;
  box-shadow:0 10px 22px rgba(14,165,233,.25);
}
.btn-primary:hover{ filter:brightness(.97); }
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.35);
  color:#fff;
}
.btn-ghost:hover{ background:rgba(255,255,255,.12); }

/* MOBILE NAV */
.nav-toggle{ display:none; }
.burger{
  display:none; align-items:center; justify-content:center;
  width:44px; height:44px; border-radius:14px;
  border:1px solid var(--border);
  background:#fff; cursor:pointer; flex:0 0 auto;
}
.burger svg{ width:22px; height:22px; }

@media (max-width: 920px){
  :root{
    --logo-height:52px;
    --logo-scale:1.45;
    --logo-clip-top:30%;
    --logo-clip-right:1%;
    --logo-clip-bottom:30%;
    --logo-clip-left:6%;
  }
  .burger{ display:inline-flex; }
  .nav-inner{ flex-wrap:wrap; min-height:74px; }
  .nav-links{
    display:none; width:100%;
    flex-direction:column; align-items:stretch;
    padding:12px 0 16px;
    border-top:1px solid var(--border);
  }
  .nav-links a{ padding:12px 12px; }
  .nav-toggle:checked ~ .nav-links{ display:flex; }
}

/* HERO (taşmayı engelledik) */
.hero{
  position:relative;
  color:#fff;
  overflow:hidden;
  border-bottom:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(56,189,248,.24), transparent 60%),
    linear-gradient(120deg, rgba(2,6,23,.88), rgba(2,6,23,.55)),
    url("/img/hero.png");
  background-size:cover;
  background-position:center;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  padding:92px 0;
  align-items:center;

  /* kritik: kartlar taşmasın */
  min-width:0;
}
.hero-inner > *{ min-width:0; }

@media (max-width: 980px){
  .hero-inner{
    grid-template-columns:1fr;
    padding:72px 0;
  }
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(14,165,233,.16);
  border:1px solid rgba(14,165,233,.35);
  font-weight:600;
  font-size:.92rem;
  width:max-content;
  max-width:100%;
  flex-wrap:wrap;
}
h1{
  margin:14px 0 0;
  font-size:clamp(2.0rem, 4vw, 3.15rem);
  line-height:1.08;
  letter-spacing:-.02em;
}
.lead{
  margin:14px 0 18px;
  max-width:62ch;
  color:rgba(255,255,255,.92);
  font-size:1.06rem;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.checks{
  margin:18px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:8px;
  color:rgba(255,255,255,.92);
  font-weight:700;
  font-size:.95rem;
}
.note{
  margin-top:16px;
  padding:12px 14px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.28);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.92);
  font-size:.95rem;
  max-width:72ch;
}

/* CARD */
.card{
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius);
  box-shadow:0 18px 40px rgba(2,6,23,.18);
  color:var(--text);
  min-width:0;
}
.card-pad{ padding:22px; }
.card h2,.card h3{ margin:0; }
.muted{ color:var(--muted); }

/* FORM */
.form-grid{ display:grid; gap:12px; }
.field label{
  display:block;
  font-weight:650;
  font-size:.92rem;
  margin-bottom:6px;
  color:rgba(2,6,23,.82);
}
.input, .select, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(2,6,23,.12);
  padding:12px 12px;
  font:inherit;
  background:#fff;
  outline:none;
}
.input:focus, .select:focus, textarea:focus{
  border-color: rgba(14,165,233,.55);
  box-shadow: 0 0 0 4px rgba(14,165,233,.14);
}
textarea{ resize:vertical; min-height:110px; }

/* SECTIONS (daha derli toplu) */
.section{ padding:56px 0; }
.section + .section{ border-top:1px solid rgba(2,6,23,.06); }
.section h2{
  margin:0 0 6px;
  font-size:1.65rem;
  letter-spacing:-.01em;
  font-weight:850;
}
.section p{ margin:0; }
.section p.muted{ max-width:74ch; }

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:18px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  margin-top:18px;
}
@media (max-width: 980px){
  .grid-3{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; }
}

.mini{
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  border-radius:var(--radius);
  padding:20px;
  box-shadow:none;
}
.mini-head{
  display:flex;
  gap:10px;
  align-items:center;
  margin-bottom:6px;
}
.pill{
  width:44px; height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:rgba(14,165,233,.12);
  border:1px solid rgba(2,6,23,.08);
  font-weight:900;
  color:#0369a1;
}

/* FAQ */
.faq{ margin-top:18px; display:grid; gap:10px; }
details{
  background:#fff;
  border:1px solid var(--border);
  border-radius:16px;
  padding:12px 14px;
}
summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
summary::-webkit-details-marker{ display:none; }
.faq p{ margin:10px 0 0; color:var(--muted); }

/* FOOTER */
footer{
  background:#0b1220;
  color:rgba(255,255,255,.85);
  padding:46px 0;
}
.foot-grid{
  display:grid;
  grid-template-columns: 1.3fr .8fr .9fr;
  gap:18px;
  align-items:start;
}
@media (max-width: 980px){
  .foot-grid{ grid-template-columns:1fr; }
}
.foot-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:8px;
}
.foot-brand img{ height:38px; width:auto; object-fit:contain; }
.foot-links{ display:grid; gap:8px; font-size:.95rem; }
.hr{
  margin:18px 0;
  height:1px;
  background:rgba(255,255,255,.12);
  border:0;
}
.foot-bottom{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:space-between;
  font-size:.92rem;
}
.foot-bottom a{ text-decoration:underline; text-decoration-color:rgba(255,255,255,.35); }
.foot-bottom a:hover{ text-decoration-color:#fff; }

/* WhatsApp */
.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transform: translateZ(0);
}
.wa-float img{ height:56px; width:auto; display:block; }
@media (max-width: 520px){
  .wa-float img{ height:52px; }
  .wa-float{ right:14px; bottom:14px; }
}

/* Map wrapper (kırılmayı engeller) */
.map-wrap{
  aspect-ratio:16/9;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(2,6,23,.10);
  background:#eef2ff;
}
.map-wrap iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}