/* =========================================================================
   TAM Randevu — sections.css · bölüm yerleşimleri (mobile-first)
   ========================================================================= */

/* ============================ NAV ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px var(--pad);
  background: transparent;
  transition: background-color .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.nav.scrolled {
  background: var(--bg-overlay);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--hair-soft);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: -0.02em; }
/* Logo yer tutucu — gerçek logo sonra gelecek */
.brand .logo-slot {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent); position: relative; flex: none;
  display: grid; place-items: center;
}
.brand .logo-slot::after { content: ""; width: 13px; height: 13px; border: 2.5px solid #fff; border-radius: 50%; clip-path: inset(0 0 50% 0); transform: rotate(-45deg); }
.brand .name { font-size: 17px; }
.brand .name b { font-weight: 800; }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-links { display: none; gap: 4px; }
.nav-links a { padding: 8px 12px; border-radius: var(--r-pill); font-size: 15px; font-weight: 500; color: var(--text-2); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: var(--surface-2); }

.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--bg-elev); box-shadow: inset 0 0 0 1px var(--hair);
  display: grid; place-items: center; color: var(--text);
  transition: background .25s, transform .25s;
}
/* Mobilde tema değiştirici üst bardan çıkar (sheet'e taşındı) */
@media (max-width: 899px) { .theme-toggle { display: none; } }
.theme-toggle:active { transform: scale(.92); }
.theme-toggle svg { width: 20px; height: 20px; }
.nav .btn { padding: 10px 18px; min-height: 44px; font-size: 15px; }
.nav-cta-text-long { display: none; }
@media (min-width: 600px) { .nav-cta-text-long { display: inline; } .nav-cta-text-short { display: none; } }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ── Mobil menü butonu (yalnız <900px) ── */
.menu-btn {
  width: 44px; height: 44px; border-radius: 50%; flex: none; border: none;
  background: var(--bg-elev); box-shadow: inset 0 0 0 1px var(--hair);
  display: grid; place-items: center; color: var(--text);
  transition: background .25s, transform .25s;
}
.menu-btn:active { transform: scale(.92); }
.menu-lines { display: grid; gap: 5px; width: 18px; }
.menu-lines i { display: block; height: 2px; border-radius: 2px; background: currentColor; transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s; }
.menu-btn[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 900px) { .menu-btn { display: none; } }

/* ── iOS bottom sheet ── */
.sheet-scrim {
  position: fixed; inset: 0; z-index: 110;
  background: rgba(0,0,0,.32); opacity: 0;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: opacity .35s ease;
}
.sheet-scrim.open { opacity: 1; }
:root[data-theme="dark"] .sheet-scrim { background: rgba(0,0,0,.55); }

.nav-sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  background: var(--bg-elev);
  border-radius: var(--r-sheet) var(--r-sheet) 0 0;
  box-shadow: 0 -8px 40px rgba(15,15,20,.18), 0 0 0 .5px var(--hair);
  padding: 10px clamp(16px, 5vw, 24px) max(22px, env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .42s cubic-bezier(.32,.72,0,1);
  will-change: transform;
}
.nav-sheet.open { transform: none; }
:root[data-theme="dark"] .nav-sheet { box-shadow: 0 -8px 48px rgba(0,0,0,.6), 0 0 0 .5px var(--hair); }
@media (prefers-reduced-motion: reduce) {
  .nav-sheet { transition: transform .2s ease; }
  .sheet-scrim { transition: opacity .2s ease; }
}

.sheet-grab { width: 38px; height: 5px; border-radius: 999px; background: var(--surface-3); margin: 4px auto 14px; }
.sheet-links { display: flex; flex-direction: column; }
.sheet-link {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 56px; padding: 4px 6px; font-size: 18px; font-weight: 600;
  letter-spacing: var(--ls); border-bottom: 1px solid var(--hair-soft);
  transition: color .2s;
}
.sheet-link:last-of-type { border-bottom: none; }
.sheet-link svg { width: 19px; height: 19px; color: var(--text-3); }
.sheet-link:active { color: var(--accent); }
.sheet-link:active svg { color: var(--accent); }
.sheet-cta { width: 100%; margin-top: 16px; min-height: 52px; }
.sheet-note { text-align: center; font-size: 13px; color: var(--text-3); margin: 12px 0 0; }

/* sheet içi tema satırı + segment kontrolü */
.sheet-theme { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding: 0 2px; }
.sheet-theme-label { font-size: 16px; font-weight: 600; color: var(--text); letter-spacing: var(--ls); }
.seg { display: inline-flex; gap: 3px; padding: 3px; border-radius: var(--r-pill); background: var(--surface-2); }
.seg button { border: none; background: transparent; padding: 9px 18px; min-height: 40px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 600; color: var(--text-2); letter-spacing: var(--ls); transition: color .25s ease; }
.seg button.on { color: var(--text); background: var(--bg-elev); box-shadow: var(--sh-sm); }
/* Dil seçici (i18n) — .seg ailesinden kompakt varyant. Nav'daki (.nav-lang)
   <900px gizlenir (theme-toggle gibi); mobilde sheet içindeki .lang-seg yaşar. */
.lang-seg button { padding: 7px 13px; min-height: 36px; font-size: 13px; letter-spacing: 0; }
@media (max-width: 899px) { .lang-seg.nav-lang { display: none; } }
body.sheet-open { overflow: hidden; }
@media (min-width: 900px) { .nav-sheet, .sheet-scrim { display: none !important; } }

/* ── Mobil bölüm dock'u (yüzen iOS tab bar) — index varyantı ── */
.dock {
  position: fixed; left: 50%; bottom: max(14px, env(safe-area-inset-bottom)); z-index: 90;
  transform: translate(-50%, 160%);
  display: flex; align-items: stretch; gap: 2px;
  padding: 6px;
  background: var(--bg-overlay);
  -webkit-backdrop-filter: saturate(180%) blur(22px); backdrop-filter: saturate(180%) blur(22px);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-lg), inset 0 0 0 .5px var(--hair);
  transition: transform .5s cubic-bezier(.32,.72,0,1), opacity .4s ease;
  opacity: 0;
}
.dock.show { transform: translate(-50%, 0); opacity: 1; }
.dock-item {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 3px;
  min-width: 60px; padding: 9px 6px 7px; border-radius: var(--r-pill);
  color: var(--text-2); transition: color .25s ease, background-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}
.dock-item svg { width: 21px; height: 21px; transition: transform .3s cubic-bezier(.2,.7,.2,1); }
.dock-item span { font-size: 10.5px; font-weight: 600; letter-spacing: 0; line-height: 1; }
.dock-item:active svg { transform: scale(.86); }
.dock-item.active { color: var(--accent); background: var(--accent-soft); }
@media (prefers-reduced-motion: reduce) {
  .dock { transition: opacity .3s ease; }
  .dock:not(.show) { transform: translate(-50%, 0); }
}
@media (max-width: 360px) { .dock-item { min-width: 54px; } .dock-item span { font-size: 9.5px; } }
@media (min-width: 900px) { .dock { display: none !important; } }

/* Sabit nav için bölüm çapa ofseti */
section[id], header[id] { scroll-margin-top: 76px; }

/* ── Canlı randevu bildirimi (sosyal kanıt toast, iOS bildirim şablonu) ── */
.live-toast {
  position: fixed; left: clamp(12px, 4vw, 24px); bottom: clamp(12px, 4vw, 24px); z-index: 80;
  width: min(338px, calc(100vw - 24px));
  display: flex; align-items: center; gap: 12px;
  padding: 11px 12px 11px 13px;
  background: var(--bg-overlay);
  -webkit-backdrop-filter: saturate(180%) blur(22px); backdrop-filter: saturate(180%) blur(22px);
  border-radius: 18px;
  box-shadow: var(--sh-lg), inset 0 0 0 .5px var(--hair);
  transform: translateY(18px) scale(.985); opacity: 0; pointer-events: none;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .45s ease;
  will-change: transform, opacity;
}
.live-toast.show { transform: none; opacity: 1; pointer-events: auto; }
/* sheet açıkken gizle */
body.sheet-open .live-toast { opacity: 0 !important; pointer-events: none !important; transform: translateY(18px) scale(.985) !important; }

.lt-icon {
  position: relative; flex: none; width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center; background: var(--accent-soft); color: var(--accent);
}
.lt-icon svg { width: 22px; height: 22px; }
.lt-live { position: absolute; top: -2px; right: -2px; width: 11px; height: 11px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 2.5px var(--bg-elev); }
.lt-live::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--green); animation: ltPulse 2s ease-out infinite; }
@keyframes ltPulse { 0% { transform: scale(1); opacity: .7; } 70%,100% { transform: scale(2.4); opacity: 0; } }

.lt-body { flex: 1 1 auto; min-width: 0; }
.lt-title { font-size: 14px; font-weight: 600; letter-spacing: var(--ls); color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lt-sub { font-size: 13px; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.lt-time { flex: none; align-self: flex-start; font-size: 12px; color: var(--text-3); margin-top: 2px; }
.lt-close {
  flex: none; width: 26px; height: 26px; border-radius: 50%; border: none; align-self: center;
  background: var(--surface-2); color: var(--text-2); display: grid; place-items: center;
  opacity: 0; transition: opacity .2s, background .2s, color .2s;
}
.lt-close svg { width: 13px; height: 13px; }
.live-toast:hover .lt-close, .lt-close:focus-visible { opacity: 1; }
.lt-close:hover { background: var(--surface-3); color: var(--text); }

@media (prefers-reduced-motion: reduce) {
  .live-toast { transition: opacity .3s ease; transform: none; }
  .live-toast.show { transform: none; }
  body.sheet-open .live-toast { transform: none !important; }
  .lt-live::after { animation: none; }
  .lt-close { opacity: 1; }
}

/* ============================ HERO ============================ */
.hero { padding-top: clamp(110px, 22vw, 160px); padding-bottom: clamp(40px, 8vw, 80px); text-align: center; overflow: hidden; }
.hero .eyebrow { margin-bottom: 18px; }
.hero .display { margin: 0 auto; max-width: 16ch; }
.hero .lead { margin: 22px auto 0; max-width: 32ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.hero-note { margin-top: 14px; font-size: 13.5px; color: var(--text-3); display: flex; gap: 8px; align-items: center; justify-content: center; flex-wrap: wrap; }
.hero-note b { color: var(--text-2); font-weight: 600; }

.hero-stage { position: relative; margin-top: clamp(48px, 9vw, 80px); display: none; justify-content: center; }
@media (min-width: 760px) { .hero-stage { display: flex; } }
.hero-stage .phone { --phone-w: clamp(248px, 64vw, 320px); z-index: 2; }
/* arka plan soyut halkalar */
.hero-rings { position: absolute; inset: -10% 0 auto; top: -6%; display: grid; place-items: center; z-index: 0; pointer-events: none; }
.hero-rings span { position: absolute; border-radius: 50%; border: 1px solid var(--hair-soft); }
.hero-rings span:nth-child(1){ width: 320px; height: 320px; }
.hero-rings span:nth-child(2){ width: 520px; height: 520px; }
.hero-rings span:nth-child(3){ width: 760px; height: 760px; }
/* yüzen mini kartlar */
.float-card {
  position: absolute; z-index: 3;
  background: var(--bg-elev); border-radius: 14px; box-shadow: var(--sh-md);
  padding: 12px 14px; display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; white-space: nowrap;
}
.float-card .ic { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; flex: none; color: #fff; font-weight: 700; }
.float-card small { display: block; font-size: 11px; font-weight: 500; color: var(--text-2); }
.float-a { top: 14%; left: max(2%, calc(50% - 250px)); }
.float-b { top: 46%; right: max(2%, calc(50% - 248px)); }
.float-c { bottom: 8%; left: max(4%, calc(50% - 220px)); }
@media (max-width: 560px) {
  .float-card { transform: scale(.86); }
  .float-a { left: -2%; top: 8%; } .float-b { right: -2%; } .float-c { left: 0; bottom: 2%; }
}

/* logo şeridi (hero altı) — yalnız tablet/desktop'ta görünür, mobilde gizli */
.trust { display: none; padding-block: clamp(28px, 6vw, 44px); }
.trust p { text-align: center; font-size: 13px; color: var(--text-3); margin: 0 0 18px; }
.logo-strip { display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; justify-content: center; opacity: .7; }
.logo-strip .lg { height: 24px; min-width: 84px; border-radius: 6px; background: var(--surface-2); display: grid; place-items: center; font-size: 12px; font-weight: 700; color: var(--text-3); letter-spacing: .04em; padding: 0 12px; }
@media (min-width: 760px) { .trust { display: block; } }

/* ============================ GENEL BÖLÜM BAŞLIĞI ============================ */
.sec-head { max-width: 30ch; margin-bottom: clamp(36px, 7vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .kicker { margin-bottom: 14px; display: inline-block; }
.sec-head .lead { margin-top: 18px; }

/* ============================ SORUN → ÇÖZÜM ============================ */
.bridge-grid { display: grid; gap: 16px; }
@media (min-width: 760px) { .bridge-grid { grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; } }
.bridge-col {
  border-radius: var(--r-card); padding: clamp(24px, 4vw, 36px);
  background: var(--bg-elev); box-shadow: var(--sh-sm);
}
.bridge-col.before { background: var(--surface-2); box-shadow: none; }
.bridge-col h3 { margin: 0 0 6px; font-size: 13px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; }
.bridge-col.before h3 { color: var(--text-3); }
.bridge-col.after h3 { color: var(--accent); }
.bridge-col .big { font-size: clamp(22px,4vw,26px); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 20px; max-width: 18ch; }
.pain-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.pain-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.4; }
.pain-list li .mk { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center; margin-top: 1px; }
.bridge-col.before .mk { background: var(--surface-3); color: var(--text-3); }
.bridge-col.after .mk { background: var(--accent-soft); color: var(--accent); }
.bridge-col.before li { color: var(--text-2); }
.mk svg { width: 13px; height: 13px; }

/* ============================ SHOWCASE (portal + panel) ============================ */
.showcase { display: grid; gap: clamp(32px, 6vw, 56px); align-items: center; }
@media (min-width: 880px) { .showcase { grid-template-columns: 1fr 1fr; } .showcase.flip .showcase-media { order: 2; } }
.showcase-media { display: flex; justify-content: center; position: relative; }
.showcase-media .phone { --phone-w: clamp(256px, 60vw, 312px); }
.showcase-copy .feature-mini { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 18px; }
.feature-mini li { display: flex; gap: 14px; align-items: flex-start; }
.feature-mini .ic { width: 38px; height: 38px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.feature-mini .ic svg { width: 20px; height: 20px; }
.feature-mini h4 { margin: 0 0 2px; font-size: 16.5px; font-weight: 600; }
.feature-mini p { margin: 0; font-size: 15px; color: var(--text-2); line-height: 1.4; }

/* ============================ ÖZELLİKLER (bento) ============================ */
.bento { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bento { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .bento { grid-template-columns: repeat(3,1fr); align-items: start; } }
.bcard {
  position: relative; overflow: hidden;
  background: var(--bg-elev); border-radius: var(--r-card);
  padding: clamp(22px, 3vw, 28px); box-shadow: var(--sh-sm);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s;
}
.bcard:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.bcard .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-bottom: 16px; }
.bcard .ic svg { width: 23px; height: 23px; }
.bcard h4 { margin: 0 0 7px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.bcard p { margin: 0; font-size: 15px; color: var(--text-2); line-height: 1.45; }
.bcard.wide { grid-column: 1 / -1; }
@media (min-width: 980px) { .bcard.span2 { grid-column: span 2; } }

/* QR mini demo */
.qr-demo { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 18px; }
.qr {
  width: 92px; height: 92px; border-radius: 14px; background: var(--bg); padding: 9px;
  box-shadow: inset 0 0 0 1px var(--hair); display: grid;
  grid-template-columns: repeat(7,1fr); grid-template-rows: repeat(7,1fr); gap: 2px;
}
.qr i { background: var(--text); border-radius: 1.5px; }
.qr i.off { background: transparent; }

/* PWA mini demo */
.pwa-row { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.chip-soft { font-size: 13px; font-weight: 600; padding: 7px 13px; border-radius: var(--r-pill); background: var(--surface-2); color: var(--text-2); }

/* availability bars */
.avail { display: flex; gap: 5px; margin-top: 18px; align-items: flex-end; height: 46px; }
.avail i { flex: 1; border-radius: 4px 4px 2px 2px; background: var(--accent-soft); }
.avail i.full { background: var(--accent); }
.avail i.block { background: repeating-linear-gradient(45deg, var(--surface-3) 0 4px, var(--surface-2) 4px 8px); }

/* ============================ NASIL ÇALIŞIR ============================ */
.steps { display: grid; gap: 16px; counter-reset: s; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4,1fr); } }
.step { position: relative; padding: 26px 22px; border-radius: var(--r-card); background: var(--bg-elev); box-shadow: var(--sh-sm); }
.step .num { font-size: 14px; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.step h4 { margin: 14px 0 6px; font-size: 18px; font-weight: 700; }
.step p { margin: 0; font-size: 14.5px; color: var(--text-2); line-height: 1.45; }
.step .line { position: absolute; top: 38px; right: -8px; width: 16px; height: 2px; background: var(--hair); display: none; }
@media (min-width: 760px) { .step:not(:last-child) .line { display: block; } }

/* ============================ KİMLER İÇİN ============================ */
.sectors { display: flex; flex-wrap: wrap; gap: 8px; }
.sector-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--bg-elev); box-shadow: inset 0 0 0 1px var(--hair);
  font-size: 14px; font-weight: 500;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s, color .3s;
}
.sector-chip:hover { transform: translateY(-1px); box-shadow: inset 0 0 0 1.5px var(--accent), var(--sh-sm); }
.sector-chip .dot { width: 7px; height: 7px; border-radius: 50%; }

/* ============================ SOSYAL KANIT ============================ */
.quotes { display: grid; gap: 16px; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3,1fr); } }
.quote { background: var(--bg-elev); border-radius: var(--r-card); padding: clamp(24px,3vw,30px); box-shadow: var(--sh-sm); display: flex; flex-direction: column; }
.quote .stars { color: var(--amber); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.quote blockquote { margin: 0 0 20px; font-size: 17px; line-height: 1.5; font-weight: 500; flex: 1; text-wrap: pretty; }
.quote .who { display: flex; align-items: center; gap: 11px; }
.quote .av { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); flex: none; box-shadow: inset 0 0 0 1px var(--hair); }
.quote .who b { display: block; font-size: 14.5px; font-weight: 600; }
.quote .who small { font-size: 13px; color: var(--text-2); }
.placeholder-tag { font-family: ui-monospace, monospace; font-size: 11px; color: var(--text-3); margin-top: 16px; }

/* ============================ FİYATLANDIRMA ============================ */
.trial-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
  background: var(--accent-soft); color: var(--accent);
  padding: 12px 20px; border-radius: var(--r-pill); font-weight: 600; font-size: 15px;
  width: fit-content; margin: 0 auto 28px;
}
.bill-toggle { display: inline-flex; gap: 4px; padding: 4px; border-radius: var(--r-pill); background: var(--surface-2); margin: 0 auto 40px; }
.bill-toggle button { border: none; background: transparent; padding: 9px 20px; border-radius: var(--r-pill); font-size: 14.5px; font-weight: 600; color: var(--text-2); transition: color .25s; position: relative; }
.bill-toggle button.on { color: var(--text); background: var(--bg-elev); box-shadow: var(--sh-sm); }
.bill-toggle .save { font-size: 11px; color: var(--green); font-weight: 700; margin-left: 6px; }

.plans { display: grid; gap: 16px; align-items: stretch; }
@media (min-width: 820px) { .plans { grid-template-columns: repeat(3,1fr); } }
.plan { display: flex; flex-direction: column; background: var(--bg-elev); border-radius: var(--r-card); padding: clamp(24px,3vw,32px); box-shadow: var(--sh-sm); position: relative; }
.plan.featured { box-shadow: inset 0 0 0 2px var(--accent), var(--sh-md); }
.plan .pop { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 13px; border-radius: var(--r-pill); white-space: nowrap; }
.plan .pname { font-size: 19px; font-weight: 700; }
.plan .pdesc { font-size: 14px; color: var(--text-2); margin: 4px 0 20px; min-height: 38px; }
.plan .price { display: flex; align-items: baseline; gap: 4px; }
.plan .price .amt { font-size: clamp(40px,7vw,48px); font-weight: 800; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan .price .per { font-size: 14px; color: var(--text-2); }
.plan .price-note { font-size: 12.5px; color: var(--text-3); margin-top: 6px; min-height: 18px; }
.plan .btn { margin-top: 22px; width: 100%; }
.plan ul { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text); line-height: 1.35; }
.plan li.muted { color: var(--text-3); }
.plan li .ck { width: 19px; height: 19px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-top: 1px; }
.plan li.muted .ck { background: var(--surface-2); color: var(--text-3); }
.plan li .ck svg { width: 11px; height: 11px; }
.price-foot { text-align: center; font-size: 13px; color: var(--text-3); margin-top: 26px; }

/* ============================ SSS ============================ */
.faq { max-width: 760px; margin-inline: auto; }
.qa { border-bottom: 1px solid var(--hair); }
.qa button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; background: none; border: none; padding: 22px 4px; text-align: left; font-size: clamp(16px,3.6vw,19px); font-weight: 600; color: var(--text); letter-spacing: var(--ls); }
.qa .pm { width: 24px; height: 24px; flex: none; position: relative; }
.qa .pm::before, .qa .pm::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--text-2); transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .3s; }
.qa .pm::before { width: 15px; height: 2px; }
.qa .pm::after { width: 2px; height: 15px; }
.qa[aria-expanded="true"] .pm::after { transform: rotate(90deg); opacity: 0; }
.qa .ans { overflow: hidden; height: 0; transition: height .4s cubic-bezier(.2,.7,.2,1); }
.qa .ans-inner { padding: 0 4px 24px; font-size: 16px; line-height: 1.55; color: var(--text-2); max-width: 64ch; }

/* ============================ KAPANIŞ CTA ============================ */
.closing { text-align: center; }
.closing-card {
  position: relative; overflow: hidden;
  background: var(--text); color: var(--bg);
  border-radius: var(--r-sheet); padding: clamp(44px, 8vw, 90px) var(--pad);
}
:root[data-theme="dark"] .closing-card { background: var(--bg-elev); color: var(--text); box-shadow: inset 0 0 0 1px var(--hair); }
.closing-card .h2 { color: inherit; max-width: 18ch; margin: 0 auto; }
.closing-card .lead { color: inherit; opacity: .7; margin: 20px auto 0; max-width: 40ch; }
.closing-card .hero-cta { margin-top: 32px; }
.closing-card .btn-primary { background: var(--accent); color: #fff; }
.closing-card .btn-ghost { background: transparent; color: inherit; box-shadow: inset 0 0 0 1.5px currentColor; }
.closing-rings span { position: absolute; border-radius: 50%; border: 1px solid currentColor; opacity: .12; pointer-events: none; }

/* ============================ FOOTER ============================ */
.footer { padding-block: clamp(44px, 7vw, 72px) 40px; border-top: 1px solid var(--hair); }
.footer-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer .brand { margin-bottom: 14px; }
.footer p.tag { font-size: 14px; color: var(--text-2); max-width: 28ch; line-height: 1.5; }
.footer h5 { font-size: 13px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { font-size: 15px; color: var(--text-2); transition: color .2s; }
.footer a:hover { color: var(--text); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hair-soft); font-size: 13px; color: var(--text-3); }

/* ─── "Kendi sitenize gömün" geniş bento kartı (#features) ─── */
.embed-bcard { display: grid; gap: clamp(20px, 3vw, 34px); align-items: center; }
@media (min-width: 760px) { .embed-bcard { grid-template-columns: 1.05fr 1fr; } }
.embed-bcard .eb-copy { min-width: 0; }
.eb-code {
  background: var(--surface-2); border-radius: var(--r-tile);
  padding: clamp(16px, 2.4vw, 22px);
  font-size: 13px; line-height: 1.8; color: var(--text-2);
  box-shadow: inset 0 0 0 1px var(--hair-soft);
  overflow-x: auto;
}
.eb-code .eb-row { display: block; white-space: nowrap; }
.eb-code .eb-tag { color: var(--text-3); }
.eb-code .eb-at  { color: var(--accent); }
.eb-code .eb-str { color: var(--text); }
