:root {
  --ground: #F5F7FB;
  --surface: #FFFFFF;
  --ink: #0F172A;
  --muted: #5A6473;
  --line: #E2E8F0;
  --line-strong: #CBD5E1;
  --teal: #2563EB;
  --teal-ink: #1E40AF;
  --teal-soft: #E8F0FE;
  --amber: #B96C22;
  --amber-soft: #F3E7D6;
  --gblue: #1a73e8;
  --gstar: #fbbc04;
  --shadow: 0 1px 2px rgba(15,23,42,.05), 0 10px 30px -14px rgba(15,23,42,.18);
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Mono", "Segoe UI Mono", Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ground: #0B1220; --surface: #131C2E; --ink: #E6EDF7; --muted: #93A0B5;
    --line: #22304A; --line-strong: #35455F; --teal: #60A5FA; --teal-ink: #BFD7FE;
    --teal-soft: #16233A; --amber: #DB9A52; --amber-soft: #2A2015; --gblue: #8ab4f8;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 12px 34px -16px rgba(0,0,0,.7);
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html, body { height: 100%; }
body {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* ---------- mobil kapısı ----------
   Telefonda (≤767px) arayüz yerine "büyük ekrandan aç" mesajı gösterilir.       */
.mobile-gate { display: none; }
@media (max-width: 767px) {
  body > *:not(.mobile-gate) { display: none !important; }
  .mobile-gate {
    display: flex; align-items: center; justify-content: center;
    position: fixed; inset: 0; z-index: 100; padding: 1.5rem;
    background: #F6FAF8; color: #12232B; text-align: center;
  }
  .mg-card {
    max-width: 30rem; background: #fff; border: 1px solid #E3EDE9; border-radius: 22px;
    padding: 2.2rem 1.6rem; box-shadow: 0 24px 50px -30px rgba(16,60,48,.5);
  }
  .mg-logo {
    width: 54px; height: 54px; margin: 0 auto 1.2rem; border-radius: 50%;
    background: #E7F4EF; color: #14B08A;
    display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  }
  .mg-card h1 { font-size: 1.25rem; line-height: 1.35; letter-spacing: -.02em; }
  .mg-card p { margin-top: .9rem; font-size: .88rem; line-height: 1.6; color: #5C6E6C; }
  .mg-note { font-size: .8rem !important; color: #0E8B6D !important; font-weight: 600; }
}

/* ---------- top bar ---------- */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .85rem 1.25rem; border-bottom: 1px solid var(--line);
  background: var(--surface); position: sticky; top: 0; z-index: 10;
}
.brand { display: flex; align-items: center; gap: .55rem; }
.logo { color: var(--teal); font-size: 1.35rem; }
.brand-name { font-weight: 800; letter-spacing: -.02em; font-size: 1.1rem; }
.brand-tag {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px; padding: .1rem .55rem;
}
.topbar-note { font-size: .8rem; color: var(--muted); }
@media (max-width: 640px) { .topbar-note { display: none; } }

/* ---------- landing ----------
   Kendi açık tema token'ları var: uygulama koyu temada olsa bile bu sayfa hep aydınlık.
   Renkler, üretilen sitenin yeşil paletiyle aynı aileden.                              */
.landing {
  --lp-bg: #F6FAF8; --lp-surface: #FFFFFF; --lp-ink: #12232B; --lp-muted: #5C6E6C;
  --lp-line: #E3EDE9; --lp-accent: #14B08A; --lp-accent-d: #0E8B6D; --lp-soft: #E7F4EF;
  --lp-shadow: 0 1px 2px rgba(16,60,48,.04), 0 18px 40px -26px rgba(16,60,48,.35);
  background: var(--lp-bg); color: var(--lp-ink); min-height: 100vh;
  padding-bottom: 3rem;
}
.landing ::selection { background: var(--lp-soft); }
.lp-wrap { max-width: 1060px; margin: 0 auto; padding: 0 1.25rem; }

/* nav */
.lp-nav {
  display: flex; align-items: center; gap: 1rem; justify-content: space-between;
  max-width: 1060px; margin: 0 auto; padding: 1.1rem 1.25rem;
}
.lp-brand { display: flex; align-items: center; gap: .45rem; font-weight: 800; letter-spacing: -.02em; font-size: 1.1rem; }
.lp-logo { color: var(--lp-accent); font-size: 1.3rem; }
.lp-links { display: flex; gap: 1.4rem; font-size: .86rem; font-weight: 600; }
.lp-links a { color: var(--lp-muted); text-decoration: none; }
.lp-links a:hover { color: var(--lp-accent); }
@media (max-width: 760px) { .lp-links { display: none; } }

/* buttons */
.lp-btn {
  border: none; cursor: pointer; border-radius: 999px; padding: .85rem 1.4rem;
  background: var(--lp-accent); color: #fff; font-family: inherit; font-size: .95rem; font-weight: 700;
  box-shadow: 0 14px 30px -14px rgba(20,176,138,.7); transition: transform .12s ease, background .12s ease;
}
.lp-btn:hover { background: var(--lp-accent-d); transform: translateY(-1px); }
.lp-btn-sm { padding: .55rem 1rem; font-size: .84rem; box-shadow: none; }
.lp-btn-light { background: #fff; color: var(--lp-accent-d); box-shadow: 0 14px 30px -18px rgba(0,0,0,.5); }
.lp-btn-light:hover { background: #F2FBF8; }

/* hero */
.lp-hero { text-align: center; padding: 3.2rem 0 1rem; }
.lp-eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  color: var(--lp-accent-d); background: var(--lp-soft); border-radius: 999px; padding: .34rem .9rem;
}
.lp-hero h1 { margin-top: 1.1rem; font-size: 2.9rem; line-height: 1.12; letter-spacing: -.035em; }
.lp-hero h1 em { font-style: normal; color: var(--lp-accent); }
.lp-sub { margin: 1rem auto 0; max-width: 60ch; color: var(--lp-muted); font-size: 1.02rem; }
@media (max-width: 560px) { .lp-hero h1 { font-size: 2rem; } }

.lp-domain-form { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-top: 2rem; }
.lp-domain-field {
  display: flex; align-items: center; flex: 1 1 340px; max-width: 430px;
  background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 999px; padding: 0 1rem;
  box-shadow: var(--lp-shadow);
}
.lp-domain-field:focus-within { border-color: var(--lp-accent); box-shadow: 0 0 0 4px var(--lp-soft); }
.lp-fix { color: var(--lp-muted); font-size: .92rem; }
.lp-domain-field input {
  flex: 1; min-width: 0; border: none; outline: none; background: none; color: var(--lp-ink);
  font-family: inherit; font-size: 1rem; font-weight: 700; padding: .9rem .2rem;
}
.lp-domain-field input::placeholder { color: #AFC0BB; font-weight: 500; }
.lp-hint { margin-top: .8rem; font-size: .78rem; color: var(--lp-muted); }

.lp-stats { display: flex; justify-content: center; flex-wrap: wrap; gap: 2.4rem; margin-top: 2.6rem; }
.lp-stats div { display: flex; flex-direction: column; }
.lp-stats b { font-size: 1.5rem; letter-spacing: -.02em; color: var(--lp-ink); }
.lp-stats span { font-size: .78rem; color: var(--lp-muted); }

/* sections */
.lp-sec { padding: 3.4rem 0 .6rem; }
.lp-head { text-align: center; margin-bottom: 1.6rem; }
.lp-head h2 { font-size: 1.8rem; letter-spacing: -.03em; }
.lp-head p { margin: .6rem auto 0; max-width: 60ch; color: var(--lp-muted); font-size: .92rem; }

.lp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 880px) { .lp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lp-grid { grid-template-columns: 1fr; } }
.lp-card {
  background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 18px;
  padding: 1.4rem 1.3rem; box-shadow: var(--lp-shadow);
  transition: transform .14s ease, box-shadow .14s ease;
}
.lp-card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px -28px rgba(16,60,48,.5); }
.lp-ic {
  width: 44px; height: 44px; border-radius: 13px; background: var(--lp-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: .9rem;
}
.lp-card h3 { font-size: 1.02rem; letter-spacing: -.01em; }
.lp-card p { margin-top: .4rem; font-size: .87rem; color: var(--lp-muted); line-height: 1.6; }

/* steps */
.lp-steps { list-style: none; counter-reset: step; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 760px) { .lp-steps { grid-template-columns: 1fr; } }
.lp-steps li {
  counter-increment: step; background: var(--lp-surface); border: 1px solid var(--lp-line);
  border-radius: 18px; padding: 1.4rem 1.3rem; box-shadow: var(--lp-shadow);
}
.lp-steps li::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--lp-accent); color: #fff;
  font-size: .85rem; font-weight: 800; margin-bottom: .8rem;
}
.lp-steps h3 { font-size: 1rem; letter-spacing: -.01em; }
.lp-steps p { margin-top: .35rem; font-size: .87rem; color: var(--lp-muted); line-height: 1.6; }

/* chips + quotes */
.lp-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.lp-chips span {
  background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 999px;
  padding: .45rem 1rem; font-size: .85rem; font-weight: 600; color: var(--lp-ink);
}
.lp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.8rem; }
@media (max-width: 880px) { .lp-quotes { grid-template-columns: 1fr; } }
.lp-quotes figure {
  background: var(--lp-soft); border: 1px solid #D7EBE3; border-radius: 18px; padding: 1.3rem 1.2rem;
}
.lp-quotes blockquote { font-size: .9rem; line-height: 1.6; color: var(--lp-ink); }
.lp-quotes figcaption { margin-top: .7rem; font-size: .78rem; font-weight: 700; color: var(--lp-accent-d); }

/* faq */
.lp-faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .6rem; }
.lp-faq details {
  background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 14px; padding: .95rem 1.1rem;
}
.lp-faq details[open] { border-color: #CFE9DF; background: #FBFEFD; }
.lp-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer;
  list-style: none; font-size: .93rem; font-weight: 700; color: var(--lp-ink);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary span {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--lp-soft);
  color: var(--lp-accent-d); display: flex; align-items: center; justify-content: center; font-size: .95rem;
}
.lp-faq details[open] summary span { transform: rotate(45deg); }
.lp-faq p { margin-top: .6rem; font-size: .88rem; line-height: 1.65; color: var(--lp-muted); }

/* final cta */
.lp-cta {
  margin-top: 3.6rem; text-align: center; border-radius: 24px; padding: 3rem 1.5rem;
  background: linear-gradient(150deg, var(--lp-accent), var(--lp-accent-d)); color: #fff;
  box-shadow: 0 30px 60px -34px rgba(14,139,109,.9);
}
.lp-cta h2 { font-size: 1.9rem; letter-spacing: -.03em; }
.lp-cta p { margin: .7rem auto 1.6rem; max-width: 48ch; font-size: .95rem; opacity: .92; }
@media (max-width: 560px) { .lp-cta h2 { font-size: 1.4rem; } }

.lp-foot { margin-top: 2rem; text-align: center; font-size: .78rem; color: var(--lp-muted); }

/* ---------- paketler (abonelik seçimi) + ödeme ---------- */
/* landing gibi: uygulama koyu temada olsa bile bu ekranlar hep aydınlık */
.pkg, .pay {
  --lp-bg: #F6FAF8; --lp-surface: #FFFFFF; --lp-ink: #12232B; --lp-muted: #5C6E6C;
  --lp-line: #E3EDE9; --lp-accent: #14B08A; --lp-accent-d: #0E8B6D; --lp-soft: #E7F4EF;
  --lp-shadow: 0 1px 2px rgba(16,60,48,.04), 0 18px 40px -26px rgba(16,60,48,.35);
  background: var(--lp-bg); color: var(--lp-ink); min-height: 100vh; padding: 2rem 1.25rem 4rem;
}
.pkg-wrap { max-width: 1060px; margin: 0 auto; }
.pkg-back {
  background: none; border: none; cursor: pointer; padding: .4rem 0;
  color: var(--lp-muted); font-family: inherit; font-size: .86rem; font-weight: 600;
}
.pkg-back:hover { color: var(--lp-accent); }

.pkg-head { text-align: center; margin-top: 1.4rem; }
.pkg-eyebrow {
  display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  color: var(--lp-accent-d); background: var(--lp-soft); border-radius: 999px; padding: .34rem .9rem;
}
.pkg-head h1 { margin-top: 1rem; font-size: 2.1rem; letter-spacing: -.03em; }
.pkg-head > p { margin: .7rem auto 0; max-width: 56ch; color: var(--lp-muted); font-size: .93rem; }
@media (max-width: 560px) { .pkg-head h1 { font-size: 1.6rem; } }

.pkg-toggle {
  display: inline-flex; gap: .25rem; margin-top: 1.5rem; padding: .25rem;
  background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 999px; box-shadow: var(--lp-shadow);
}
.pkg-toggle button {
  border: none; cursor: pointer; border-radius: 999px; padding: .5rem 1.1rem; background: none;
  color: var(--lp-muted); font-family: inherit; font-size: .85rem; font-weight: 700;
}
.pkg-toggle button.is-active { background: var(--lp-accent); color: #fff; }
.pkg-toggle em { font-style: normal; font-size: .72rem; opacity: .85; }

.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-top: 2.4rem; align-items: start; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.pkg-card {
  position: relative; background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 20px;
  padding: 1.6rem 1.4rem; box-shadow: var(--lp-shadow); display: flex; flex-direction: column;
}
.pkg-card.is-featured {
  border-color: var(--lp-accent); box-shadow: 0 26px 56px -30px rgba(20,176,138,.75);
}
@media (min-width: 901px) { .pkg-card.is-featured { transform: translateY(-14px); } }
.pkg-card.is-selected { border-color: var(--lp-accent-d); background: #FBFEFD; }
.pkg-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--lp-accent); color: #fff; border-radius: 999px; padding: .28rem .8rem;
  font-size: .7rem; font-weight: 800; letter-spacing: .03em; white-space: nowrap;
}
.pkg-card h2 { font-size: 1.15rem; letter-spacing: -.02em; }
.pkg-desc { margin-top: .35rem; font-size: .85rem; color: var(--lp-muted); line-height: 1.5; min-height: 2.6em; }
.pkg-price { display: flex; align-items: baseline; gap: .35rem; margin: 1.1rem 0 1.2rem; }
.pkg-price b { font-size: 2rem; letter-spacing: -.03em; }
.pkg-price span { font-size: .78rem; color: var(--lp-muted); }
.pkg-list { list-style: none; margin: 0 0 1.4rem; padding: 0; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.pkg-list li { position: relative; padding-left: 1.5rem; font-size: .87rem; color: var(--lp-muted); line-height: 1.5; }
.pkg-list li b { color: var(--lp-ink); font-weight: 700; }
.pkg-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--lp-accent); font-size: .82rem; font-weight: 800;
}
.pkg-btn {
  width: 100%; border: none; cursor: pointer; border-radius: 999px; padding: .8rem 1.2rem;
  background: var(--lp-accent); color: #fff; font-family: inherit; font-size: .9rem; font-weight: 700;
  transition: background .12s ease, transform .12s ease;
}
.pkg-btn:hover { background: var(--lp-accent-d); transform: translateY(-1px); }
.pkg-btn-soft { background: var(--lp-soft); color: var(--lp-accent-d); }
.pkg-btn-soft:hover { background: #D9EFE7; }
.pkg-note { margin-top: 1.8rem; text-align: center; font-size: .78rem; color: var(--lp-muted); }

/* seçim onayı */
.pkg-done {
  position: fixed; inset: 0; z-index: 20; display: flex; align-items: center; justify-content: center;
  padding: 1.25rem; background: rgba(18,35,43,.45);
}
.pkg-done-card {
  background: #fff; border-radius: 22px; padding: 2rem 1.8rem; max-width: 420px; width: 100%;
  text-align: center; box-shadow: 0 40px 80px -30px rgba(16,60,48,.6);
}
.pkg-done-ic {
  width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--lp-soft); color: var(--lp-accent-d);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800;
}
.pkg-done-card h2 { font-size: 1.25rem; letter-spacing: -.02em; color: var(--lp-ink); }
.pkg-done-card p { margin-top: .5rem; font-size: .86rem; color: var(--lp-muted); }
.pkg-done-card p b { color: var(--lp-ink); }
.pkg-done-btns { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }

/* ---------- ödeme ---------- */
.pay-wrap { max-width: 940px; margin: 0 auto; }
.pay-head { margin-top: 1.4rem; text-align: center; }
.pay-head h1 { font-size: 2rem; letter-spacing: -.03em; }
.pay-head p { margin-top: .5rem; font-size: .88rem; color: var(--lp-muted); }

.pay-grid { display: grid; grid-template-columns: 1fr .68fr; gap: 1.2rem; margin-top: 2rem; align-items: start; }
@media (max-width: 860px) { .pay-grid { grid-template-columns: 1fr; } }

.pay-form { display: flex; flex-direction: column; gap: 1rem; }
.pay-box {
  background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 18px;
  padding: 1.3rem 1.2rem; box-shadow: var(--lp-shadow);
  display: flex; flex-direction: column; gap: .8rem;
}
.pay-box legend {
  padding: 0 .1rem; font-size: .95rem; font-weight: 800; letter-spacing: -.01em; color: var(--lp-ink);
}
.pay-box label { display: flex; flex-direction: column; gap: .3rem; font-size: .78rem; font-weight: 700; color: var(--lp-ink); }
.pay-box input, .pay-box textarea {
  font-family: inherit; font-size: .9rem; font-weight: 500; color: var(--lp-ink);
  background: #fff; border: 1px solid var(--lp-line); border-radius: 10px; padding: .65rem .75rem;
  width: 100%; resize: vertical;
}
.pay-box input::placeholder, .pay-box textarea::placeholder { color: #AFC0BB; }
.pay-box input:focus, .pay-box textarea:focus {
  outline: none; border-color: var(--lp-accent); box-shadow: 0 0 0 3px var(--lp-soft);
}
.pay-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: .8rem; }
.pay-form .pkg-btn { margin-top: .3rem; }
.pay-form .pkg-btn:disabled { opacity: .65; cursor: progress; transform: none; }
.pay-note { text-align: center; font-size: .76rem; color: var(--lp-muted); }

.pay-summary {
  position: sticky; top: 1.25rem;
  background: var(--lp-surface); border: 1px solid var(--lp-line); border-radius: 18px;
  padding: 1.3rem 1.2rem; box-shadow: var(--lp-shadow);
}
@media (max-width: 860px) { .pay-summary { position: static; } }
.pay-summary h2 { font-size: 1rem; letter-spacing: -.01em; margin-bottom: .9rem; }
.pay-line { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: .87rem; padding: .45rem 0; }
.pay-line.muted { color: var(--lp-muted); font-size: .82rem; }
.pay-line.muted b { font-weight: 600; }
.pay-total {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  margin-top: .6rem; padding-top: .8rem; border-top: 1px solid var(--lp-line);
  font-size: .95rem; font-weight: 800;
}
.pay-total b { color: var(--lp-accent-d); font-size: 1.2rem; }
.pay-summary-note { margin-top: .9rem; font-size: .76rem; line-height: 1.5; color: var(--lp-muted); }
.pkg-done-ic.pay-fail { background: #FBE9E5; color: #C2492E; }

/* ---------- layout ---------- */
.layout {
  display: grid; grid-template-columns: 360px 1fr; gap: 1.1rem;
  max-width: none; margin: 0; padding: 1.1rem 1.25rem;
  align-items: stretch; min-height: calc(100vh - 60px);
}
@media (max-width: 900px) { .layout { grid-template-columns: 1fr; min-height: 0; } }

.panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow);
}
.form-panel { padding: 1.4rem 1.35rem; position: sticky; top: 5rem; align-self: start; }
@media (max-width: 900px) { .form-panel { position: static; } }

.form-title { font-size: 1.35rem; letter-spacing: -.02em; }
.form-sub { color: var(--muted); font-size: .9rem; margin: .3rem 0 1.2rem; }

.wizard { display: flex; flex-direction: column; gap: .8rem; }
.field { display: flex; flex-direction: column; gap: .3rem; }
.field > span { font-size: .78rem; font-weight: 600; color: var(--ink); }
.field > span em { font-weight: 400; color: var(--muted); font-style: normal; font-size: .72rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.field-sm { }
input, select, textarea {
  font-family: var(--sans); font-size: .9rem; color: var(--ink);
  background: var(--ground); border: 1px solid var(--line-strong); border-radius: 9px;
  padding: .55rem .65rem; width: 100%; resize: vertical;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--teal); outline-offset: 1px; border-color: var(--teal);
}

.upload-row { display: flex; align-items: center; gap: .6rem; }
.upload-thumb { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; border: 1px solid var(--line-strong); }
.upload-btn {
  cursor: pointer; font-family: var(--sans); font-size: .82rem; font-weight: 600;
  background: var(--ground); color: var(--ink); border: 1px solid var(--line-strong);
  border-radius: 9px; padding: .5rem .8rem;
}
.upload-btn:hover { border-color: var(--teal); color: var(--teal); }
.upload-clear { cursor: pointer; font-size: .75rem; background: none; border: none; color: var(--muted); text-decoration: underline; font-family: var(--sans); }
.upload-clear:hover { color: var(--amber); }
.upload-thumbs { flex-wrap: wrap; }
.upload-thumbs:empty { display: none; }
.upload-thumbs .upload-thumb { cursor: pointer; }
.upload-thumbs .upload-thumb:hover { border-color: var(--amber); }

/* ---------- services editor (name + optional image) ---------- */
.svc-list { display: flex; flex-direction: column; gap: .5rem; }
.svc-row { display: flex; align-items: center; gap: .5rem; }
.svc-row .svc-name { flex: 1; min-width: 0; }
.svc-thumb { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 8px; object-fit: cover;
  border: 1px solid var(--line-strong); cursor: pointer; }
.svc-thumb:hover { border-color: var(--amber); }
.svc-thumb-ph { width: 36px; height: 36px; flex: 0 0 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px dashed var(--line-strong); font-size: .95rem; opacity: .55; }
.svc-photo { cursor: pointer; font-family: var(--sans); font-size: .76rem; font-weight: 600; white-space: nowrap;
  background: var(--ground); color: var(--muted); border: 1px solid var(--line-strong);
  border-radius: 8px; padding: .45rem .6rem; }
.svc-photo:hover { border-color: var(--teal); color: var(--teal); }
.svc-remove { cursor: pointer; flex: 0 0 auto; font-family: var(--sans); font-size: .85rem; line-height: 1;
  background: none; color: var(--muted); border: 1px solid transparent; border-radius: 8px; padding: .4rem .5rem; }
.svc-remove:hover { color: var(--amber); border-color: var(--line-strong); }
.svc-add { align-self: flex-start; margin-top: .1rem; }

.generate-btn {
  margin-top: .4rem; border: none; cursor: pointer;
  background: var(--teal); color: #fff; font-weight: 700; font-size: .95rem;
  padding: .8rem 1rem; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: transform .08s ease, filter .15s ease;
}
@media (prefers-color-scheme: dark) { .generate-btn { color: #08131F; } }
.generate-btn:hover { filter: brightness(1.07); }
.generate-btn:active { transform: translateY(1px); }
.generate-btn:disabled { opacity: .6; cursor: wait; }
.spark { font-size: .9rem; }
.ai-note { font-size: .7rem; color: var(--muted); margin-top: .1rem; line-height: 1.4; }

/* ---------- output panel ---------- */
.output-panel { min-height: 560px; height: 100%; display: flex; flex-direction: column; overflow: hidden; }
.tabs { display: flex; gap: .3rem; padding: .7rem .7rem 0; border-bottom: 1px solid var(--line); }
.tab {
  border: none; background: transparent; cursor: pointer; font-family: var(--sans);
  font-size: .88rem; font-weight: 600; color: var(--muted); padding: .6rem .8rem;
  border-radius: 9px 9px 0 0; border-bottom: 2px solid transparent;
}
.tab:hover { color: var(--ink); }
.tab.is-active { color: var(--teal); border-bottom-color: var(--teal); background: var(--teal-soft); }

.save-btn {
  margin-left: auto; align-self: center; margin-right: .5rem;
  border: none; cursor: pointer; border-radius: 999px; padding: .5rem 1rem;
  background: var(--teal); color: #fff; font-family: inherit; font-size: .8rem; font-weight: 700;
  transition: filter .12s ease, transform .12s ease;
}
.save-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.save-btn.is-saved {
  background: var(--teal-soft); color: var(--teal-ink); cursor: default; transform: none; filter: none;
}

/* önizlemenin altındaki kaydet çubuğu (site içeriğinin dışında) */
.save-bar {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem; padding: 1rem 1.1rem;
  border: 1px solid var(--line); border-radius: 14px; background: var(--teal-soft);
}
.save-bar p { font-size: .85rem; color: var(--muted); }
.save-btn-lg { margin: 0; align-self: auto; font-size: .9rem; padding: .7rem 1.3rem; }

.placeholder, .loading {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--muted); gap: 1rem; padding: 3rem 2rem; min-height: 460px;
}
.ph-icon { font-size: 3rem; color: var(--line-strong); }
.placeholder b { color: var(--ink); }

.loader {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid var(--line-strong); border-top-color: var(--teal);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .loader { animation-duration: 2s; } }
#loadingMsg { font-size: .9rem; }

.tab-body { padding: 1rem; flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; }
#tab-gbp.tab-body { overflow-y: auto; }

/* ---------- browser frame (site preview) ---------- */
.browser-frame {
  border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden;
  background: #fff; box-shadow: var(--shadow);
  flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column;
}
/* üretim biter bitmez site yumuşakça belirir */
.browser-frame.is-fresh { animation: siteReveal .6s cubic-bezier(.2,.7,.3,1) both; }
@keyframes siteReveal {
  from { opacity: 0; transform: translateY(10px) scale(.985); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) { .browser-frame.is-fresh { animation: none; } }
.browser-bar {
  display: flex; align-items: center; gap: .4rem; padding: .5rem .7rem;
  background: #ececec; border-bottom: 1px solid #ddd;
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #c9c9c9; }
.browser-bar .url {
  margin-left: .5rem; background: #fff; border-radius: 6px; padding: .2rem .6rem;
  font-size: .72rem; color: #555; font-family: var(--mono); flex: 1;
}
.site-scroll { flex: 1 1 auto; min-height: 0; overflow-y: auto; background: #fff; }

/* generated site is fully self-styled and light-only (a "TalkingMinds"-style mockup) */
.gs {
  --gs-teal: #14B08A; --gs-teal-d: #0E8B6D; --gs-ink: #1C2B30; --gs-body: #5B6B6B;
  --gs-orange: #F3A13C; --gs-mint: #E7F4EF; --gs-mint-2: #CFE9DF; --gs-peach: #FBE3CB;
  color: var(--gs-ink); font-family: var(--sans); background: #fff; line-height: 1.5;
}

/* ---- navbar ---- */
/* equal side columns keep the links dead-center whether or not a phone is shown */
.gs .gs-nav {
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center; gap: 1rem; padding: 1.05rem 1.6rem;
}
.gs .gs-nav-right { display: flex; justify-content: flex-end; }
.gs .gs-brand { display: flex; align-items: center; gap: .4rem; font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; cursor: pointer; }
.gs .gs-brand .leaf { color: var(--gs-teal); font-size: 1.05rem; }
.gs .gs-links { display: flex; gap: 1.25rem; font-size: .82rem; font-weight: 600; }
.gs .gs-links a { color: var(--gs-ink); text-decoration: none; opacity: .8; cursor: pointer; transition: opacity .12s ease, color .12s ease; }
.gs .gs-links a:hover { opacity: 1; color: var(--gs-teal); }
.gs .gs-links a.active { color: var(--gs-teal); opacity: 1; }
.gs .gs-page[hidden] { display: none; }
.gs .gs-phone { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700; white-space: nowrap; }
.gs .gs-phone .ic {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gs-teal); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
}
@media (max-width: 640px) { .gs .gs-links { display: none; } }

/* ---- hero ---- */
.gs .gs-hero {
  display: grid; grid-template-columns: 1.3fr .8fr; gap: 1.4rem; align-items: center;
  padding: 1.2rem 1.6rem 2.6rem;
}
.gs .gs-eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .05em; color: var(--gs-teal); text-transform: uppercase; margin-bottom: .55rem; }
.gs .gs-hero h1 { font-size: 1.95rem; line-height: 1.12; letter-spacing: -.025em; color: var(--gs-ink); margin-bottom: .7rem; }
.gs .gs-hero .lead { color: var(--gs-body); font-size: .88rem; max-width: 56ch; margin-bottom: 1.15rem; }
.gs .gs-hero-btns { display: flex; flex-wrap: wrap; gap: .7rem; margin-bottom: 1.7rem; }
.gs .gs-btn { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .82rem; padding: .7rem 1.25rem; border-radius: 999px; text-decoration: none; }
.gs .gs-btn-primary { background: var(--gs-teal); color: #fff; }
.gs .gs-btn-outline { border: 1.5px solid var(--gs-orange); color: var(--gs-orange); }
.gs .gs-stats { display: flex; gap: 1.7rem; flex-wrap: wrap; }
.gs .gs-stat-num { font-size: 1.5rem; font-weight: 800; color: var(--gs-orange); letter-spacing: -.02em; }
.gs .gs-stat-label { font-size: .72rem; color: var(--gs-body); max-width: 15ch; margin-top: .15rem; }

/* hero photo w/ decorative shapes */
.gs .gs-hero-right { position: relative; display: flex; justify-content: center; align-items: center; min-height: 290px; }
.gs .gs-shape { position: absolute; border-radius: 18px; z-index: 0; width: 46%; aspect-ratio: 1/1; }
.gs .gs-shape-peach { background: var(--gs-peach); top: 4%; right: 8%; }
.gs .gs-shape-mint { background: var(--gs-mint-2); bottom: 4%; left: 6%; }
.gs .gs-photo {
  position: relative; z-index: 1; width: 68%; aspect-ratio: 1/1; border-radius: 22px; overflow: hidden;
  background: linear-gradient(150deg, var(--gs-teal), var(--gs-teal-d));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; font-weight: 800; box-shadow: 0 20px 44px -20px rgba(20,90,72,.55);
}
.gs .gs-photo img { width: 100%; height: 100%; object-fit: cover; }
.gs .gs-photo.has-img { aspect-ratio: auto; height: auto; background: none; }
.gs .gs-photo.has-img img { height: auto; object-fit: fill; display: block; }
@media (max-width: 640px) { .gs .gs-hero { grid-template-columns: 1fr; } .gs .gs-hero-right { min-height: 240px; } }

/* ---- offer / services ---- */
.gs .gs-offer { background: var(--gs-mint); padding: 2.4rem 1.6rem; text-align: center; }
.gs .gs-offer > h2 { font-size: 1.5rem; color: var(--gs-ink); letter-spacing: -.02em; }
.gs .gs-offer > .sub { color: var(--gs-body); font-size: .85rem; max-width: 48ch; margin: .5rem auto 1.7rem; }
.gs .gs-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: left; }
@media (max-width: 680px) { .gs .gs-svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .gs .gs-svc-grid { grid-template-columns: 1fr; } }
.gs .gs-svc { background: #fff; border-radius: 16px; padding: 1.3rem 1.1rem; box-shadow: 0 14px 32px -22px rgba(20,60,50,.45); }
.gs .gs-svc .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--gs-mint); overflow: hidden;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: .8rem;
}
.gs .gs-svc .ic img { width: 100%; height: 100%; object-fit: cover; }
/* uniform card images: same 4:3 frame whether the photo is a default or an upload */
.gs .gs-svc .ic.has-img {
  width: 100%; height: auto; aspect-ratio: 4 / 3; border-radius: 12px; background: none;
}
.gs .gs-svc .ic.has-img img { height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.gs .gs-svc h3 { font-size: .96rem; margin-bottom: .35rem; color: var(--gs-ink); }
.gs .gs-svc p { font-size: .8rem; color: var(--gs-body); line-height: 1.5; }

/* ---- clinic gallery slider ---- */
.gs .gs-clinic { padding: 2.4rem 1.6rem; }
.gs .gs-clinic-head { text-align: center; margin-bottom: 1.4rem; }
.gs .gs-clinic-head h2 { font-size: 1.5rem; color: var(--gs-ink); letter-spacing: -.02em; }
.gs .gs-clinic-head p { color: var(--gs-body); font-size: .85rem; max-width: 54ch; margin: .5rem auto 0; }
.gs .gs-slider { display: flex; align-items: center; gap: .8rem; }
.gs .gs-slider-viewport { flex: 1; overflow: hidden; border-radius: 18px; }
.gs .gs-slider-track { display: flex; transition: transform .35s ease; }
.gs .gs-slide { flex: 0 0 100%; aspect-ratio: 16/9; }
.gs .gs-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs .gs-slide.ph {
  display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: #fff;
  background: linear-gradient(150deg, var(--gs-mint-2), var(--gs-teal));
}
.gs .gs-slide-btn {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; border: none; cursor: pointer;
  background: #3b3b3b; color: #fff; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.gs .gs-slide-btn:hover { background: var(--gs-teal); }
.gs .gs-slider-dots { display: flex; justify-content: center; gap: .4rem; margin-top: 1rem; }
.gs .gs-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gs-mint-2); border: none; cursor: pointer; padding: 0; transition: width .25s ease, background .25s ease; }
.gs .gs-dot.active { background: var(--gs-teal); width: 20px; border-radius: 99px; }

/* ---- sık sorulan sorular (accordion) ---- */
.gs .gs-faq-head { text-align: center; margin-bottom: 1.2rem; }
.gs .gs-faq-head p { color: var(--gs-body); font-size: .85rem; max-width: 54ch; margin: .5rem auto 0; }
.gs .gs-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .6rem; }
.gs .gs-faq-item { border: 1px solid #e7ecea; border-radius: 14px; background: #fff; padding: .85rem 1rem; }
.gs .gs-faq-item[open] { border-color: var(--gs-mint-2); background: var(--gs-mint); }
.gs .gs-faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer;
  list-style: none; font-size: .92rem; font-weight: 700; color: var(--gs-ink);
}
.gs .gs-faq-item summary::-webkit-details-marker { display: none; }
.gs .gs-faq-ic {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--gs-teal); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .95rem; line-height: 1;
}
.gs .gs-faq-item[open] .gs-faq-ic { transform: rotate(45deg); }
.gs .gs-faq-item > p { margin-top: .6rem; font-size: .88rem; line-height: 1.65; color: var(--gs-body); }

/* ---- about + contact ---- */
.gs .gs-sec { padding: 2.2rem 1.6rem; }
.gs .gs-about { display: grid; grid-template-columns: 1fr .85fr; gap: 1.8rem; align-items: center; }
.gs .gs-about-text { padding-left: 1.4rem; }
.gs .gs-about-text p { max-width: none; line-height: 1.65; }
.gs .gs-about-text p + p { margin-top: .8rem; }
.gs .gs-about-photo {
  justify-self: center; width: 100%; max-width: 400px; aspect-ratio: 1/1; border-radius: 22px; overflow: hidden;
  background: linear-gradient(150deg, var(--gs-teal), var(--gs-teal-d));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800; box-shadow: 0 20px 44px -20px rgba(20,90,72,.55);
}
.gs .gs-about-photo img { width: 100%; height: 100%; object-fit: cover; }
.gs .gs-about-photo.has-img { aspect-ratio: auto; height: auto; background: none; }
.gs .gs-about-photo.has-img img { height: auto; object-fit: fill; display: block; }
@media (max-width: 640px) { .gs .gs-about { grid-template-columns: 1fr; } .gs .gs-about-photo { max-width: 200px; } }
/* align with .gs-about-text: section padding (1.6rem) + its extra 1.4rem */
.gs .gs-edu { padding-top: 0; padding-left: 3rem; }
.gs .gs-edu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; max-width: 64ch; }
.gs .gs-edu-list li { position: relative; padding-left: 1.1rem; min-height: 1.6em; font-size: .9rem; line-height: 1.6; color: var(--gs-body); }
.gs .gs-edu-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gs-teal);
}
.gs .gs-sec h2 { font-size: 1.3rem; color: var(--gs-ink); letter-spacing: -.02em; margin-bottom: .7rem; }
.gs .gs-sec p { color: var(--gs-body); font-size: .9rem; max-width: 64ch; }
.gs .gs-contact-row { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; font-size: .88rem; color: var(--gs-ink); margin-top: .3rem; }
.gs .gs-contact-row b { color: var(--gs-teal); }

/* ---- contact form ---- */
.gs .gs-contact-form { margin-top: 1.4rem; max-width: 560px; display: flex; flex-direction: column; gap: .8rem; }
.gs .gs-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 560px) { .gs .gs-form-row { grid-template-columns: 1fr; } }
.gs .gs-contact-form label, .gs .gs-book-form label { display: flex; flex-direction: column; gap: .3rem; font-size: .78rem; font-weight: 600; color: var(--gs-ink); }
.gs .gs-contact-form input, .gs .gs-contact-form textarea,
.gs .gs-book-form input, .gs .gs-book-form select {
  font-family: inherit; font-size: .88rem; font-weight: 400; color: var(--gs-ink);
  background: #fff; border: 1px solid #dfe6e3; border-radius: 10px; padding: .6rem .7rem; width: 100%; resize: vertical;
}
.gs .gs-contact-form input:focus, .gs .gs-contact-form textarea:focus,
.gs .gs-book-form input:focus, .gs .gs-book-form select:focus { outline: none; border-color: var(--gs-teal); box-shadow: 0 0 0 3px rgba(20,150,120,.12); }
.gs .gs-contact-form .gs-btn { align-self: center; border: none; cursor: pointer; margin-top: .2rem; }

/* ---- randevu talebi card (centered in the home page contact section) ---- */
.gs .gs-contact-home {
  text-align: center; padding-top: 2.6rem; padding-bottom: 2.8rem;
  background: linear-gradient(180deg, var(--gs-mint), #DCEFE7);
  border-top: 1px solid var(--gs-mint-2);
}
.gs .gs-contact-home .gs-contact-row { justify-content: center; }
/* white card so it lifts off the green section */
.gs .gs-contact-home .gs-book {
  margin: 1.4rem auto 0; max-width: 720px; text-align: left;
  background: #fff; border-color: #e3ede9;
}
.gs .gs-book {
  background: var(--gs-mint); border: 1px solid var(--gs-mint-2); border-radius: 18px; padding: 1.3rem 1.2rem;
  box-shadow: 0 18px 40px -26px rgba(20,90,72,.5);
}
.gs .gs-book h3 { font-size: 1.05rem; color: var(--gs-ink); letter-spacing: -.01em; }
.gs .gs-book-sub { font-size: .8rem; color: var(--gs-body); margin-top: .25rem; }
.gs .gs-book-form { margin-top: 1rem; display: flex; flex-direction: column; gap: .7rem; }
.gs .gs-book-form .gs-btn { align-self: center; border: none; cursor: pointer; margin-top: .3rem; text-align: center; }
.gs .gs-form-done {
  margin-top: 1.4rem; padding: 1rem 1.2rem; border-radius: 12px; font-size: .9rem; font-weight: 600;
  color: var(--gs-teal); background: var(--gs-mint); border: 1px solid var(--gs-mint-2);
}

/* ---- contact page: form left, clinic photo right ---- */
.gs .gs-contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 2rem; align-items: start; }
.gs .gs-contact-grid .gs-contact-form { max-width: none; }
.gs .gs-contact-side { position: sticky; top: 1rem; }
.gs .gs-shot {
  width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 44px -22px rgba(20,90,72,.5);
}
.gs .gs-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs .gs-shot-ph {
  width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; font-size: 2.4rem; color: #fff;
  background: linear-gradient(150deg, var(--gs-mint-2), var(--gs-teal));
}
.gs .gs-shot-ph span { font-size: .78rem; font-weight: 600; letter-spacing: .02em; opacity: .9; }
.gs .gs-shot-thumbs { display: flex; gap: .5rem; margin-top: .6rem; flex-wrap: wrap; }
.gs .gs-shot-thumb {
  width: 56px; height: 44px; padding: 0; border-radius: 9px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; background: none; opacity: .65; transition: opacity .15s ease, border-color .15s ease;
}
.gs .gs-shot-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs .gs-shot-thumb:hover { opacity: 1; }
.gs .gs-shot-thumb.active { opacity: 1; border-color: var(--gs-teal); }
.gs .gs-shot-addr { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .88rem; color: var(--gs-ink); }
.gs .gs-shot-addr .ic { flex: 0 0 auto; }
@media (max-width: 720px) { .gs .gs-contact-grid { grid-template-columns: 1fr; } .gs .gs-contact-side { position: static; } }
.gs .gs-foot { padding: 1.4rem 1.6rem; font-size: .75rem; color: #9aa8a4; text-align: center; border-top: 1px solid #eef1ef; }

/* ---- inline editable text (click to edit in the preview) ---- */
.gs .gs-editable { cursor: text; border-radius: 5px; transition: box-shadow .12s ease, background .12s ease; }
.gs .gs-editable:hover { box-shadow: 0 0 0 1px var(--gs-teal); }
.gs .gs-editable:focus { outline: none; box-shadow: 0 0 0 2px var(--gs-teal); background: rgba(20,150,120,.07); }

/* ---- blog ---- */
.gs .gs-blog { padding: 2.4rem 1.6rem; background: var(--gs-mint); }
.gs .gs-blog-head { text-align: center; margin-bottom: 1.4rem; }
.gs .gs-blog-head h2 { font-size: 1.5rem; color: var(--gs-ink); letter-spacing: -.02em; }
.gs .gs-blog-head p { color: var(--gs-body); font-size: .85rem; max-width: 54ch; margin: .5rem auto 0; }
.gs .gs-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 680px) { .gs .gs-blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .gs .gs-blog-grid { grid-template-columns: 1fr; } }
.gs .gs-blog-card {
  background: #fff; border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 14px 32px -22px rgba(20,60,50,.45);
}
.gs .gs-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gs .gs-blog-thumb {
  aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: #fff;
  background: linear-gradient(150deg, var(--gs-mint-2), var(--gs-teal)); overflow: hidden;
}
.gs .gs-blog-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .4rem; }
.gs .gs-blog-tag {
  align-self: flex-start; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--gs-teal); background: var(--gs-mint); border-radius: 99px; padding: .2rem .55rem;
}
.gs .gs-blog-card h3 { font-size: .95rem; color: var(--gs-ink); line-height: 1.3; }
.gs .gs-blog-card p { font-size: .8rem; color: var(--gs-body); line-height: 1.5; flex: 1; }
.gs .gs-blog-link { font-size: .8rem; font-weight: 700; color: var(--gs-teal); text-decoration: none; margin-top: .2rem; }
.gs .gs-blog-link:hover { text-decoration: underline; }

/* ---------- Google Business Profile ---------- */
.gbp-wrap { display: flex; flex-direction: column; gap: 1rem; }
.gbp-card {
  border: 1px solid var(--line); border-radius: 12px; background: var(--ground); overflow: hidden;
}
.gbp-card .head {
  display: flex; align-items: center; gap: .5rem; padding: .7rem .9rem;
  border-bottom: 1px solid var(--line); font-weight: 700; font-size: .9rem;
}
.gbp-card .head .ic { font-size: 1rem; }
.gbp-card .body { padding: .9rem; }
.copy-btn {
  margin-left: auto; font-size: .68rem; font-family: var(--mono); cursor: pointer;
  background: var(--surface); border: 1px solid var(--line-strong); color: var(--muted);
  border-radius: 6px; padding: .2rem .5rem;
}
.copy-btn:hover { color: var(--teal); border-color: var(--teal); }

/* maps listing mock */
.maps-listing {
  background: var(--surface); border-radius: 10px; border: 1px solid var(--line);
  padding: .9rem 1rem;
}
.maps-listing .biz-name { font-size: 1.05rem; color: var(--gblue); font-weight: 600; }
.maps-listing .rating { display: flex; align-items: center; gap: .35rem; font-size: .82rem; color: var(--muted); margin: .15rem 0 .3rem; }
.maps-listing .stars { color: var(--gstar); letter-spacing: 1px; }
.maps-listing .cat { font-size: .85rem; color: var(--muted); }
.maps-listing .addr { font-size: .82rem; color: var(--muted); margin-top: .2rem; }

.tag-list { display: flex; flex-wrap: wrap; gap: .35rem; }
.chip {
  font-size: .74rem; background: var(--teal-soft); color: var(--teal-ink);
  border: 1px solid var(--teal); border-radius: 999px; padding: .15rem .6rem; font-weight: 600;
}
.chip.sec { background: var(--surface); color: var(--muted); border-color: var(--line-strong); font-weight: 500; }

.desc-text { font-size: .88rem; color: var(--ink); }
.char-count { font-size: .7rem; color: var(--muted); font-family: var(--mono); margin-top: .4rem; }

.gpost { border: 1px solid var(--line); border-radius: 10px; padding: .7rem .8rem; background: var(--surface); }
.gpost + .gpost { margin-top: .55rem; }
.gpost .gp-type { font-family: var(--mono); font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: var(--amber); }
.gpost h4 { font-size: .9rem; margin: .2rem 0 .25rem; }
.gpost p { font-size: .82rem; color: var(--muted); }

.qa { padding: .55rem 0; border-bottom: 1px dashed var(--line); }
.qa:last-child { border-bottom: none; }
.qa .q { font-size: .86rem; font-weight: 600; }
.qa .a { font-size: .82rem; color: var(--muted); margin-top: .15rem; }
.qa .q::before { content: "S: "; color: var(--gblue); font-weight: 700; }
.qa .a::before { content: "C: "; color: var(--teal); font-weight: 700; }

.review-reply { border-left: 3px solid var(--teal); padding: .4rem 0 .4rem .7rem; margin-top: .5rem; }
.review-reply .rev { font-size: .82rem; color: var(--muted); font-style: italic; }
.review-reply .rep { font-size: .84rem; color: var(--ink); margin-top: .3rem; }
.review-reply.crit { border-left-color: var(--amber); }
