/* =============================================================
   ONLINE SALONE — landing. Koyu petrol yeşili + amber, sıcak beyaz zemin.
   ============================================================= */
:root {
  /* Online Salone paleti: tek aile, petrol yeşili tonları + nötrler */
  --ink: #0f1b1a;        /* metin */
  --p-900: #093735;      /* koyu zemin */
  --p: #0e4d4a;          /* ana renk (Teal 700) */
  --p-500: #17766f;      /* vurgu / hover (Teal 500) */
  --p-300: #8fcfc4;      /* koyu zemin üstünde vurgu metni */
  --p-soft: #e6f0ee;     /* açık yeşil zemin (Mint) */
  --p-dark: var(--p-900);
  --a: var(--p-500); --a-dark: var(--p); --a-soft: var(--p-soft);
  --bg: #fbfaf6; --surface: #ffffff; --muted: #5f6b6a; --line: #e5e8e3;
  --free: #16a34a; --free-soft: #ecfdf3; --busy: #dc2626; --busy-soft: #fdf1f1;
  --r: 18px; --r-sm: 12px; --shadow: 0 10px 30px rgba(15, 27, 26, .08); --shadow-lg: 0 30px 70px rgba(15, 27, 26, .18);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
html, body { margin: 0; }
body { background: var(--bg); color: var(--ink); font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
[hidden] { display: none !important; }
h1, h2, h3 { font-family: "Sora", "Manrope", sans-serif; letter-spacing: -.02em; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 700; }
p { margin: 0; }
a { color: inherit; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.wrap.narrow { max-width: 800px; }
.muted { color: var(--muted); } .small { font-size: 13px; } .center { text-align: center; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--p); background: var(--p-soft); padding: 6px 12px; border-radius: 999px; margin-bottom: 14px; }
.eyebrow.light { background: rgba(255,255,255,.14); color: #fff; }
.section { padding: 84px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.center-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.center-head p { margin-top: 14px; color: var(--muted); font-size: 17px; }

/* Düğmeler */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 12px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-weight: 800; font-size: 15px; cursor: pointer; text-decoration: none; transition: transform .08s, box-shadow .15s, background .15s, opacity .15s; font-family: inherit; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .5; cursor: default; }
.btn.lg { padding: 15px 26px; font-size: 16px; border-radius: 14px; }
.btn.block { width: 100%; }
.btn.primary { background: var(--p); color: #fff; border-color: var(--p); }
.btn.accent { background: var(--p-500); color: #fff; border-color: var(--p-500); }
.btn.accent:hover { background: var(--p); }
/* Koyu zeminlerde ana düğme beyaz olur */
.hero .btn.accent, .contact .btn.accent { background: #fff; color: var(--p); border-color: #fff; }
.hero .btn.accent:hover, .contact .btn.accent:hover { background: var(--p-soft); }
.btn.ghost-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn.wa { background: #25D366; color: #073b1f; border-color: #25D366; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(251, 250, 246, .85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font-family: "Sora", sans-serif; font-weight: 700; font-size: 19px; letter-spacing: -.02em; }
.logo b { color: var(--p); font-weight: 800; }
.logo-mark { width: 32px; height: 32px; border-radius: 10px; background: var(--p); color: #fff; display: grid; place-items: center; font-size: 17px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-weight: 700; font-size: 14px; }
.nav-links a { text-decoration: none; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { color: var(--ink); padding: 9px 16px; }
.nav-panel { color: var(--p) !important; }
.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); background: var(--surface); border-radius: 10px; flex-direction: column; justify-content: center; gap: 4px; padding: 0 10px; cursor: pointer; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 860px) {
  .burger { display: flex; }
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; padding: 12px 20px 18px; gap: 4px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 4px; }
  .nav-links .btn { margin-top: 8px; }
}

/* Hero */
.hero { background: radial-gradient(1200px 600px at 80% -10%, var(--p-500) 0%, var(--p) 45%, var(--p-900) 100%); color: #fff; padding: 72px 0 0; overflow: hidden; }
.hero-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 em { font-style: normal; color: var(--p-300); }
.hero .lead { margin-top: 20px; font-size: 18px; color: rgba(255,255,255,.82); max-width: 540px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.trust { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 28px; padding-bottom: 60px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75); }
.trust span::before { content: "✓"; color: var(--p-300); margin-right: 6px; font-weight: 800; }
.hero-phone { display: flex; flex-direction: column; align-items: center; gap: 12px; padding-top: 10px; }
.phone-caption { font-size: 12px; color: rgba(255,255,255,.6); padding-bottom: 20px; }
@media (max-width: 860px) { .hero { padding-top: 48px; } .hero-in { grid-template-columns: 1fr; } .trust { padding-bottom: 30px; } .hero-phone { padding-bottom: 10px; } }

/* Telefon çerçevesi */
.phone { width: 320px; height: 640px; background: #0b1413; border-radius: 44px; padding: 12px; box-shadow: var(--shadow-lg), inset 0 0 0 2px #2a3836; position: relative; flex: none; }
.phone-lg { width: 340px; height: 690px; }
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #0b1413; border-radius: 0 0 16px 16px; z-index: 3; }
.phone-screen, .phone-frame { width: 100%; height: 100%; border-radius: 34px; background: #f6f7f9; overflow: hidden; border: none; display: block; color: var(--ink); }
.phone-frame { background: #fff; }
@media (max-width: 400px) { .phone, .phone-lg { width: 290px; height: 590px; } }

/* Hero içi mini demo (JS ile çizilir) */
.hd { height: 100%; display: flex; flex-direction: column; font-size: 13px; --hp: #0e4d4a; }
.hd-hdr { padding: 38px 14px 10px; background: #fff; border-bottom: 1px solid #e5e7eb; display: flex; align-items: center; gap: 8px; }
.hd-logo { width: 30px; height: 30px; border-radius: 8px; background: var(--hp); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 12px; }
.hd-hdr b { font-size: 13px; display: block; } .hd-hdr small { color: #6b7280; font-size: 11px; }
.hd-body { flex: 1; overflow: hidden; padding: 12px; display: flex; flex-direction: column; gap: 10px; }
.hd-steps { display: flex; gap: 4px; }
.hd-step { font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 999px; background: #eceef2; color: #6b7280; }
.hd-step.on { background: var(--hp); color: #fff; }
.hd-title { font-weight: 800; font-size: 16px; letter-spacing: -.01em; }
.hd-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hd-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 8px; cursor: pointer; }
.hd-card.sel { border-color: var(--hp); box-shadow: 0 0 0 2px rgba(14,77,74,.15); }
.hd-av { aspect-ratio: 1; border-radius: 9px; background: linear-gradient(145deg, #eeeff2, #d9dbe1); display: grid; place-items: center; font-weight: 800; font-size: 22px; color: #4b5059; }
.hd-card b { display: block; margin-top: 6px; font-size: 12px; } .hd-card small { color: #6b7280; font-size: 10px; }
.hd-hero { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 8px; }
.hd-hero .hd-av { width: 44px; font-size: 15px; border-radius: 10px; }
.hd-days { display: flex; gap: 6px; overflow: hidden; }
.hd-day { flex: none; width: 50px; text-align: center; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 6px 2px; font-size: 10px; color: #6b7280; }
.hd-day b { display: block; font-size: 15px; color: var(--ink); }
.hd-day.sel { background: var(--hp); border-color: var(--hp); color: rgba(255,255,255,.8); } .hd-day.sel b { color: #fff; }
.hd-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.hd-slot { text-align: center; font-weight: 800; font-size: 12px; padding: 8px 2px; border-radius: 9px; border: 1px solid #cfe9d8; background: #ecfdf3; cursor: pointer; }
.hd-slot.busy { background: #fdf1f1; border-color: #f2c7c7; color: #dc2626; text-decoration: line-through; cursor: default; }
.hd-slot.sel { background: var(--hp); border-color: var(--hp); color: #fff; }
.hd-cta { margin-top: auto; background: var(--hp); color: #fff; text-align: center; font-weight: 800; padding: 11px; border-radius: 11px; font-size: 13px; cursor: pointer; }
.hd-cta.off { opacity: .4; cursor: default; }
.hd-field { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 9px 10px; font-size: 12px; color: #6b7280; }
.hd-field b { color: var(--ink); font-weight: 700; }
.hd-sum { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; font-size: 12px; }
.hd-sum small { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .04em; color: #6b7280; font-weight: 700; } .hd-sum b { font-size: 12px; }
.hd-done { text-align: center; padding-top: 20px; }
.hd-done .ico { width: 56px; height: 56px; border-radius: 50%; background: #ecfdf3; color: #16a34a; display: grid; place-items: center; font-size: 26px; font-weight: 800; margin: 0 auto 10px; }
.hd-done .code { display: inline-block; margin-top: 8px; font-family: ui-monospace, Menlo, monospace; letter-spacing: .12em; background: #eceef2; padding: 3px 8px; border-radius: 6px; font-size: 12px; }
.hd-dots { display: flex; justify-content: center; gap: 5px; padding: 8px 0 12px; }
.hd-dots i { width: 6px; height: 6px; border-radius: 50%; background: #d1d5db; } .hd-dots i.on { background: var(--hp); width: 16px; border-radius: 3px; }

/* Stats */
.stats { background: var(--surface); border-bottom: 1px solid var(--line); }
.stats-in { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 26px 20px; }
.stat b { display: block; font-family: "Sora", sans-serif; font-size: 30px; font-weight: 800; color: var(--p); letter-spacing: -.02em; }
.stat span { font-size: 14px; color: var(--muted); }
@media (max-width: 720px) { .stats-in { grid-template-columns: 1fr; gap: 14px; } .stat { display: flex; align-items: baseline; gap: 12px; } }

/* Demo */
.demo-in, .panel-in { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.demo-text p, .panel-text p { margin-top: 14px; color: var(--muted); font-size: 17px; }
.demo-text h2, .panel-text h2 { margin-top: 4px; }
.demo-text .btn { margin-top: 20px; }
.demo-text .small { margin-top: 12px; }
.checks { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; }
.checks li { padding-left: 30px; position: relative; font-weight: 600; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--p-soft); color: var(--p); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
@media (max-width: 860px) { .demo-in, .panel-in { grid-template-columns: 1fr; justify-items: center; } .demo-text, .panel-text { justify-self: stretch; } }

/* Özellikler */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 20px; transition: transform .12s, box-shadow .15s; }
.feat:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.feat-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--p-soft); display: grid; place-items: center; font-size: 22px; margin-bottom: 14px; }
.feat h3 { font-size: 16px; }
.feat p { margin-top: 8px; font-size: 14px; color: var(--muted); }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }

/* Panel mock */
.panel-in { grid-template-columns: auto 1fr; }
.panel-mock { width: min(520px, 100%); background: #f6f7f9; border: 1px solid var(--line); border-radius: 20px; padding: 14px; box-shadow: var(--shadow-lg); font-size: 13px; --pp: #0e4d4a; }
.pm-top { display: flex; justify-content: space-between; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px; }
.pm-brand { display: flex; align-items: center; gap: 8px; } .pm-logo { width: 26px; height: 26px; border-radius: 8px; background: var(--pp); }
.pm-btn { background: var(--pp); color: #fff; font-weight: 800; font-size: 12px; padding: 6px 10px; border-radius: 8px; }
.pm-tabs { display: flex; gap: 14px; padding: 10px 6px 0; font-weight: 700; font-size: 12px; color: var(--muted); }
.pm-tabs .on { color: var(--pp); border-bottom: 2px solid var(--pp); padding-bottom: 6px; }
.pm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 10px 0; }
.pm-stats div { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; font-size: 11px; color: var(--muted); font-weight: 700; }
.pm-stats b { display: block; font-size: 20px; color: var(--pp); }
.pm-day { font-weight: 800; font-size: 12px; margin: 6px 0; } .pm-day i { font-style: normal; color: var(--muted); font-weight: 700; margin-left: 6px; }
.pm-row { display: grid; grid-template-columns: 48px 1fr auto; gap: 10px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 9px 12px; margin-bottom: 6px; }
.pm-row > b { color: var(--pp); font-size: 15px; }
.pm-row span { font-weight: 800; font-size: 13px; } .pm-row em { font-style: normal; font-size: 10px; background: var(--p-soft); color: var(--pp); padding: 2px 6px; border-radius: 999px; margin-left: 4px; font-weight: 800; }
.pm-row small { display: block; color: var(--muted); font-size: 11px; }
.pm-wa { font-size: 11px; font-weight: 800; color: #128C4B; background: #f0fbf4; border: 1px solid #cfe9d8; padding: 5px 9px; border-radius: 8px; white-space: nowrap; }
.pm-wa.sent { color: var(--free); }
@media (max-width: 860px) { .panel-in { grid-template-columns: 1fr; } .panel-mock { order: 2; } }

/* Nasıl çalışır */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stp { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px 24px; }
.stp-n { font-family: "Sora", sans-serif; font-weight: 800; font-size: 34px; color: var(--p-500); letter-spacing: -.03em; line-height: 1; margin-bottom: 14px; }
.stp p { margin-top: 8px; color: var(--muted); font-size: 15px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* Fiyatlar */
.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 20px; }
.plans.single { grid-template-columns: minmax(0, 720px); }
.plan-list.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; }
@media (max-width: 640px) { .plan-list.two-col { grid-template-columns: 1fr; } }
.contact-alt { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; align-items: center; }
.contact-mail { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.7); }
.contact-mail a { color: #fff; font-weight: 700; }
.lead-head { display: flex; flex-direction: column; gap: 2px; margin-bottom: 12px; }
.lead-head b { font-size: 16px; }
.contact-alt .btn { margin-top: 0; }
.plan { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px 26px; position: relative; box-shadow: var(--shadow); }
.plan.featured { border-color: var(--p); box-shadow: 0 20px 50px rgba(14, 77, 74, .18); }
.plan-badge { position: absolute; top: -13px; left: 26px; background: var(--p); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: 999px; }
.plan-name { font-family: "Sora", sans-serif; font-weight: 800; font-size: 20px; }
.plan-for { color: var(--muted); font-size: 14px; margin-top: 4px; }
.plan-price { margin-top: 18px; display: flex; align-items: baseline; gap: 4px; }
.plan-price b { font-family: "Sora", sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -.03em; } .plan-price span { color: var(--muted); font-weight: 700; }
.plan-year { font-size: 13px; color: var(--muted); margin: 4px 0 18px; }
.plan-list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.plan-list li { padding-left: 26px; position: relative; }
.plan-list li::before { content: "✓"; position: absolute; left: 0; color: var(--p); font-weight: 800; }
.plan-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px auto 12px; max-width: 900px; }
.plan-notes div { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; font-size: 13px; color: var(--muted); }
.plan-notes b { display: block; color: var(--ink); font-size: 14px; margin-bottom: 2px; }
@media (max-width: 860px) { .plans { grid-template-columns: 1fr; } .plan-notes { grid-template-columns: 1fr; } }

/* İletişim */
.contact { background: linear-gradient(135deg, var(--p-dark), var(--p)); color: #fff; }
.contact-in { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-text p { margin-top: 14px; color: rgba(255,255,255,.8); font-size: 17px; }
.contact-text .btn { margin-top: 22px; }
.phone-line { margin-top: 16px; font-weight: 800; font-size: 18px; }
.lead-form { background: var(--surface); color: var(--ink); border-radius: 22px; padding: 26px; box-shadow: var(--shadow-lg); }
.field { display: block; margin-top: 12px; } .field:first-child { margin-top: 0; }
.field > span { display: block; font-size: 13px; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
input { width: 100%; padding: 13px 14px; font-size: 16px; font-family: inherit; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; outline: none; }
input:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(14, 77, 74, .12); }
.hp { position: absolute; left: -9999px; }
.lead-form .btn { margin-top: 16px; }
.lead-form .small { margin-top: 10px; text-align: center; }
.err { margin-top: 12px; padding: 10px 12px; border-radius: 10px; background: var(--busy-soft); color: var(--busy); font-size: 14px; font-weight: 600; }
.ok-box { margin-top: 12px; padding: 12px; border-radius: 10px; background: var(--free-soft); color: #166534; font-size: 14px; font-weight: 700; }
@media (max-width: 860px) { .contact-in { grid-template-columns: 1fr; } }

/* SSS */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); padding: 0 18px; }
.faq summary { cursor: pointer; font-weight: 800; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--p); font-weight: 800; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 16px; color: var(--muted); font-size: 15px; }

/* Kapanış + footer */
.final { padding: 80px 0; background: var(--surface); border-top: 1px solid var(--line); }
.final p { margin: 14px auto 24px; color: var(--muted); max-width: 560px; font-size: 17px; }
.footer { padding: 34px 0; border-top: 1px solid var(--line); }
.foot-in { display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: center; }
.foot-in .muted { margin-top: 6px; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; font-weight: 700; }
.foot-links a { text-decoration: none; color: var(--muted); } .foot-links a:hover { color: var(--ink); }
@media (max-width: 720px) { .foot-in { grid-template-columns: 1fr; } }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 1000; padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 700; color: #fff; background: var(--ink); box-shadow: var(--shadow-lg); max-width: 92vw; text-align: center; }
.toast.success { background: var(--free); } .toast.error { background: var(--busy); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
