/* =========================================================
   GLOBAL DEĞİŞKENLER
========================================================= */
:root{
  --bg:#fdfaf7;
  --primary:#e07a5f;
  --secondary:#81b29a;
  --accent:#f2cc8f;
  --dark:#2f2f2f;
  --muted:#6b7280;
  --card:#ffffff;
}

/* =========================================================
   RESET & GLOBAL
========================================================= */
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
/* NAV BASE */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-menu {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 900px) {
  .brand span {
    display: none; /* hide long text */
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 20px;
    background: #fff;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Manrope',sans-serif;
  background:linear-gradient(180deg,#fdfaf7,#fff);
  color:var(--dark);
  line-height:1.75;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  max-width:1180px;
  margin:auto;
  padding:0 22px;
}

/* =========================================================
   NAV / MENÜ
========================================================= */
nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 0;
}

nav ul{
  display:flex;
  gap:28px;
  list-style:none;
  align-items:center;
}

nav a{
  font-weight:500;
  color:var(--muted);
}

/* LOGO / BRAND */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:600;
  font-size:17px;
  color:var(--dark);
}

.brand img{
  height:36px;
}

/* ALT MENÜ */
.nav-bottom{
  border-top:1px dashed #f0e6de;
  margin-top:30px;
  padding-top:18px;
}

.nav-bottom nav{
  padding:0;
}

.nav-bottom nav ul{
  justify-content:center;
}

/* =========================================================
   HERO
========================================================= */
header{
  padding:40px 0 20px;
}

.hero{
  background:linear-gradient(135deg,#fff1e6,#fef6ec);
  border:1px solid #f1e7df;
  border-radius:26px;
  padding:34px;
}

.hero h1{
  font-size:40px;
  margin-bottom:10px;
  line-height:1.2;
}

.hero p{
  color:var(--muted);
  font-size:16px;
  max-width:980px;
}

/* =========================================================
   SECTIONS
========================================================= */
section{
  padding:60px 0;
}

/* =========================================================
   BİLGİ MERKEZİ GRID / CARD
========================================================= */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}

.card{
  background:var(--card);
  border:1px solid #f1f1f1;
  border-radius:22px;
  padding:26px;
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card h3{
  font-size:18px;
  margin-bottom:10px;
}

.card p{
  color:var(--muted);
  font-size:14px;
}

/* =========================================================
   MAKALE (ARTICLE)
========================================================= */
article{
  max-width:900px;
  margin:auto;
}

article h2{
  font-size:28px;
  margin:44px 0 14px;
}

article h3{
  font-size:22px;
  margin:28px 0 10px;
}

article p{
  margin-bottom:16px;
  color:#444;
}

article ul{
  margin:14px 0 14px 18px;
}

article li{
  margin-bottom:8px;
  color:#444;
}

/* BİLGİ NOTU */
.note{
  background:#fff;
  border:1px solid #f1f1f1;
  border-radius:18px;
  padding:18px;
  color:var(--muted);
  margin:22px 0;
}

/* SEO TEXT LINK */
.seo-link{
  color:var(--dark);
  font-weight:600;
  text-decoration:underline;
  text-decoration-color:rgba(224,122,95,.35);
  text-underline-offset:3px;
}

/* =========================================================
   CTA / İLETİŞİM FORMU
========================================================= */
.cta{
  background:linear-gradient(135deg,#fff1e6,#fef6ec);
  border-radius:28px;
  padding:60px;
  max-width:980px;
  margin:auto;
  text-align:center;
  border:1px solid #f1e7df;
}

.cta h2{
  font-size:32px;
  margin-bottom:12px;
  line-height:1.25;
}

.cta p{
  color:var(--muted);
  margin-bottom:34px;
  font-size:16px;
}

/* FORM */
.cta form{
  max-width:720px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.cta input,
.cta textarea{
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  font-size:15px;
  font-family:'Manrope',sans-serif;
  background:#fff;
}

.cta textarea{
  grid-column:1 / 3;
  resize:vertical;
}

.cta button{
  grid-column:1 / 3;
  padding:16px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}

.cta button:hover{
  opacity:.92;
}

/* =========================================================
   FOOTER
========================================================= */
footer{
  padding:50px 0;
  color:var(--muted);
  font-size:14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media(max-width:900px){
  .hero{
    padding:28px;
  }
  .cta{
    padding:40px 26px;
  }
  .cta form{
    grid-template-columns:1fr;
  }
  .cta textarea,
  .cta button{
    grid-column:1;
  }
}

@media(max-width:600px){
  .brand span{
    font-size:15px;
  }
  .brand img{
    height:30px;
  }
  .hero h1{
    font-size:32px;
  }
  article h2{
    font-size:24px;
  }
}
}

/* =========================================================
   HOME PAGE (index.html) - scoped styles
   Not: Diğer sayfaları etkilememesi için .home ile sınırlıdır.
========================================================= */
.home header{
  padding:44px 0 40px;
}

.home .hero{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:48px;
  align-items:center;
  background:linear-gradient(135deg,#fff1e6,#fef6ec);
  border:1px solid #f1e7df;
  border-radius:28px;
  padding:42px;
  overflow:hidden;
}

.home .hero h1{
  font-size:44px;
  line-height:1.15;
  letter-spacing:-.02em;
  margin-bottom:16px;
}

.home .hero p{
  font-size:17px;
  color:var(--muted);
  margin-bottom:26px;
}

.home .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 28px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--primary),var(--accent));
  color:#fff;
  font-weight:700;
  box-shadow:0 10px 24px rgba(224,122,95,.18);
  transition:.25s;
}

.home .btn:hover{ transform:translateY(-1px); }

.home .mockup{
  background:linear-gradient(180deg,#f3eee9,#fff);
  border:1px solid #eee;
  border-radius:24px;
  height:340px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#9ca3af;
  position:relative;
  overflow:hidden;
}

.home .mockup::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle at 20% 20%, rgba(129,178,154,.22), transparent 55%),
             radial-gradient(circle at 80% 30%, rgba(242,204,143,.28), transparent 55%),
             radial-gradient(circle at 55% 85%, rgba(224,122,95,.20), transparent 55%);
  filter:blur(2px);
}

.home .mockup > *{ position:relative; }

.home section{
  padding:64px 0;
}

.home h2{
  font-size:28px;
  letter-spacing:-.01em;
  margin-bottom:12px;
}

.home section > p{
  color:var(--muted);
  max-width:900px;
  margin-bottom:22px;
}

/* TRUST */
.home .trust{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

.home .trust-item{
  background:var(--card);
  padding:26px;
  border-radius:20px;
  border:1px solid #f1f1f1;
  box-shadow:0 10px 20px rgba(20,20,20,.04);
}

.home .trust-item strong{
  display:block;
  margin-bottom:8px;
}

/* FEATURES */
.home .features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:22px;
}

.home .feature{
  background:var(--card);
  padding:28px;
  border-radius:22px;
  border:1px solid #f1f1f1;
  box-shadow:0 10px 20px rgba(20,20,20,.04);
}

.home .feature h3{ margin-bottom:8px; }

/* DETAIL SECTIONS */
.home .detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}

.home .detail ul{
  margin-top:14px;
  padding-left:18px;
  color:var(--muted);
}

/* PARTNERS */
.partners{
  padding:70px 0;
  text-align:center;
}
.partners h2{
  font-size:28px;
  margin-bottom:12px;
  letter-spacing:-.01em;
}
.partners p{
  color:var(--muted);
  max-width:760px;
  margin:0 auto 34px;
}

/* Tek satır logo şeridi (desktop'ta tek satır, mobilde yatay kaydırma) */
.partner-logos{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:10px 8px;
  border:1px solid #f1e7df;
  background:linear-gradient(180deg,#ffffff,#fffaf5);
  border-radius:22px;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:thin;
}

.partner-logos img{
  height:54px;
  width:auto;
  flex:0 0 auto;
  object-fit:contain;
  opacity:.70;
  filter:grayscale(100%);
  transition:all .25s ease;
}

.partner-logos img:hover{
  opacity:1;
  filter:none;
  transform:translateY(-1px);
}

@media(max-width:900px){
  .home .hero{ grid-template-columns:1fr; padding:30px; }
  .home .detail{ grid-template-columns:1fr; }
}

@media(max-width:600px){
  .home .hero h1{ font-size:34px; }
  .partner-logos{ justify-content:flex-start; }
}
