:root {
  /* Marketplace (Clinyo-benzeri mor) */
  --brand: #6c4dff;
  --brand-dark: #5538e0;
  --brand-soft: #efeaff;
  --brand-mid: #8b74ff;
  /* Business SaaS (mavi) */
  --navy: #1e4fd6;
  --navy-2: #163db0;
  --navy-deep: #0f2f8a;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #ffffff;
  --soft: #f7f8fa;
}

* { box-sizing: border-box; }

body.site-body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.brand-link {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.03em;
  color: var(--ink);
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  display: inline-block;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 7px 7px 7px 9px;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 0;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.site-nav-biz {
  background: #fff;
}

.nav-links a {
  color: #4b5563;
  font-size: .9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--brand); }

.mode-business .nav-links a:hover { color: var(--navy); }
.mode-business .brand-mark {
  background: linear-gradient(135deg, var(--navy), #60a5fa);
}

.nav-text-link {
  color: #374151;
  font-size: .9rem;
  font-weight: 500;
  padding: .35rem .5rem;
}
.nav-text-link:hover { color: var(--navy); }

.btn-brand {
  background: var(--brand);
  color: #fff !important;
  border: 0;
  font-weight: 600;
  border-radius: .75rem;
  padding: .55rem 1rem;
}
.btn-brand:hover { background: var(--brand-dark); color: #fff !important; }

.btn-outline-brand {
  border: 0;
  color: var(--brand) !important;
  background: var(--brand-soft);
  font-weight: 600;
  border-radius: .75rem;
  padding: .55rem 1rem;
}
.btn-outline-brand:hover { background: #e4dcff; }

.btn-soft {
  background: var(--brand-soft);
  color: var(--brand-dark) !important;
  font-weight: 600;
  border: 0;
  padding: .75rem 1.35rem;
  border-radius: .85rem;
}
.btn-soft:hover { background: #e4dcff; color: var(--brand-dark) !important; }

.btn-biz-cta {
  background: var(--navy);
  color: #fff !important;
  border: 0;
  font-weight: 600;
  border-radius: .75rem;
  padding: .55rem 1.1rem;
}
.btn-biz-cta:hover { background: var(--navy-2); color: #fff !important; }

/* ===== Marketplace hero ===== */
.hero-market {
  padding: 40px 0 90px;
  background: #fff;
}

.hero-title {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #111;
}
.hero-title span {
  position: relative;
  display: inline-block;
}
.hero-title span::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .08em;
  height: .22em;
  background: #c4b5fd;
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 28rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-visual { position: relative; max-width: 420px; margin-left: auto; }
.hero-photo {
  height: min(460px, 62vw);
  border-radius: 1.5rem;
  background:
    linear-gradient(160deg, rgba(108,77,255,.15), rgba(17,24,39,.25)),
    radial-gradient(circle at 40% 30%, #ddd6fe, #7c3aed 55%, #312e81);
  box-shadow: 0 28px 60px rgba(108,77,255,.22);
}

.hero-avatars {
  position: absolute;
  top: 22px;
  left: -14px;
  display: flex;
}
.hero-avatars span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(135deg, #a78bfa, #6c4dff);
  margin-left: -12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}
.hero-avatars span:last-child {
  background: linear-gradient(135deg, #f9a8d4, #c084fc);
}

.search-card {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1.5rem;
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: 0 20px 50px rgba(17,24,39,.1);
}

.search-title {
  font-weight: 700;
  margin-bottom: .9rem;
  font-size: 1.05rem;
}

.search-card .form-control,
.search-card .form-select {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
  font-size: 1rem;
}
.search-card .form-label {
  color: #9ca3af;
  font-size: .85rem;
  margin-bottom: .2rem;
}
.search-divider {
  width: 1px;
  background: #e5e7eb;
  align-self: stretch;
  min-height: 48px;
}
.btn-search {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  padding: 0;
  display: grid;
  place-items: center;
  margin-left: auto;
  font-size: 1.2rem;
}

.section { padding: 72px 0; }
.section-soft { background: var(--soft); }

.section-title {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0;
}

.section-lead {
  color: var(--muted);
  max-width: 46rem;
  margin-top: .75rem;
  line-height: 1.65;
}

.eyebrow {
  font-size: .72rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: .55rem;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.7); }

.cat-card {
  display: block;
  text-align: center;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 1.15rem;
  padding: 1.5rem .85rem;
  transition: .2s ease;
  box-shadow: 0 4px 14px rgba(17,24,39,.03);
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: #ddd6fe;
  box-shadow: 0 14px 32px rgba(108,77,255,.12);
}
.cat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto .85rem;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.55rem;
}
.cat-label { font-weight: 700; font-size: .95rem; }

.firm-card {
  display: block;
  background: #fff;
  border: 1px solid #eceff3;
  border-radius: 1.15rem;
  overflow: hidden;
  transition: .2s ease;
}
.firm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17,24,39,.08);
}
.firm-badges {
  display: flex;
  justify-content: space-between;
  padding: .7rem .8rem 0;
}
.badge-city {
  background: #1f2937;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .28rem .55rem;
  border-radius: .4rem;
}
.badge-star {
  color: #ca8a04;
  font-size: .82rem;
  font-weight: 700;
}
.firm-logo {
  --accent: #6c4dff;
  height: 150px;
  margin: .75rem 1rem 0;
  border-radius: 1rem;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  font-weight: 800;
}
.firm-name {
  text-align: center;
  font-weight: 700;
  padding: .95rem .75rem 1.15rem;
  font-size: .95rem;
}

.owner-visual { position: relative; }
.owner-photo {
  height: 440px;
  border-radius: 1.4rem;
  background:
    linear-gradient(160deg, rgba(108,77,255,.2), rgba(17,24,39,.4)),
    radial-gradient(circle at 50% 30%, #c4b5fd, #4c1d95);
}
.owner-bubble {
  position: absolute;
  top: 20px;
  right: 14px;
  background: #fff;
  border-radius: 1.1rem;
  padding: .9rem 1.05rem;
  max-width: 220px;
  font-size: .86rem;
  box-shadow: 0 14px 32px rgba(0,0,0,.14);
}
.owner-bubble .stars { color: #eab308; letter-spacing: 1px; margin-bottom: .3rem; }
.owner-stat {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 1rem;
  padding: .8rem 1.05rem;
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.mini-feat h3 { font-size: 1rem; font-weight: 700; margin: .7rem 0 .35rem; }
.mini-feat p { color: var(--muted); font-size: .9rem; margin: 0; line-height: 1.55; }
.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.bg-teal { background: #ef4444; }
.bg-amber { background: #f59e0b; }
.bg-green { background: #22c55e; }
.bg-sky { background: #38bdf8; }

/* ===== Business landing (mavi) ===== */
.biz-hero {
  position: relative;
  background: linear-gradient(135deg, #1e4fd6 0%, #1a44bf 50%, #1638a8 100%);
  color: #fff;
  padding: 70px 0 110px;
  overflow: hidden;
}
.biz-hero-title {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.biz-hero-lead {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-bottom: 1.85rem;
  max-width: 34rem;
  line-height: 1.65;
}
.biz-hero .btn-light {
  border-radius: 999px;
  padding: .85rem 1.5rem;
}
.biz-hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 80px;
  background: #fff;
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}

.device-stack { position: relative; min-height: 340px; }
.mock-desktop {
  background: #f1f5f9;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 30px 60px rgba(0,0,0,.3);
  transform: rotate(-1deg);
}
.mock-topbar { height: 12px; background: #cbd5e1; border-radius: 6px; margin-bottom: .75rem; }
.mock-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-bottom: .75rem; }
.mock-cards span { height: 44px; border-radius: .5rem; }
.mock-cards .c1 { background: #60a5fa; }
.mock-cards .c2 { background: #4ade80; }
.mock-cards .c3 { background: #fb923c; }
.mock-cards .c4 { background: #a78bfa; }
.mock-table { height: 150px; border-radius: .6rem; background: linear-gradient(#fff, #e2e8f0); }

.mock-phone {
  position: absolute;
  right: 6%;
  bottom: -24px;
  width: 148px;
  height: 290px;
  background: #0f172a;
  border-radius: 1.5rem;
  padding: 10px;
  box-shadow: 0 22px 44px rgba(0,0,0,.38);
  transform: rotate(5deg);
}
.mock-phone-screen {
  height: 100%;
  background: #f8fafc;
  border-radius: 1.1rem;
  padding: .65rem;
}
.ph-stat { height: 30px; background: #dbeafe; border-radius: .45rem; margin-bottom: .45rem; }
.ph-stat:nth-child(2) { background: #bbf7d0; }
.ph-list { height: 130px; background: #e2e8f0; border-radius: .55rem; margin-top: .65rem; }

.feature-card {
  height: 100%;
  background: #fff;
  border: 0;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: #eff6ff;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: .9rem;
}
.feature-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { color: var(--muted); font-size: .93rem; margin-bottom: .8rem; line-height: 1.55; }
.feature-link { color: var(--navy); font-weight: 700; font-size: .9rem; }

.offer-illustration {
  position: relative;
  height: 340px;
  border-radius: 1.35rem;
  background: linear-gradient(160deg, #eff6ff, #dbeafe);
  overflow: hidden;
}
.offer-chart {
  position: absolute;
  left: 16%;
  bottom: 16%;
  width: 58%;
  height: 48%;
  background: linear-gradient(to top right, #1e4fd6, #93c5fd);
  clip-path: polygon(0 80%, 25% 55%, 50% 65%, 75% 30%, 100% 10%, 100% 100%, 0 100%);
  opacity: .9;
  border-radius: .5rem;
}
.offer-target {
  position: absolute;
  right: 14%;
  top: 16%;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 8px solid #1e4fd6;
  box-shadow: inset 0 0 0 12px #bfdbfe;
}

.offer-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.35rem;
}
.offer-item h3 { font-size: 1.05rem; font-weight: 700; margin: 0 0 .3rem; }
.offer-item p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.55; }
.offer-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.cta-band {
  background: var(--navy-deep);
  color: #fff;
}
.cta-col {
  padding: 2.75rem 2rem;
}
.cta-col h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: .75rem;
}
.cta-col p {
  color: rgba(255,255,255,.75);
  margin-bottom: 1.25rem;
  max-width: 28rem;
}
.cta-col-border {
  border-left: 1px solid rgba(255,255,255,.15);
}
.cta-col .btn-outline-light {
  border-radius: .7rem;
  padding: .65rem 1.2rem;
}
.price-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.5);
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: .75rem;
}

.sector-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.sector-pill {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: .8rem;
  font-weight: 700;
  color: #fff;
  padding: .55rem;
  background:
    linear-gradient(160deg, rgba(15,23,42,.5), rgba(30,79,214,.7)),
    #1e4fd6;
  box-shadow: 0 10px 24px rgba(30,79,214,.2);
}

.app-band {
  background: var(--navy-2);
  padding: 72px 0;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  background: #000;
  color: #fff;
  border-radius: .65rem;
  padding: .6rem 1rem;
  font-size: .85rem;
  font-weight: 600;
}
.qr-box {
  width: 148px;
  height: 148px;
  margin: 0 auto;
  background:
    repeating-conic-gradient(#0f172a 0% 25%, #fff 0% 50%) 0 0 / 14px 14px;
  border: 10px solid #fff;
  border-radius: .65rem;
}
.app-phone-mock {
  width: 230px;
  margin: 0 auto;
  background: #0f172a;
  border-radius: 1.7rem;
  padding: 12px;
  box-shadow: 0 26px 52px rgba(0,0,0,.38);
}
.app-phone-inner {
  background: #f8fafc;
  border-radius: 1.3rem;
  padding: .8rem;
  min-height: 340px;
}
.app-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.app-stat-grid span {
  height: 52px;
  border-radius: .55rem;
  background: #ddd6fe;
}
.app-stat-grid span:nth-child(2) { background: #bfdbfe; }
.app-stat-grid span:nth-child(3) { background: #bbf7d0; }
.app-stat-grid span:nth-child(4) { background: #e2e8f0; }
.app-lines {
  margin-top: .8rem;
  height: 170px;
  border-radius: .65rem;
  background: linear-gradient(#fff, #e2e8f0);
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.85rem;
  height: 100%;
}
.price-card.featured {
  border-color: #93c5fd;
  box-shadow: 0 18px 42px rgba(30,79,214,.12);
}
.price-label { color: var(--muted); font-weight: 600; margin-bottom: .35rem; }
.price-value {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.price-value small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.price-card li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .95rem;
}
.price-card li::before {
  content: "✓ ";
  color: var(--navy);
  font-weight: 700;
}
.mode-business .btn-brand {
  background: var(--navy);
}
.mode-business .btn-brand:hover {
  background: var(--navy-2);
}

.site-footer {
  background: #f8fafc;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.site-footer-dark {
  background: #0b1f5c;
  border-top: 0;
  color: #fff;
}
.site-footer a {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: .35rem;
}
.site-footer-dark a,
.site-footer-dark .footer-muted,
.site-footer-dark .footer-copy {
  color: rgba(255,255,255,.65);
}
.site-footer-dark .brand-link { color: #fff; }
.footer-title {
  font-weight: 700;
  margin-bottom: .65rem;
}
.footer-muted { color: var(--muted); font-size: .92rem; }
.footer-copy {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}
.site-footer-dark .footer-copy {
  border-top-color: rgba(255,255,255,.12);
}

.register-hero { padding-top: 2.5rem; padding-bottom: 3rem; }
.register-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 47, 138, .08);
}
@media (min-width: 768px) {
  .register-card { padding: 2.25rem 2rem; }
}
.register-ok-ico {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.register-cred {
  background: var(--soft);
  border-radius: .9rem;
  padding: 1rem 1.1rem;
}
.register-cred > div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
}
.register-cred > div:last-child { border-bottom: 0; }
.register-cred span {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.register-cred strong { font-size: .98rem; word-break: break-all; }
.register-cred a { color: var(--navy); }

@media (max-width: 767.98px) {
  .cta-col-border { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .mock-phone { display: none; }
  .owner-photo { height: 300px; }
  .search-card { margin-top: 28px; }
  .search-divider { display: none; }
  .btn-search { width: 100%; border-radius: .9rem !important; height: 52px; }
}

/* Compact navigation remains usable on narrow phones. */
@media (max-width: 480px) {
  .site-nav .container > .d-flex { flex-wrap: wrap; }
  .site-nav .brand-link { font-size: 1.15rem; }
  .book-firm-card { flex-wrap: wrap; }
  .book-firm-actions { width: 100%; justify-content: flex-end; }
}
