:root {
  --v84-purple: #c041ff;
  --v84-purple-2: #8f5cff;
  --v84-blue: #b012ff;
  --v84-green: #a0ea71;
  --v84-orange: #febc5f;
  --v84-dark: #13051a;
  --v84-ink: #201028;
  --v84-text: #667085;
  --v84-soft: #f9f5fb;
  --v84-line: #eee4f3;
  --v84-white: #ffffff;
  --v84-shadow: 0 24px 70px rgba(30,10,40,.10);
  --v84-shadow-sm: 0 12px 34px rgba(30,10,40,.08);
  --v84-radius: 24px;
  --v84-container: 1220px;
}

html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--v84-ink);
  background: var(--v84-white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body *,
body *::before,
body *::after { box-sizing: border-box; }
body a { color: inherit; text-decoration: none; }
body img { max-width: 100%; height: auto; }
body button,
body input,
body select,
body textarea { font: inherit; }
body main { min-height: 52vh; }
body h1,
body h2,
body h3,
body h4 {
  margin-top: 0;
  color: var(--v84-dark);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}
body p { color: var(--v84-text); }
.v84-container,
body .public-container,
body .motion-container,
body .sc-container {
  width: min(calc(100% - 40px), var(--v84-container));
  margin-inline: auto;
}

/* Top bar and navigation */
.v84-topbar {
  position: relative;
  z-index: 1002;
  background: var(--v84-dark);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.v84-topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.v84-topbar-inner > div { display: flex; align-items: center; gap: 22px; }
.v84-topbar a { color: #fff; font-weight: 700; }
.v84-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(32,16,40,.07);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.v84-header.is-scrolled { box-shadow: 0 10px 36px rgba(19,5,26,.10); background: rgba(255,255,255,.985); }
.v84-header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 34px;
}
.v84-brand { display: inline-flex; align-items: center; width: 140px; }
.v84-brand img { display: block; width: 140px; height: auto; }
.v84-nav { display: flex; justify-content: center; align-items: center; gap: 5px; }
.v84-nav > a,
.v84-nav-dropdown > button {
  border: 0;
  background: transparent;
  color: #344054;
  padding: 12px 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.v84-nav > a:hover,
.v84-nav > a.is-active,
.v84-nav-dropdown > button:hover { color: var(--v84-blue); background: #faf2fe; }
.v84-nav-dropdown { position: relative; }
.v84-nav-dropdown > button { display: inline-flex; align-items: center; gap: 5px; }
.v84-nav-dropdown > button svg { width: 16px; transition: transform .2s ease; }
.v84-nav-dropdown.is-open > button svg { transform: rotate(180deg); }
.v84-nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 16px);
  width: 360px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--v84-line);
  border-radius: 18px;
  box-shadow: var(--v84-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.v84-nav-dropdown:hover .v84-nav-dropdown-menu,
.v84-nav-dropdown.is-open .v84-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.v84-nav-dropdown-menu a {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-radius: 12px;
}
.v84-nav-dropdown-menu a:hover { background: #fcf5ff; }
.v84-nav-dropdown-menu strong { font-size: 14px; color: var(--v84-dark); }
.v84-nav-dropdown-menu span { font-size: 12px; color: var(--v84-text); }
.v84-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.v84-header-login {
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--v84-dark);
}
.v84-theme-btn,
body .motion-btn.primary,
body .sc-btn-primary,
body .auth-submit,
body .business-submit,
body .companies-search-form button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 13px 24px;
  border: 0;
  border-radius: 9px;
  background: var(--v84-blue);
  color: #fff !important;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(176,18,255,.20);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.v84-theme-btn::before,
body .motion-btn.primary::before,
body .sc-btn-primary::before,
body .auth-submit::before,
body .business-submit::before,
body .companies-search-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--v84-purple), #d84fff 58%, var(--v84-orange));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .42s cubic-bezier(.86,0,.07,1);
}
.v84-theme-btn:hover::before,
body .motion-btn.primary:hover::before,
body .sc-btn-primary:hover::before,
body .auth-submit:hover::before,
body .business-submit:hover::before,
body .companies-search-form button:hover::before { transform: scaleX(1); transform-origin: left; }
.v84-theme-btn > *,
body .motion-btn.primary > *,
body .sc-btn-primary > *,
body .auth-submit > *,
body .business-submit > * { position: relative; z-index: 1; }
.v84-theme-btn:hover,
body .motion-btn.primary:hover,
body .sc-btn-primary:hover,
body .auth-submit:hover,
body .business-submit:hover { transform: translateY(-2px); box-shadow: 0 17px 34px rgba(176,18,255,.27); }
.v84-theme-btn-light { background: #fff; color: var(--v84-dark) !important; box-shadow: none; }
.v84-theme-btn-light::before { background: var(--v84-green); }
.v84-menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 12px; background: #f8f4fa; padding: 12px; }
.v84-menu-toggle span { display: block; height: 2px; background: var(--v84-dark); margin: 4px 0; border-radius: 99px; transition: .2s; }
.v84-profile { position: relative; }
.v84-profile-trigger {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid var(--v84-line);
  border-radius: 12px;
  background: #fff;
  padding: 6px 12px 6px 7px;
  color: var(--v84-dark);
  font-weight: 800;
  cursor: pointer;
}
.v84-profile-trigger svg { width: 16px; }
.v84-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(135deg,var(--v84-purple),#b346ff); }
.v84-profile-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  padding: 9px;
  border: 1px solid var(--v84-line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--v84-shadow-sm);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.v84-profile.is-open .v84-profile-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.v84-profile-menu a { display: block; padding: 10px 12px; border-radius: 9px; font-size: 14px; font-weight: 700; }
.v84-profile-menu a:hover { background: #f9f5fb; }
.v84-profile-menu a.is-danger { color: #d92d20; }
.v84-mobile-backdrop { display: none; }

/* New homepage */
.v84-home { overflow: hidden; background: #fff; }
.v84-home-hero {
  position: relative;
  min-height: 760px;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(192,65,255,.12), transparent 31%),
    radial-gradient(circle at 90% 18%, rgba(176,18,255,.10), transparent 30%),
    linear-gradient(180deg,#fff 0%,#fcf7ff 100%);
}
.v84-home-hero::after {
  content: "";
  position: absolute;
  width: 740px;
  height: 740px;
  right: -260px;
  top: -210px;
  background: url('../theme-v84/decor/hero-circle.png') center/contain no-repeat;
  opacity: .55;
  pointer-events: none;
}
.v84-home-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 64px; }
.v84-eyebrow,
body .motion-kicker,
body .market-kicker,
body .company-kicker,
body .home-kicker,
body .auth-kicker,
body .business-form-kicker,
body .legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--v84-blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.v84-eyebrow::before,
body .motion-kicker::before,
body .market-kicker::before,
body .company-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--v84-green);
  box-shadow: 0 0 0 5px rgba(160,234,113,.20);
}
.v84-home-hero h1 { max-width: 650px; margin-bottom: 22px; font-size: clamp(3.2rem,5.4vw,5.7rem); }
.v84-gradient-text,
body .gradient-text { color: transparent !important; background: linear-gradient(90deg,var(--v84-purple),#d84fff 55%,#f59e0b); -webkit-background-clip: text; background-clip: text; }
.v84-home-hero-copy { max-width: 630px; margin: 0 0 30px; font-size: 18px; line-height: 1.8; }
.v84-hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 32px; }
.v84-outline-btn,
body .motion-btn.secondary,
body .sc-btn-outline {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid #cfd5df;
  border-radius: 9px;
  background: #fff;
  color: var(--v84-dark) !important;
  font-weight: 800;
  transition: .2s ease;
}
.v84-outline-btn:hover,
body .motion-btn.secondary:hover,
body .sc-btn-outline:hover { border-color: var(--v84-blue); color: var(--v84-blue) !important; transform: translateY(-2px); }
.v84-hero-checks { display: flex; flex-wrap: wrap; gap: 12px 20px; padding: 0; margin: 0; list-style: none; color: #475467; font-size: 14px; font-weight: 700; }
.v84-hero-checks li { display: flex; align-items: center; gap: 8px; }
.v84-hero-checks li::before { content: "✓"; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: #ebf9e2; color: #2e7d32; font-size: 12px; }
.v84-hero-visual { position: relative; min-height: 540px; display: flex; align-items: center; }
.v84-hero-dashboard { position: relative; z-index: 2; width: 100%; filter: drop-shadow(0 35px 45px rgba(19,5,26,.18)); border-radius: 24px; }
.v84-hero-float { position: absolute; z-index: 3; max-width: 230px; padding: 14px 16px; border: 1px solid rgba(255,255,255,.8); border-radius: 15px; background: rgba(255,255,255,.94); box-shadow: var(--v84-shadow-sm); backdrop-filter: blur(10px); }
.v84-hero-float strong { display: block; color: var(--v84-dark); font-size: 14px; }
.v84-hero-float span { color: var(--v84-text); font-size: 12px; }
.v84-hero-float.is-one { left: -28px; top: 45px; }
.v84-hero-float.is-two { right: -20px; bottom: 48px; }
.v84-live-dot { display: inline-block; width: 9px; height: 9px; margin-right: 7px; border-radius: 50%; background: #12b76a; box-shadow: 0 0 0 5px rgba(18,183,106,.14); }
.v84-category-strip { border-top: 1px solid #f1ecf4; border-bottom: 1px solid #f1ecf4; background: #fff; }
.v84-category-strip-inner { min-height: 112px; display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; align-items: center; text-align: center; }
.v84-category-strip-inner span { color: #667085; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.v84-section { position: relative; padding: 110px 0; }
.v84-section-soft { background: #faf7fb; }
.v84-section-dark { overflow: hidden; background: var(--v84-dark); color: #fff; }
.v84-section-dark::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%,rgba(176,18,255,.28),transparent 35%),radial-gradient(circle at 10% 90%,rgba(192,65,255,.28),transparent 32%); pointer-events: none; }
.v84-section-head { max-width: 780px; margin: 0 auto 54px; text-align: center; position: relative; z-index: 1; }
.v84-section-head.is-left { margin-inline: 0; text-align: left; }
.v84-section-head h2 { margin-bottom: 16px; font-size: clamp(2.3rem,4vw,4.2rem); }
.v84-section-head p { max-width: 680px; margin-inline: auto; font-size: 17px; }
.v84-section-dark .v84-section-head h2,
.v84-section-dark h2,
.v84-section-dark h3 { color: #fff; }
.v84-section-dark .v84-section-head p,
.v84-section-dark p { color: rgba(255,255,255,.68); }
.v84-about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.v84-about-visual { position: relative; min-height: 510px; border-radius: 30px; background: linear-gradient(135deg,#f9eefe,#f8f3ff); overflow: hidden; }
.v84-about-visual img { position: absolute; width: 75%; left: 13%; bottom: 0; }
.v84-about-panel { position: absolute; right: 26px; top: 34px; width: 56%; padding: 22px; border-radius: 18px; background: #fff; box-shadow: var(--v84-shadow-sm); }
.v84-about-panel strong { font-size: 38px; color: var(--v84-blue); }
.v84-about-panel span { display: block; color: var(--v84-text); font-size: 13px; }
.v84-check-list { display: grid; gap: 17px; margin: 28px 0 0; padding: 0; list-style: none; }
.v84-check-list li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; align-items: start; }
.v84-check-list i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: #f9effe; color: var(--v84-blue); font-style: normal; font-weight: 900; }
.v84-check-list strong { display: block; margin-bottom: 4px; color: var(--v84-dark); }
.v84-check-list span { color: var(--v84-text); font-size: 14px; }
.v84-focus-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.v84-focus-image { padding: 30px; border-radius: 30px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); }
.v84-focus-image img { display: block; width: 100%; filter: drop-shadow(0 25px 35px rgba(0,0,0,.28)); }
.v84-focus-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 28px; }
.v84-focus-stats div { padding: 20px; border: 1px solid rgba(255,255,255,.10); border-radius: 17px; background: rgba(255,255,255,.05); }
.v84-focus-stats strong { display: block; color: var(--v84-green); font-size: 32px; }
.v84-focus-stats span { color: rgba(255,255,255,.65); font-size: 13px; }
.v84-benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.v84-benefit-card {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--v84-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: .25s ease;
}
.v84-benefit-card:hover { transform: translateY(-7px); border-color: #f2d9ff; box-shadow: var(--v84-shadow-sm); }
.v84-benefit-icon { width: 52px; height: 52px; margin-bottom: 24px; display: grid; place-items: center; border-radius: 14px; background: #f9effe; color: var(--v84-blue); }
.v84-benefit-icon svg { width: 25px; height: 25px; }
.v84-benefit-card:nth-child(2) .v84-benefit-icon { background: #eefbe7; color: #2e7d32; }
.v84-benefit-card:nth-child(3) .v84-benefit-icon { background: #fff5e5; color: #b54708; }
.v84-benefit-card:nth-child(4) .v84-benefit-icon { background: #f9efff; color: var(--v84-purple); }
.v84-benefit-card:nth-child(5) .v84-benefit-icon { background: #f8ebfe; color: #69029d; }
.v84-benefit-card:nth-child(6) .v84-benefit-icon { background: #fff0f3; color: #c01048; }
.v84-benefit-card h3 { font-size: 21px; margin-bottom: 12px; }
.v84-benefit-card p { margin: 0; font-size: 14px; }
.v84-tour-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.v84-tour-tabs { display: grid; gap: 10px; }
.v84-tour-tab { padding: 19px 20px; border: 1px solid var(--v84-line); border-radius: 14px; background: #fff; cursor: pointer; text-align: left; transition: .2s ease; }
.v84-tour-tab strong { display: block; color: var(--v84-dark); }
.v84-tour-tab span { font-size: 13px; color: var(--v84-text); }
.v84-tour-tab.is-active { border-color: var(--v84-blue); box-shadow: 0 12px 28px rgba(176,18,255,.10); }
.v84-tour-stage { position: relative; min-height: 500px; display: grid; place-items: center; border-radius: 28px; background: linear-gradient(135deg,#f9eefe,#fdf8ff); overflow: hidden; }
.v84-tour-stage img { position: absolute; width: 82%; opacity: 0; transform: translateY(14px); transition: .35s ease; filter: drop-shadow(0 24px 34px rgba(19,5,26,.15)); }
.v84-tour-stage img.is-active { opacity: 1; transform: translateY(0); }
.v84-company-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.v84-company-card { overflow: hidden; border: 1px solid var(--v84-line); border-radius: 20px; background: #fff; transition: .25s ease; }
.v84-company-card:hover { transform: translateY(-6px); box-shadow: var(--v84-shadow-sm); border-color: #f3ddfe; }
.v84-company-cover { position: relative; height: 170px; background: linear-gradient(135deg,var(--v84-purple),var(--v84-blue)); background-size: cover; background-position: center; }
.v84-company-cover::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(19,5,26,.28)); }
.v84-company-logo { position: absolute; z-index: 2; left: 18px; bottom: -25px; width: 58px; height: 58px; object-fit: cover; border: 5px solid #fff; border-radius: 16px; background: #fff; }
.v84-company-body { padding: 38px 19px 19px; }
.v84-company-body h3 { margin-bottom: 6px; font-size: 18px; }
.v84-company-body p { margin: 0 0 14px; font-size: 13px; }
.v84-company-meta { display: flex; justify-content: space-between; gap: 12px; color: #667085; font-size: 12px; font-weight: 800; }
.v84-company-meta span:first-child { color: #b54708; }
.v84-market-actions { display: flex; justify-content: center; margin-top: 36px; }
.v84-pricing-teaser { background: url('../theme-v84/decor/pricing-bg.jpg') center/cover no-repeat, #faf7fb; }
.v84-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.v84-price-card { position: relative; padding: 30px; border: 1px solid #ebe0f1; border-radius: 22px; background: #fff; box-shadow: 0 12px 35px rgba(19,5,26,.05); }
.v84-price-card.is-featured { border: 2px solid var(--v84-blue); transform: translateY(-10px); box-shadow: 0 25px 55px rgba(176,18,255,.15); }
.v84-price-badge { position: absolute; right: 22px; top: 20px; padding: 6px 10px; border-radius: 99px; background: #f8ebfe; color: var(--v84-blue); font-size: 11px; font-weight: 900; }
.v84-price-card h3 { font-size: 20px; margin-bottom: 20px; }
.v84-price { display: flex; align-items: end; gap: 5px; margin-bottom: 22px; }
.v84-price strong { font-size: 42px; color: var(--v84-dark); letter-spacing: -.06em; }
.v84-price span { color: var(--v84-text); font-size: 13px; margin-bottom: 9px; }
.v84-price-card ul { display: grid; gap: 11px; margin: 0 0 26px; padding: 0; list-style: none; color: #475467; font-size: 14px; }
.v84-price-card li::before { content: "✓"; margin-right: 8px; color: #12b76a; font-weight: 900; }
.v84-final-cta { padding: 95px 0; background: linear-gradient(135deg,#b636f6,#b012ff); color: #fff; }
.v84-final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.v84-final-cta h2 { max-width: 720px; margin: 0; color: #fff; font-size: clamp(2.2rem,4vw,4.2rem); }
.v84-final-cta p { margin: 14px 0 0; color: rgba(255,255,255,.76); }

/* Generic public inner pages */
body .inner-hero,
body .simple-market-hero-v57,
body .companies-search-hero,
body .customer-market-hero-v57 {
  position: relative;
  overflow: hidden;
  padding: 112px 0 92px;
  background:
    radial-gradient(circle at 12% 20%,rgba(192,65,255,.14),transparent 29%),
    radial-gradient(circle at 88% 20%,rgba(176,18,255,.12),transparent 31%),
    linear-gradient(180deg,#fff 0%,#fcf5ff 100%);
}
body .inner-hero::after,
body .simple-market-hero-v57::after,
body .companies-search-hero::after,
body .customer-market-hero-v57::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -230px;
  border: 1px solid rgba(192,65,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(192,65,255,.035),0 0 0 140px rgba(176,18,255,.025);
}
body .inner-hero-grid,
body .customer-market-hero-grid-v57 {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
}
body .inner-copy h1,
body .simple-market-hero-v57 h1,
body .companies-search-hero h1,
body .customer-market-copy-v57 h1,
body .legal-intro h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem,4.7vw,5rem);
}
body .simple-market-hero-v57 p,
body .companies-search-hero p,
body .inner-copy > p,
body .customer-market-copy-v57 > p { max-width: 680px; font-size: 17px; }
body .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
body .motion-section,
body .market-section-v57,
body .companies-list-section,
body .price-section,
body .market-how-section-v57,
body .market-final-cta-v57 { padding: 100px 0; }
body .section-head { max-width: 760px; margin-bottom: 45px; }
body .section-head h2,
body .market-section-head-v57 h2 { font-size: clamp(2.2rem,3.8vw,3.8rem); }
body .feature-flow,
body .market-service-category-grid-v57 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
body .feature-card,
body .market-category-card-v57,
body .market-blog-card-v57,
body .faq-item {
  border: 1px solid var(--v84-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: none;
  transition: .25s ease;
}
body .feature-card,
body .market-category-card-v57 { padding: 28px; }
body .feature-card:hover,
body .market-category-card-v57:hover,
body .market-blog-card-v57:hover { transform: translateY(-6px); border-color: #f1d8fe; box-shadow: var(--v84-shadow-sm); }
body .feature-icon,
body .market-category-card-v57 i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 15px;
  background: #f9effe;
  color: var(--v84-blue);
  font-size: 22px;
  font-style: normal;
}
body .feature-card h3,
body .market-category-card-v57 h3 { font-size: 20px; }
body .feature-card p,
body .market-category-card-v57 p { margin-bottom: 0; font-size: 14px; }
body .business-panel,
body .customer-market-visual-v57,
body .market-how-visual-v57,
body .business-report-illustration {
  border: 1px solid #eadef0;
  border-radius: 26px;
  box-shadow: var(--v84-shadow);
  background: #fff;
}
body .business-preview-section { padding: 105px 0; background: var(--v84-dark); }
body .business-preview-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 65px; }
body .business-preview-copy h2,
body .business-preview-copy h1 { color: #fff; }
body .business-preview-copy p,
body .business-preview-list { color: rgba(255,255,255,.68); }
body .business-preview-list li::marker { color: var(--v84-green); }
body .price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
body .price-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--v84-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--v84-shadow-sm);
}
body .price-card.featured { border: 2px solid var(--v84-blue); transform: translateY(-10px); }
body .price-card .price { color: var(--v84-blue); font-size: 38px; font-weight: 900; }
body .price-card a { display: inline-flex; justify-content: center; width: 100%; padding: 13px 18px; border-radius: 9px; background: var(--v84-blue); color: #fff; font-weight: 800; }
body .faq-list { display: grid; gap: 12px; }
body .faq-item { padding: 22px 24px; }

/* Marketplace and listing */
body .companies-search-form {
  max-width: 800px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid #e9dcf0;
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--v84-shadow-sm);
}
body .companies-search-form label { display: flex; align-items: center; gap: 10px; padding: 0 12px; }
body .companies-search-form input { width: 100%; height: 48px; border: 0; outline: 0; background: transparent; }
body .companies-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
body .public-company-card {
  position: relative;
  min-height: 290px;
  padding: 175px 20px 20px;
  border: 1px solid var(--v84-line);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg,#c248ff,#b012ff);
  box-shadow: none;
  transition: .25s ease;
}
body .public-company-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 155px;
  background-image: var(--card-cover, linear-gradient(135deg,#8054ff,#b012ff));
  background-size: cover;
  background-position: center;
}
body .public-company-card::after { content:""; position:absolute; inset:135px 0 0; background:#fff; }
body .public-company-card > * { position: relative; z-index: 2; }
body .public-company-card:hover { transform: translateY(-6px); box-shadow: var(--v84-shadow-sm); }
body .public-company-icon { position: absolute; left: 20px; top: 126px; width: 58px; height: 58px; display: grid; place-items: center; border: 5px solid #fff; border-radius: 16px; background: #fff; color: var(--v84-purple); font-weight: 900; }
body .public-company-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 11px; }
body .public-company-card strong { display: block; margin: 15px 0 5px; color: var(--v84-dark); font-size: 18px; }
body .public-company-card small { display: block; min-height: 42px; color: var(--v84-text); }
body .public-company-card em { display: inline-flex; margin-top: 13px; color: var(--v84-blue); font-style: normal; font-weight: 800; }
body .company-empty { grid-column: 1/-1; padding: 70px 30px; text-align: center; border: 1px dashed #cfd5df; border-radius: 22px; background: #fff; }
body .market-blog-grid-v57 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
body .market-blog-card-v57 { padding: 30px; }
body .market-blog-card-v57 > span { display: inline-flex; margin-bottom: 18px; color: var(--v84-blue); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
body .market-blog-card-v57 h3 { font-size: 22px; }
body .market-blog-card-v57 a { color: var(--v84-blue); font-weight: 800; }
body .market-how-grid-v57 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
body .market-step-list-v57 { display: grid; gap: 15px; }
body .market-step-list-v57 > * { padding: 18px; border: 1px solid var(--v84-line); border-radius: 15px; background: #fff; }
body .market-final-card-v57 { padding: 50px; border-radius: 26px; color: #fff; background: linear-gradient(135deg,var(--v84-purple),var(--v84-blue)); }
body .market-final-card-v57 h2,
body .market-final-card-v57 p { color: #fff; }

/* Auth and onboarding */
body.sc-auth,
body.inner-page { background: #f8f4fa; }
body .sc-auth-main,
body .auth-flow,
body .business-onboard-v80 { padding: 75px 0 100px; background: transparent; }
body .sc-auth-shell,
body .auth-shell,
body .business-onboard-wrap {
  width: min(calc(100% - 40px), 1120px);
  margin-inline: auto;
  border: 1px solid #eadff0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--v84-shadow);
}
body .sc-auth-shell,
body .auth-shell { display: grid; grid-template-columns: .92fr 1.08fr; }
body .sc-auth-story,
body .auth-hero,
body .business-onboard-intro {
  position: relative;
  padding: 55px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%,rgba(160,234,113,.18),transparent 28%),
    linear-gradient(145deg,#1a0723,#43105c 52%,#6939e9);
}
body .sc-auth-story h1,
body .auth-hero h1,
body .business-onboard-intro h1 { color: #fff; font-size: clamp(2.2rem,3.5vw,3.7rem); }
body .sc-auth-story p,
body .auth-hero p,
body .business-onboard-intro p { color: rgba(255,255,255,.73); }
body .sc-auth-panel,
body .auth-panel,
body .business-form-card { padding: 50px; background: #fff; }
body .sc-auth-panel h2,
body .auth-title,
body .business-form-head h2 { font-size: 30px; }
body .sc-form-grid,
body .auth-form,
body .business-form-grid { display: grid; gap: 17px; }
body .sc-field input,
body .auth-field input,
body .auth-field select,
body .business-field input,
body .business-field select,
body .business-field textarea,
body .search-select-trigger {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d8dde7;
  border-radius: 11px;
  background: #fff;
  padding: 13px 15px;
  color: var(--v84-dark);
  outline: 0;
  transition: .2s ease;
}
body .sc-field input:focus,
body .auth-field input:focus,
body .auth-field select:focus,
body .business-field input:focus,
body .business-field select:focus,
body .business-field textarea:focus { border-color: var(--v84-blue); box-shadow: 0 0 0 4px rgba(176,18,255,.09); }
body .sc-google,
body .auth-google { min-height: 52px; border: 1px solid #d8dde7; border-radius: 11px; background: #fff; }
body .auth-tabs { padding: 5px; border-radius: 12px; background: #f5f2f7; }
body .auth-tabs a,
body .auth-tabs button { border-radius: 9px; }
body .auth-alert,
body .add-business-alert { border-radius: 12px; }
body .auth-modal-dialog { border-radius: 22px; box-shadow: var(--v84-shadow); }

/* Legal pages */
body .legal-page { padding: 80px 0 110px; background: #f8f4fa; }
body .legal-shell { display: grid; grid-template-columns: 250px 1fr; gap: 34px; align-items: start; }
body .legal-sidebar { position: sticky; top: 118px; padding: 18px; border: 1px solid var(--v84-line); border-radius: 18px; background: #fff; }
body .legal-nav { display: grid; gap: 5px; }
body .legal-nav a { padding: 9px 11px; border-radius: 9px; color: #475467; font-size: 13px; font-weight: 700; }
body .legal-nav a:hover,
body .legal-nav a.is-active { color: var(--v84-blue); background: #f9effe; }
body .legal-article { padding: 45px; border: 1px solid var(--v84-line); border-radius: 22px; background: #fff; box-shadow: var(--v84-shadow-sm); }
body .legal-intro { padding-bottom: 28px; border-bottom: 1px solid var(--v84-line); }
body .legal-section { padding: 28px 0; border-bottom: 1px solid #f2ecf5; }
body .legal-section:last-child { border-bottom: 0; }
body .legal-section h2 { font-size: 23px; }
body .legal-note { padding: 17px; border-radius: 12px; background: #faf2fe; color: #344054; }

/* Footer */
.v84-footer-cta { position: relative; overflow: hidden; background: var(--v84-dark); color: #fff; }
.v84-footer-cta::before { content:""; position:absolute; inset:0; background: url('../theme-v84/decor/cta-bg.jpg') center/cover no-repeat; opacity:.12; }
.v84-footer-cta-inner { position: relative; min-height: 245px; display: grid; grid-template-columns: 1.15fr 1.3fr auto; gap: 45px; align-items: center; }
.v84-footer-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.v84-footer-stats div { padding: 17px; border: 1px solid rgba(255,255,255,.10); border-radius: 14px; background: rgba(255,255,255,.05); }
.v84-footer-stats strong { display: block; color: var(--v84-green); font-size: 18px; }
.v84-footer-stats span { color: rgba(255,255,255,.58); font-size: 11px; }
.v84-footer-cta-copy > span { color: var(--v84-green); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.v84-footer-cta-copy h2 { margin: 10px 0 0; color: #fff; font-size: clamp(2rem,3vw,3.2rem); }
.v84-footer { padding-top: 75px; color: rgba(255,255,255,.68); background: #16071d url('../theme-v84/decor/footer-bg.jpg') center bottom/cover no-repeat; }
.v84-footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 55px; padding-bottom: 60px; }
.v84-footer-brand img { width: 140px; filter: brightness(0) invert(1); }
.v84-footer-brand p { max-width: 410px; color: rgba(255,255,255,.57); }
.v84-footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.v84-footer-badges span { padding: 6px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 99px; font-size: 10px; }
.v84-footer-column { display: grid; align-content: start; gap: 9px; }
.v84-footer-column h3 { margin-bottom: 13px; color: #fff; font-size: 16px; letter-spacing: -.02em; }
.v84-footer-column a { color: rgba(255,255,255,.62); font-size: 13px; }
.v84-footer-column a:hover { color: var(--v84-green); }
.v84-footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.10); font-size: 12px; }

/* Motion */
body .reveal-motion,
.v84-reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
body .reveal-motion.is-visible,
.v84-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .v84-header-inner { grid-template-columns: 170px 1fr auto; }
  .v84-menu-toggle { display: block; justify-self: end; }
  .v84-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(88vw,380px);
    height: 100dvh;
    z-index: 1100;
    display: block;
    padding: 95px 22px 30px;
    background: #fff;
    box-shadow: 25px 0 70px rgba(19,5,26,.20);
    transform: translateX(-105%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .v84-nav.is-open { transform: translateX(0); }
  .v84-nav > a,
  .v84-nav-dropdown > button { width: 100%; display: flex; justify-content: space-between; padding: 14px; margin-bottom: 4px; text-align: left; }
  .v84-nav-dropdown-menu { position: static; width: auto; padding: 5px; box-shadow: none; border: 0; opacity: 1; visibility: visible; transform: none; display: none; }
  .v84-nav-dropdown.is-open .v84-nav-dropdown-menu { display: block; }
  .v84-nav-dropdown:hover .v84-nav-dropdown-menu { display: none; }
  .v84-nav-dropdown.is-open:hover .v84-nav-dropdown-menu { display: block; }
  .v84-mobile-backdrop { position: fixed; inset: 0; z-index: 1050; background: rgba(19,5,26,.55); opacity: 0; visibility: hidden; display: block; transition: .25s; }
  .v84-mobile-backdrop.is-open { opacity: 1; visibility: visible; }
  .v84-home-hero-grid { grid-template-columns: 1fr; }
  .v84-home-hero { padding-top: 85px; }
  .v84-home-hero-copy { max-width: 760px; }
  .v84-hero-visual { width: min(100%,850px); margin: 0 auto; }
  .v84-company-grid,
  body .companies-grid { grid-template-columns: repeat(3,1fr); }
  .v84-footer-cta-inner { grid-template-columns: 1fr 1fr; padding-block: 45px; }
  .v84-footer-cta-inner > a { justify-self: start; }
  .v84-footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); gap: 30px; }
}

@media (max-width: 820px) {
  .v84-topbar { display: none; }
  .v84-header-inner { min-height: 72px; grid-template-columns: 145px 1fr auto; gap: 12px; }
  .v84-header-actions .v84-header-login { display: none; }
  .v84-header-actions .v84-theme-btn { min-height: 43px; padding: 10px 15px; font-size: 12px; }
  .v84-profile-trigger > span:nth-child(2), .v84-profile-trigger svg { display: none; }
  .v84-home-hero { min-height: auto; padding: 72px 0; }
  .v84-home-hero h1 { font-size: clamp(2.9rem,10vw,4.7rem); }
  .v84-hero-visual { min-height: 420px; }
  .v84-hero-float.is-one { left: 0; }
  .v84-hero-float.is-two { right: 0; bottom: 10px; }
  .v84-category-strip-inner { min-height: auto; padding-block: 25px; grid-template-columns: repeat(2,1fr); }
  .v84-category-strip-inner span:last-child { grid-column: 1/-1; }
  .v84-section { padding: 80px 0; }
  .v84-about-grid,
  .v84-focus-grid,
  .v84-tour-grid,
  body .inner-hero-grid,
  body .customer-market-hero-grid-v57,
  body .business-preview-grid,
  body .market-how-grid-v57,
  body .sc-auth-shell,
  body .auth-shell,
  body .legal-shell { grid-template-columns: 1fr; }
  .v84-benefit-grid,
  body .feature-flow,
  body .market-service-category-grid-v57,
  body .price-grid,
  .v84-pricing-grid,
  body .market-blog-grid-v57 { grid-template-columns: repeat(2,1fr); }
  .v84-company-grid,
  body .companies-grid { grid-template-columns: repeat(2,1fr); }
  .v84-price-card.is-featured,
  body .price-card.featured { transform: none; }
  .v84-final-cta-inner { align-items: flex-start; flex-direction: column; }
  .v84-footer-cta-inner { grid-template-columns: 1fr; }
  .v84-footer-grid { grid-template-columns: 1fr 1fr; }
  .v84-footer-brand { grid-column: 1/-1; }
  body .legal-sidebar { position: static; }
  body .legal-nav { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 560px) {
  .v84-container,
  body .public-container,
  body .motion-container,
  body .sc-container { width: min(calc(100% - 28px), var(--v84-container)); }
  .v84-header-inner { grid-template-columns: 132px 1fr auto; }
  .v84-brand, .v84-brand img { width: 132px; }
  .v84-header-actions .v84-theme-btn { display: none; }
  .v84-header-actions { justify-self: end; }
  .v84-home-hero h1 { font-size: 2.85rem; }
  .v84-home-hero-copy { font-size: 16px; }
  .v84-hero-actions { flex-direction: column; }
  .v84-hero-actions > * { width: 100%; }
  .v84-hero-visual { min-height: 310px; margin-top: 20px; }
  .v84-hero-float { display: none; }
  .v84-section-head h2 { font-size: 2.3rem; }
  .v84-about-visual { min-height: 380px; }
  .v84-benefit-grid,
  .v84-company-grid,
  .v84-pricing-grid,
  body .feature-flow,
  body .market-service-category-grid-v57,
  body .price-grid,
  body .companies-grid,
  body .market-blog-grid-v57 { grid-template-columns: 1fr; }
  .v84-tour-stage { min-height: 330px; }
  .v84-final-cta { padding: 70px 0; }
  body .inner-hero,
  body .simple-market-hero-v57,
  body .companies-search-hero,
  body .customer-market-hero-v57 { padding: 75px 0 65px; }
  body .inner-copy h1,
  body .simple-market-hero-v57 h1,
  body .companies-search-hero h1,
  body .customer-market-copy-v57 h1,
  body .legal-intro h1 { font-size: 2.55rem; }
  body .motion-section,
  body .market-section-v57,
  body .companies-list-section,
  body .price-section,
  body .market-how-section-v57,
  body .market-final-cta-v57 { padding: 70px 0; }
  body .companies-search-form { grid-template-columns: 1fr; }
  body .companies-search-form button { width: 100%; }
  body .sc-auth-main,
  body .auth-flow,
  body .business-onboard-v80 { padding: 35px 0 65px; }
  body .sc-auth-shell,
  body .auth-shell,
  body .business-onboard-wrap { width: min(calc(100% - 24px),1120px); border-radius: 20px; }
  body .sc-auth-story,
  body .auth-hero,
  body .business-onboard-intro,
  body .sc-auth-panel,
  body .auth-panel,
  body .business-form-card { padding: 30px 22px; }
  body .legal-article { padding: 28px 20px; }
  body .legal-nav { grid-template-columns: 1fr; }
  .v84-footer-stats { grid-template-columns: 1fr; }
  .v84-footer-grid { grid-template-columns: 1fr; }
  .v84-footer-brand { grid-column: auto; }
  .v84-footer-bottom { padding: 20px 0; flex-direction: column; align-items: flex-start; }
}

/* Dinamik işletme kategori menüsü */
.v84-nav-dropdown.is-current > button{color:var(--v84-blue);background:#faf2fe}
.v84-business-category-menu{max-height:440px;overflow-y:auto;overscroll-behavior:contain}
.v84-business-category-menu::-webkit-scrollbar{width:7px}
.v84-business-category-menu::-webkit-scrollbar-thumb{background:#e8d9f0;border-radius:999px}
@media(max-width:980px){.v84-business-category-menu{max-height:none;overflow:visible}}

/* Seansla kurumsal logo oranı */
.v84-brand img,.v84-footer-brand img{width:146px;height:auto;max-height:45px;object-fit:contain}
