/* =========================================================
   Sema Şengün | Gayrimenkul Danışmanı
   Tema: Quiet Luxury — Adaçayı Yeşili & Krem (editorial)
   ========================================================= */

:root {
  /* Ana palet */
  --sage:        #6f7a5a;   /* Ana yeşil */
  --sage-2:      #8a9470;   /* Açık yeşil */
  --sage-dark:   #4c5540;   /* Koyu yeşil (blok/section) */
  --olive:       #39412f;   /* En koyu yeşil */
  --cream:       #f4f0e8;   /* Krem zemin */
  --cream-2:     #ebe4d6;   /* Koyu krem yumuşak zemin */
  --cream-3:     #e2d9c7;
  --paper:       #fbf9f3;   /* Kart zemini */
  --ink:         #2c2b26;   /* Yazı */
  --muted:       #7c786c;   /* İkincil yazı */
  --line:        #e4ddcc;   /* Sıcak çizgi */
  --gold:        #b89968;   /* Nadir sıcak vurgu */
  --white:       #ffffff;

  /* Eski değişken köprüleri (uyumluluk) */
  --charcoal:    var(--olive);
  --charcoal-800:var(--sage-dark);
  --charcoal-700:var(--sage-dark);
  --gold-2:      var(--sage-2);
  --gold-dark:   var(--sage-dark);
  --navy:        var(--olive);
  --navy-800:    var(--sage-dark);
  --navy-600:    var(--sage);
  --red:         var(--sage);
  --red-dark:    var(--sage-dark);
  --blue:        var(--sage);
  --bg:          var(--cream);
  --bg-soft:     var(--cream-2);
  --bg-softer:   var(--cream-3);

  --shadow-sm: 0 1px 3px rgba(57,65,47,.06);
  --shadow:    0 12px 32px rgba(57,65,47,.10);
  --shadow-lg: 0 28px 60px rgba(57,65,47,.16);

  --radius:    16px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1200px;
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --t: .34s cubic-bezier(.2,.7,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--cream);
  line-height: 1.7; font-size: 17px; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--sage); color: #fff; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.08; color: var(--olive); font-weight: 700; letter-spacing: 0; }
h1 { font-size: clamp(2.8rem, 6.2vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.5rem; }
.script { font-style: italic; font-weight: 600; color: var(--sage); }
p { color: var(--ink); }
.muted { color: var(--muted); }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--sage-dark), var(--sage-2)); z-index: 200; transition: width .1s linear; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-soft { background: var(--cream-2); }
.center { text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--sage); display: inline-block; }
.center .eyebrow { justify-content: center; }
.section-head { max-width: 760px; margin: 0 auto 60px; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head h2 { line-height: 1.05; }
.section-head p { color: var(--muted); font-size: 1.1rem; margin-top: 18px; line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 999px; font-family: var(--font-body); font-weight: 500; font-size: .96rem; letter-spacing: .01em; cursor: pointer; border: 1.5px solid transparent; transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t); white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--sage); color: var(--cream); box-shadow: 0 10px 24px rgba(111,122,90,.28); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 16px 30px rgba(76,85,64,.32); }
.btn-navy { background: var(--olive); color: var(--cream); }
.btn-navy:hover { background: var(--sage-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--olive); border-color: var(--sage); }
.btn-ghost:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-light:hover { background: var(--cream); color: var(--olive); border-color: var(--cream); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(244,240,232,.82); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid var(--line); transition: box-shadow var(--t), background var(--t); }
.site-header.scrolled { box-shadow: var(--shadow-sm); background: rgba(244,240,232,.96); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark { width: 48px; height: 48px; flex: none; display: block; filter: drop-shadow(0 2px 6px rgba(57,65,47,.18)); }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--olive); letter-spacing: .01em; }
.brand-sub { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-dark); font-weight: 700; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { position: relative; padding: 10px 15px; border-radius: 8px; font-weight: 500; font-size: .95rem; color: var(--ink); transition: color var(--t); }
.nav-links a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 1.5px; background: var(--sage); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.nav-links a:hover { color: var(--sage-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--sage-dark); }
.nav-cta { margin-left: 10px; }
.nav-cta a::after { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 24px; height: 2px; background: var(--olive); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); }
.nav-toggle.open span::after { transform: rotate(-45deg); }

/* ---------- Sticky sub-nav (kaydırınca devam eden alt menü) ---------- */
.subnav { position: sticky; top: 80px; z-index: 95; background: rgba(235,228,214,.9); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.subnav-inner { display: flex; align-items: center; gap: 6px; height: 56px; overflow-x: auto; scrollbar-width: none; }
.subnav-inner::-webkit-scrollbar { display: none; }
.subnav a { white-space: nowrap; font-size: .9rem; color: var(--muted); padding: 8px 16px; border-radius: 999px; font-weight: 500; transition: color var(--t), background var(--t); }
.subnav a:hover, .subnav a.active { color: var(--cream); background: var(--sage); }
.subnav .sub-cta { margin-left: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: #fff; background: linear-gradient(180deg, rgba(57,65,47,.30) 0%, rgba(57,65,47,.15) 40%, rgba(57,65,47,.55) 100%), var(--sage-dark); background-size: cover; background-position: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(1000px 500px at 80% 120%, rgba(57,65,47,.5), transparent 60%); }
.hero-inner { position: relative; z-index: 2; max-width: 860px; padding: 120px 0 90px; text-align: center; margin: 0 auto; }
.hero.left .hero-inner { text-align: left; margin: 0; }
.hero h1 { color: var(--cream); text-shadow: 0 2px 30px rgba(30,35,24,.35); }
.hero h1 .script { color: #eef0e4; }
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,.94); margin: 26px auto 36px; max-width: 620px; text-shadow: 0 1px 16px rgba(30,35,24,.3); }
.hero.left .lead { margin-left: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 9px 18px; border-radius: 999px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); font-size: .8rem; font-weight: 600; letter-spacing: .05em; margin-bottom: 26px; backdrop-filter: blur(4px); color: #fff; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-2); box-shadow: 0 0 0 4px rgba(138,148,112,.35); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero.left .hero-actions { justify-content: flex-start; }
.hero-stats { position: relative; z-index: 2; margin-top: 56px; display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; }
.hero.left .hero-stats { justify-content: flex-start; }
.hero-stats .stat b { font-family: var(--font-head); font-size: 2.6rem; color: var(--cream); display: block; line-height: 1; }
.hero-stats .stat span { font-size: .86rem; color: rgba(255,255,255,.82); letter-spacing: .02em; }

/* ---------- Trust strip ---------- */
.trust { background: var(--olive); color: rgba(255,255,255,.82); padding: 20px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 14px 40px; flex-wrap: wrap; text-align: center; }
.trust-inner span { font-weight: 500; font-size: .92rem; display: inline-flex; align-items: center; gap: 10px; }
.trust-inner .sep { color: var(--sage-2); }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; transition: transform var(--t), box-shadow var(--t), border-color var(--t); overflow: hidden; }
.card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--sage); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ico { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: var(--sage-dark); color: var(--cream); margin-bottom: 22px; }
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ---------- Audience (Alıcı / Satıcı / Yatırımcı) ---------- */
.audience-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff; background: var(--sage-dark); background-size: cover; background-position: center; transition: transform var(--t), box-shadow var(--t); }
.audience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,46,32,.15) 0%, rgba(40,46,32,.55) 55%, rgba(40,46,32,.9) 100%); }
.audience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.audience-card > * { position: relative; z-index: 1; }
.audience-card .tagx { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-2); font-weight: 700; margin-bottom: 8px; }
.audience-card h3 { color: #fff; font-size: 1.9rem; margin-bottom: 12px; }
.audience-card ul { margin: 0 0 20px; }
.audience-card ul li { display: flex; gap: 9px; align-items: flex-start; font-size: .93rem; color: rgba(255,255,255,.88); margin: 7px 0; }
.audience-card ul li svg { flex: none; margin-top: 4px; color: var(--sage-2); }
.audience-card .go { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: #fff; }
.audience-card .go svg { transition: transform var(--t); }
.audience-card:hover .go svg { transform: translateX(4px); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media { border-radius: var(--radius-lg); min-height: 520px; background: linear-gradient(135deg, var(--sage-dark), var(--olive)); background-size: cover; background-position: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.media-badge { position: absolute; left: 24px; bottom: 24px; background: var(--paper); border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; }
.media-badge .ring { width: 50px; height: 50px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); font-size: 1.2rem; }
.media-badge b { display: block; color: var(--olive); font-family: var(--font-head); font-size: 1.15rem; }
.media-badge span { font-size: .8rem; color: var(--muted); }

.check-list li { display: flex; gap: 13px; align-items: flex-start; margin: 15px 0; color: var(--ink); }
.check-list .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; margin-top: 2px; }
.check-list .ck svg { width: 14px; height: 14px; }

/* ---------- Service list ---------- */
.service { display: flex; gap: 22px; align-items: flex-start; padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.service .num { font-family: var(--font-head); font-size: 2.2rem; color: var(--sage); flex: none; line-height: 1; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--sage-dark); color: #fff; border-radius: var(--radius-lg); padding: 58px 40px; position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 300px at 15% -30%, rgba(138,148,112,.4), transparent 60%); }
.stats-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat-item .n { font-family: var(--font-head); font-size: clamp(2.6rem,4.4vw,3.6rem); color: var(--cream); line-height: 1; }
.stat-item .l { color: rgba(255,255,255,.8); font-size: .9rem; margin-top: 10px; letter-spacing: .02em; }
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,.14); }

/* ---------- Blog cards ---------- */
.post { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t); display: flex; flex-direction: column; }
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post .thumb { height: 220px; background: linear-gradient(135deg, var(--sage-dark), var(--olive)); background-size: cover; background-position: center; position: relative; overflow: hidden; }
.post .thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(40,46,32,.35)); }
.post .tag { position: absolute; top: 14px; left: 14px; z-index: 1; background: var(--cream); color: var(--sage-dark); font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; }
.post .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.post .meta { font-size: .8rem; color: var(--muted); margin-bottom: 10px; display: flex; gap: 12px; }
.post h3 { font-size: 1.55rem; margin-bottom: 10px; line-height: 1.15; }
.post h3 a { transition: color var(--t); }
.post h3 a:hover { color: var(--sage-dark); }
.post p { color: var(--muted); font-size: .96rem; flex: 1; }
.post .read { margin-top: 18px; color: var(--sage-dark); font-weight: 600; font-size: .92rem; display: inline-flex; gap: 6px; align-items: center; }
.post .read svg { transition: transform var(--t); }
.post:hover .read svg { transform: translateX(4px); }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; display: flex; flex-direction: column; gap: 16px; transition: transform var(--t), box-shadow var(--t); }
.testimonial:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testimonial .quote { font-family: var(--font-head); font-size: 3rem; color: var(--sage); line-height: .5; }
.testimonial p { color: var(--ink); font-size: 1.02rem; flex: 1; }
.testimonial .stars { color: var(--sage); letter-spacing: 3px; font-size: .95rem; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.testimonial .who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--sage); color: var(--cream); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.testimonial .who b { color: var(--olive); display: block; font-size: .95rem; }
.testimonial .who span { color: var(--muted); font-size: .82rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); margin-bottom: 14px; overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.faq-item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-body); font-weight: 600; font-size: 1.06rem; color: var(--olive); }
.faq-q .pm { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid var(--sage); color: var(--sage-dark); display: grid; place-items: center; transition: transform var(--t), background var(--t), color var(--t); font-size: 1.1rem; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--sage); color: var(--cream); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a .inner { padding: 0 26px 24px; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(130deg, var(--sage-dark), var(--olive)); color: #fff; border-radius: var(--radius-lg); padding: 66px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 320px at 20% -20%, rgba(138,148,112,.45), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 640px; margin: 18px auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero ---------- */
.page-hero { background: linear-gradient(130deg, var(--sage-dark), var(--olive)); color: #fff; padding: 96px 0 76px; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 340px at 80% -30%, rgba(138,148,112,.4), transparent 60%); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); }
.page-hero p { color: rgba(255,255,255,.88); max-width: 660px; margin: 20px auto 0; font-size: 1.08rem; }
.crumbs { font-size: .84rem; color: rgba(255,255,255,.68); margin-bottom: 20px; letter-spacing: .02em; }
.crumbs a:hover { color: var(--cream); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 46px; align-items: start; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; display: flex; gap: 16px; align-items: flex-start; transition: transform var(--t), box-shadow var(--t); }
.info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.info-card .ico { flex: none; width: 50px; height: 50px; border-radius: 13px; background: var(--sage-dark); color: var(--cream); display: grid; place-items: center; }
.info-card b { color: var(--olive); display: block; margin-bottom: 2px; }
.info-card a, .info-card span { color: var(--muted); }
.info-card a:hover { color: var(--sage-dark); }

.form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 7px; color: var(--olive); }
.field input, .field textarea, .field select { width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: inherit; font-size: .97rem; color: var(--ink); background: var(--cream); transition: border-color var(--t), box-shadow var(--t), background var(--t); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--sage); background: #fff; box-shadow: 0 0 0 4px rgba(111,122,90,.14); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 12px; }
.form-status { margin-top: 14px; font-weight: 600; font-size: .95rem; }

/* ---------- Article (grafiksel blog) ---------- */
.article { max-width: 780px; margin: 0 auto; }
.article .lead { font-family: var(--font-head); font-size: 1.6rem; line-height: 1.4; color: var(--sage-dark); font-weight: 600; margin: 0 0 34px; }
.article h2 { font-size: 2rem; margin: 46px 0 16px; padding-left: 20px; position: relative; }
.article h2::before { content: ""; position: absolute; left: 0; top: .1em; bottom: .1em; width: 4px; border-radius: 4px; background: var(--sage); }
.article h3 { margin: 30px 0 10px; color: var(--sage-dark); font-size: 1.5rem; }
.article p { margin: 0 0 20px; font-size: 1.06rem; line-height: 1.8; }
.article a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(111,122,90,.5); }
.article a:hover { text-decoration-color: var(--sage-dark); }
.article ul.dots { list-style: none; padding-left: 0; margin: 0 0 22px; }
.article ul.dots li { position: relative; padding-left: 30px; margin: 12px 0; }
.article ul.dots li::before { content: ""; position: absolute; left: 6px; top: .62em; width: 8px; height: 8px; border-radius: 2px; background: var(--sage); transform: rotate(45deg); }
.article blockquote { border: none; background: var(--sage-dark); color: var(--cream); padding: 28px 32px; border-radius: var(--radius); margin: 32px 0; font-family: var(--font-head); font-style: italic; font-size: 1.5rem; line-height: 1.4; position: relative; }
.article blockquote::before { content: "\201C"; font-size: 3rem; line-height: 0; position: absolute; top: 28px; left: 14px; color: var(--sage-2); opacity: .6; }
.article .figure { height: 400px; border-radius: var(--radius-lg); margin: 8px 0 34px; background: linear-gradient(135deg, var(--sage-dark), var(--olive)); background-size: cover; background-position: center; }
.callout { background: var(--paper); border: 1px solid var(--line); border-left: 4px solid var(--sage); border-radius: var(--radius); padding: 24px 26px; margin: 30px 0; display: flex; gap: 16px; align-items: flex-start; }
.callout .ic { flex: none; width: 40px; height: 40px; border-radius: 12px; background: var(--sage); color: var(--cream); display: grid; place-items: center; }
.callout b { color: var(--olive); }
.article-meta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.pill { background: var(--sage); color: var(--cream); padding: 5px 14px; border-radius: 999px; font-size: .74rem; font-weight: 600; letter-spacing: .05em; }

/* Blog: adımlı grafik blok */
.steps { display: grid; gap: 16px; margin: 28px 0 34px; }
.step { display: flex; gap: 18px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.step .sn { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--sage-dark); color: var(--cream); font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; display: grid; place-items: center; }
.step b { color: var(--olive); font-size: 1.1rem; display: block; margin-bottom: 3px; }
.step p { margin: 0; font-size: .98rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--olive); color: rgba(255,255,255,.72); padding: 74px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.site-footer a { color: rgba(255,255,255,.72); transition: color var(--t); }
.site-footer a:hover { color: var(--sage-2); }
.footer-links li { margin: 10px 0; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--sage-2); }
.footer-brand p { color: rgba(255,255,255,.66); font-size: .95rem; margin-top: 16px; max-width: 320px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; transition: background var(--t), transform var(--t), border-color var(--t); }
.socials a:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-2px); color: var(--cream); }
.socials svg { width: 18px; height: 18px; }
.footer-contact li { display: flex; gap: 10px; margin: 12px 0; font-size: .95rem; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--sage-2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- WhatsApp + to-top ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.45); transition: transform var(--t); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.to-top { position: fixed; right: 24px; bottom: 90px; z-index: 89; width: 46px; height: 46px; border-radius: 50%; background: var(--olive); color: var(--cream); border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity var(--t), transform var(--t), background var(--t); box-shadow: var(--shadow); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--sage); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split .media { min-height: 380px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:nth-child(3) { border-left: none; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .nav-links { position: fixed; inset: 80px 0 auto 0; background: var(--cream); flex-direction: column; align-items: stretch; padding: 14px 18px 22px; gap: 2px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-140%); transition: transform var(--t); max-height: calc(100vh - 80px); overflow-y: auto; }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 12px; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .subnav { top: 80px; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero-stats { gap: 30px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-left: none !important; }
  .cta-band { padding: 44px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .article h2 { font-size: 1.7rem; }
  .article blockquote { font-size: 1.25rem; }
}

/* =========================================================
   Arka plan hareketleri — süzülen simgeler & ışık lekeleri
   (fastemy.com esintili, zarif versiyon)
   ========================================================= */

/* Yumuşak hareketli ışık lekeleri (blob) */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; will-change: transform; }
.blob.b1 { width: 420px; height: 420px; background: rgba(138,148,112,.55); top: -120px; left: -80px; animation: blobFloat 18s ease-in-out infinite; }
.blob.b2 { width: 360px; height: 360px; background: rgba(111,122,90,.45); bottom: -140px; right: -60px; animation: blobFloat 22s ease-in-out infinite reverse; }
.blob.b3 { width: 300px; height: 300px; background: rgba(76,85,64,.4); top: 40%; left: 55%; animation: blobFloat 26s ease-in-out infinite; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px,-30px) scale(1.08); }
  66%     { transform: translate(-30px,20px) scale(.95); }
}

/* Süzülen minik simgeler */
.floaties { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.floaty { position: absolute; color: rgba(255,255,255,.22); animation: floatDrift 14s ease-in-out infinite; }
.floaty svg { width: 100%; height: 100%; display: block; }
.floaty.f1 { width: 46px; height: 46px; top: 18%; left: 8%;  animation-duration: 15s; }
.floaty.f2 { width: 34px; height: 34px; top: 66%; left: 14%; animation-duration: 18s; animation-delay: -3s; }
.floaty.f3 { width: 40px; height: 40px; top: 26%; right: 10%; animation-duration: 17s; animation-delay: -6s; }
.floaty.f4 { width: 30px; height: 30px; top: 72%; right: 16%; animation-duration: 20s; animation-delay: -2s; }
.floaty.f5 { width: 26px; height: 26px; top: 46%; left: 48%; animation-duration: 16s; animation-delay: -8s; opacity: .7; }
.floaty.f6 { width: 38px; height: 38px; top: 12%; left: 52%; animation-duration: 21s; animation-delay: -5s; }
@keyframes floatDrift {
  0%,100% { transform: translateY(0) translateX(0) rotate(0deg); }
  25%     { transform: translateY(-22px) translateX(10px) rotate(6deg); }
  50%     { transform: translateY(-6px) translateX(-12px) rotate(-5deg); }
  75%     { transform: translateY(-28px) translateX(6px) rotate(4deg); }
}

/* Hero içeriği simgelerin önünde kalsın */
.hero .container { position: relative; z-index: 2; }

/* Bölüm başlıklarında yumuşak beliren küçük hareket */
.page-hero .floaties .floaty { color: rgba(255,255,255,.16); }

/* Hareket hassasiyeti olanlar için kapat */
@media (prefers-reduced-motion: reduce) {
  .blob, .floaty { animation: none !important; }
}

/* =========================================================
   ZENGİNLEŞTİRME KATMANI — sıcak toprak aksanı, daha dengeli
   renk, daha görünür hareket, daha dinamik (v5)
   ========================================================= */

:root {
  --clay:      #b0724a;   /* Sıcak terracotta — ikincil aksan */
  --clay-soft: #c98a5f;
  --clay-tint: rgba(176,114,74,.12);
  --sand:      #efe7d8;   /* Sıcak kum tonu */
}

/* Zemini biraz daha sıcak-ferah yap */
body { background: var(--cream); }
.section-soft { background: linear-gradient(180deg, var(--sand), var(--cream-2)); }

/* Eyebrow çizgisini toprak tonuyla zenginleştir */
.eyebrow { color: var(--clay); }
.eyebrow::before { background: linear-gradient(90deg, var(--clay), var(--sage)); }

/* Kart ikon kutuları: koyu yeşil yerine ferah krem + hover'da yeşil (daha az yeşil, daha dinamik) */
.card .ico { background: var(--sand); color: var(--sage-dark); border: 1px solid var(--line); transition: background var(--t), color var(--t), transform var(--t); }
.card:hover .ico { background: var(--sage); color: var(--cream); transform: rotate(-4deg) scale(1.05); }
.info-card .ico { background: var(--sand); color: var(--sage-dark); }
.info-card:hover .ico { background: var(--clay); color: #fff; }

/* Hizmet numaralarına sıcak ton */
.service .num { color: var(--clay); }
.service:hover { border-color: var(--clay); }

/* Süzülen simgeleri belirginleştir + sıcak/serin karışım */
.floaty { color: rgba(255,255,255,.42); filter: drop-shadow(0 2px 8px rgba(30,35,24,.25)); }
.floaty.f2, .floaty.f4, .floaty.f6 { color: rgba(226,200,150,.5); }  /* altın/kum tonu */
.floaty.f1 { width: 54px; height: 54px; }
.floaty.f3 { width: 48px; height: 48px; }

/* Işık lekelerine sıcak bir ton kat */
.blob.b3 { background: rgba(176,114,74,.35); }

/* Alt menüyü belirginleştir (daha net görünür) */
.subnav { background: rgba(57,65,47,.96); border-bottom: 2px solid var(--clay); }
.subnav a { color: rgba(255,255,255,.82); }
.subnav a:hover, .subnav a.active { background: var(--clay); color: #fff; }
.subnav .sub-cta { background: var(--sage-2) !important; color: var(--olive) !important; }

/* Bölüm başlıklarında script vurgusunu sıcak yap */
h2 .script, h1 .script { color: var(--sage); }
.section-head .script { background: linear-gradient(90deg, var(--sage), var(--clay)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Butona ince parıltı hareketi */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg); transition: left .6s ease; }
.btn-primary:hover::after { left: 130%; }

/* Kartlara üstten sıcak-serin degrade çizgi */
.card::before { background: linear-gradient(90deg, var(--clay), var(--sage)); height: 4px; }
.post .tag { color: var(--clay); }
.post .read { color: var(--clay); }

/* Stats bandını biraz yumuşat (tam koyu yeşil yerine degrade) */
.stats-band { background: linear-gradient(135deg, var(--sage-dark), var(--olive) 70%, #2f3626); }
.stat-item .n { color: var(--sand); }

/* Testimonial tırnak + yıldız sıcak */
.testimonial .quote { color: var(--clay); }
.testimonial .stars { color: var(--clay); }

/* Pill (blog etiketi) sıcak */
.pill { background: var(--clay); }

/* Bölümler arası ince ayraç çizgisi (dinamik his) */
.section + .section-soft, .section-soft + .section { position: relative; }

/* Reveal'a hafif ölçek hareketi (daha canlı) */
.reveal { transform: translateY(30px) scale(.99); }
.reveal.in { transform: none; }

/* Link ve vurgu metinleri için sıcak alt çizgi */
.article a { color: var(--clay); text-decoration-color: rgba(176,114,74,.5); }
.article a:hover { text-decoration-color: var(--clay); }

/* =========================================================
   DÜZELTME — turuncu (terracotta) aksan kaldırıldı.
   Tüm vurgular yeşil/krem tonuna döndürüldü (v6)
   ========================================================= */

:root {
  --clay:      var(--sage-dark);
  --clay-soft: var(--sage);
  --clay-tint: rgba(76,85,64,.12);
}

/* Turuncu gradyan ve renkleri yeşile çevir */
.eyebrow { color: var(--sage-dark); }
.eyebrow::before { background: var(--sage); }
.card::before { background: linear-gradient(90deg, var(--sage-dark), var(--sage-2)); }
.section-head .script { background: none; -webkit-text-fill-color: currentColor; color: var(--sage); }
h1 .script, h2 .script, .script { color: var(--sage); }
.info-card:hover .ico { background: var(--sage); color: var(--cream); }
.service:hover { border-color: var(--sage); }
.service .num { color: var(--sage-dark); }

/* Alt menü: turuncu çizgi/aktif yerine yeşil */
.subnav { border-bottom: 2px solid var(--sage-2); }
.subnav a:hover, .subnav a.active { background: var(--sage); color: #fff; }
.subnav .sub-cta { background: var(--sage-2) !important; color: var(--olive) !important; }

/* Blog etiketleri, oku linkleri, tırnak, yıldız, pill → yeşil */
.pill { background: var(--sage); }
.post .tag { color: var(--sage-dark); }
.post .read { color: var(--sage-dark); }
.testimonial .quote { color: var(--sage); }
.testimonial .stars { color: var(--sage); }

/* Yazı içi bağlantılar yeşil */
.article a { color: var(--sage-dark); text-decoration-color: rgba(111,122,90,.5); }
.article a:hover { text-decoration-color: var(--sage-dark); }

/* Arka plan lekesi ve süzülen simgelerden sıcak/altın tonu kaldır */
.blob.b3 { background: rgba(111,122,90,.4); }
.floaty.f2, .floaty.f4, .floaty.f6 { color: rgba(255,255,255,.42); }

/* =========================================================
   v7 — Alttan floating nav + arka plan sembol hareketi +
   premium rafinasyon
   ========================================================= */

/* ---- Premium: daha yumuşak köşe, ince border, hafif shadow, nefes ---- */
:root { --radius: 18px; --radius-sm: 12px; --radius-lg: 30px; }
.section { padding: 112px 0; }
.card, .post, .service, .testimonial, .info-card, .form { border-color: rgba(57,65,47,.10); box-shadow: 0 1px 2px rgba(57,65,47,.04); }
.card:hover, .post:hover, .testimonial:hover { box-shadow: 0 24px 60px rgba(57,65,47,.14); }
.btn { padding: 15px 32px; }
.section-head { margin-bottom: 64px; }

/* ---- Minimal header: ana linkleri gizle, sadece logo + CTA ---- */
.site-header .nav-links > a { display: none; }
.site-header .nav-toggle { display: none !important; }
.site-header .nav-links { position: static; transform: none; background: none; box-shadow: none; border: none; padding: 0; max-height: none; flex-direction: row; overflow: visible; inset: auto; }
.site-header .nav-cta { margin: 0; }
.nav { height: 72px; }
.site-header { background: rgba(244,240,232,.7); }

/* Homepage alt menü (anchor subnav) kaldırıldı; ana navigasyon alttan gelir */
.subnav { display: none !important; }

/* ---- Alttan floating navigation (fastemy hissi) ---- */
.bottom-nav {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 120; display: flex; align-items: center; gap: 2px; padding: 7px;
  border-radius: 999px; background: rgba(244,240,232,.62);
  -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 14px 44px rgba(41,47,35,.24), inset 0 1px 0 rgba(255,255,255,.4);
  max-width: calc(100vw - 28px);
}
.bottom-nav a {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  border-radius: 999px; color: var(--ink); font-weight: 500; font-size: .9rem; line-height: 1;
  transition: background var(--t), color var(--t), transform var(--t); white-space: nowrap;
}
.bottom-nav a svg { width: 18px; height: 18px; flex: none; }
.bottom-nav a:hover { background: rgba(111,122,90,.14); color: var(--sage-dark); }
.bottom-nav a.active { background: var(--sage); color: var(--cream); box-shadow: 0 6px 16px rgba(111,122,90,.34); }
.bottom-nav a .lbl { display: inline; }

/* Footer ve son içerik alttaki menünün altında kalmasın */
.site-footer { padding-bottom: 116px; }

/* ---- Arka plan sembol hareketi (site geneli, çok düşük opaklık) ---- */
.bg-motion { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.bg-motion .sym { position: absolute; color: var(--sage); opacity: .055; will-change: transform; }
.bg-motion .sym svg { width: 100%; height: 100%; display: block; }
@keyframes symDrift {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  25%     { transform: translate(18px,-26px) rotate(5deg); }
  50%     { transform: translate(-12px,-40px) rotate(-4deg); }
  75%     { transform: translate(14px,-20px) rotate(3deg); }
}

/* ---- Mobil: floating nav sade, ekranı kaplamasın ---- */
@media (max-width: 640px) {
  .bottom-nav { bottom: 14px; gap: 0; padding: 6px; }
  .bottom-nav a { padding: 11px 13px; }
  .bottom-nav a .lbl { display: none; }            /* mobilde sadece ikon */
  .bottom-nav a.active .lbl { display: inline; }   /* aktif olanda etiket görünür */
  .wa-float { bottom: 88px; }
  .to-top { bottom: 148px; }
  .site-footer { padding-bottom: 92px; }
}

/* Hareket hassasiyeti: tüm arka plan hareketini kapat */
@media (prefers-reduced-motion: reduce) {
  .bg-motion .sym { animation: none !important; }
}

/* =========================================================
   v8 — Üst menü daha şeffaf + sağ üst CTA yumuşak/glassy
   ========================================================= */
.site-header { background: rgba(244,240,232,.52); }
.site-header.scrolled { background: rgba(244,240,232,.86); }
.nav-cta .btn {
  background: rgba(111,122,90,.14);
  color: var(--sage-dark);
  border: 1px solid rgba(111,122,90,.42);
  box-shadow: none;
  font-weight: 600;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.nav-cta .btn:hover { background: var(--sage); color: var(--cream); border-color: var(--sage); transform: translateY(-1px); }
.nav-cta .btn::after { display: none; }

/* =========================================================
   v10 — Üst menü (header nav) geri getirildi; alt floating
   nav ile birlikte çalışır
   ========================================================= */
.site-header .nav-links > a { display: inline-flex; align-items: center; }
@media (min-width: 721px) {
  .site-header .nav-toggle { display: none !important; }
}
@media (max-width: 720px) {
  .site-header .nav-toggle { display: inline-flex !important; }
  .site-header .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 14px 18px 22px; gap: 2px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform var(--t);
    max-height: calc(100vh - 72px); overflow-y: auto; inset-inline: 0;
  }
  .site-header .nav-links.open { transform: none; }
  .site-header .nav-links > a { display: block; padding: 14px 12px; font-size: 1.05rem; }
  .site-header .nav-cta { margin: 8px 0 0; }
  .site-header .nav-cta .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   v11 — Tipografik wordmark (monogram kaldırıldı, favicon oldu)
   ========================================================= */
.wordmark { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; line-height: 1; }
.wordmark .wm-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.55rem;
  letter-spacing: .15em; text-transform: uppercase; color: #3d4435; white-space: nowrap;
}
.wordmark .wm-sub {
  font-family: var(--font-body); font-weight: 600; font-size: .6rem;
  letter-spacing: .18em; text-transform: uppercase; color: #b08d57; white-space: nowrap;
}
/* Koyu zemin (footer) için açık versiyon */
.wordmark--light .wm-name { color: var(--cream); }
.wordmark--light .wm-sub { color: #cbb389; }

/* Mobilde alt satır otomatik küçülsün */
@media (max-width: 560px) {
  .site-header .wordmark .wm-name { font-size: 1.28rem; letter-spacing: .12em; }
  .site-header .wordmark .wm-sub { font-size: .52rem; letter-spacing: .12em; }
}
@media (max-width: 380px) {
  .site-header .wordmark .wm-sub { white-space: normal; }
}

/* =========================================================
   v12 — Hesaplayıcı araçları (.calc-*)
   ========================================================= */
.calc-wrap { max-width: 780px; margin: 0 auto; }
.calc-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.calc-field { margin-bottom: 20px; }
.calc-field > label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 8px; color: var(--olive); }
.calc-field input, .calc-field select {
  width: 100%; min-height: 52px; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1.05rem; color: var(--ink); background: var(--cream);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--sage); background: #fff; box-shadow: 0 0 0 4px rgba(111,122,90,.14); }
.calc-radios { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-radios label { flex: 1; min-width: 140px; display: flex; align-items: center; gap: 8px; padding: 12px 14px; min-height: 50px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; font-size: .95rem; background: var(--cream); }
.calc-radios label:has(input:checked) { border-color: var(--sage); background: rgba(111,122,90,.08); color: var(--sage-dark); font-weight: 600; }
.calc-radios input { accent-color: var(--sage); width: auto; min-height: auto; }

.calc-manual { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px; font-size: .9rem; color: var(--ink); }
.calc-manual a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 2px; }

.calc-result { margin-top: 26px; background: var(--sage-dark); color: var(--cream); border-radius: var(--radius); padding: 26px 28px; }
.calc-result.empty { display: none; }
.calc-result .row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.calc-result .row:last-child { border-bottom: none; }
.calc-result .lbl { opacity: .85; font-size: .95rem; }
.calc-result .val { font-weight: 600; white-space: nowrap; }
.calc-result .row.total .lbl { opacity: 1; font-weight: 600; }
.calc-result .row.total .val { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.1rem); color: #fff; }

.calc-warn { margin-top: 16px; background: rgba(176,114,74,.08); border: 1px solid rgba(176,114,74,.32); border-left: 3px solid #b08d57; border-radius: var(--radius-sm); padding: 14px 16px; font-size: .9rem; color: var(--ink); line-height: 1.6; }
.calc-note { font-size: .82rem; color: var(--muted); margin-top: 14px; line-height: 1.6; }

/* Araç vitrini / indeks kartları */
.tool-card { display: flex; flex-direction: column; gap: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.tool-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.tool-card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--sage-dark); color: var(--cream); }
.tool-card h3 { font-size: 1.28rem; }
.tool-card p { color: var(--muted); font-size: .96rem; flex: 1; }
.tool-card .go { color: var(--gold-dark); font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
