/* BeyazYakalidan - Corporate Light Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --primary: #0A66C2;
  --primary-dark: #004D99;
  --primary-light: #EBF3FB;
  --secondary: #1C3557;
  --accent: #00A0DC;
  --success: #057642;
  --warning: #B24020;
  --danger: #CC1016;
  --surface: #FFFFFF;
  --surface-alt: #F8FAFC;
  --surface-hover: #F1F5F9;
  --border: #E2E8F0;
  --border-subtle: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --text-inverse: #FFFFFF;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--surface-alt);
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  padding: 6px 8px 6px 6px;
  border-radius: 16px;
  transition: var(--transition);
}

.navbar-brand:hover {
  background: rgba(235, 243, 251, 0.72);
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(10, 102, 194, 0.18));
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.brand-name {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--secondary);
  letter-spacing: -0.01em;
}

.brand-name span {
  color: var(--primary);
  font-weight: 700;
}

.navbar-search {
  flex: 1;
  max-width: 520px;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap input {
  width: 100%;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0 16px 0 42px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface-alt);
  transition: var(--transition);
  outline: none;
}

.search-input-wrap input:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.btn-nav {
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-outline {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(203, 213, 225, 0.9);
  color: var(--secondary);
}

.btn-nav-outline:hover {
  background: var(--surface-hover);
  border-color: var(--primary);
  color: var(--primary);
}

.btn-nav-primary {
  background: linear-gradient(135deg, var(--primary), #0757AA);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.22);
}

.btn-nav-primary:hover {
  background: linear-gradient(135deg, #0757AA, var(--primary-dark));
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(10, 102, 194, 0.3);
}

.user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  cursor: pointer;
}

.lang-switcher {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.lang-btn {
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.lang-btn.active {
  background: var(--primary);
  color: white;
}

/* ── HERO / FILTERS ── */
.hero-strip {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 60%, var(--accent) 100%);
  padding: 34px 24px 38px;
  text-align: center;
  color: white;
}

.hero-strip h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  max-width: 900px;
  margin: 0 auto 10px;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero-strip p {
  max-width: 720px;
  margin: 0 auto 24px;
  font-size: 16px;
  opacity: 0.85;
}

.hero-search-bar {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  background: white;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.hero-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  background: transparent;
}

.hero-search-bar button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.hero-search-bar button:hover { background: var(--primary-dark); }

/* ── LAYOUT ── */
.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .page-container { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ── SIDEBAR ── */
.sidebar {
  position: sticky;
  top: 80px;
}

.filter-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.filter-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-card-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.filter-section {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
}

.filter-section:last-child { border-bottom: none; }

.filter-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: block;
}

.filter-select {
  width: 100%;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.filter-select:focus { border-color: var(--primary); }

.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}

.price-range input {
  flex: 1;
  padding: 8px 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  outline: none;
  transition: var(--transition);
  min-width: 0;
}

.price-range input:focus { border-color: var(--primary); }

.price-range span { color: var(--text-muted); font-size: 13px; }

.filter-apply-btn {
  width: 100%;
  padding: 11px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  margin-top: 16px;
  transition: var(--transition);
}

.filter-apply-btn:hover { background: var(--primary-dark); }

/* ── COMPANY FILTER BADGE ── */
.company-filter-active {
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 10px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary-dark);
  font-weight: 500;
}

.company-filter-active .remove-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  font-size: 16px;
  padding: 0;
}

/* ── CATEGORY PILLS ── */
.category-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 4px;
  scrollbar-width: none;
  margin-bottom: 20px;
}

.category-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  background: var(--surface);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.cat-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.cat-pill.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ── LISTING GRID ── */
.listings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.listings-count {
  font-size: 14px;
  color: var(--text-secondary);
}

.listings-count strong { color: var(--text-primary); font-weight: 600; }

.sort-select {
  padding: 7px 32px 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--surface);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

/* ── LISTING CARD ── */
.listing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}

.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.card-photo-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.listing-card:hover .card-photo-wrap img { transform: scale(1.015); }

.card-no-photo {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 40px;
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.3px;
}

.badge-free { background: #DCFCE7; color: #15803D; }
.badge-new { background: #DBEAFE; color: #1D4ED8; }
.badge-sold { background: #F1F5F9; color: var(--text-muted); }

.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
  z-index: 2;
}

.fav-btn:hover { transform: scale(1.15); }
.fav-btn.active { color: #EF4444; }

.card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-listing-no {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: #EFF6FF;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1;
  padding: 5px 8px;
  margin-bottom: 7px;
}

.card-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.card-price.free { color: var(--success); font-size: 15px; }

.card-seller {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.seller-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}

.seller-info { min-width: 0; }

.seller-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seller-company {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.seller-company-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.seller-company-link:hover { text-decoration: underline; }

/* ── DETAIL PAGE ── */
.detail-grid {
  max-width: 1280px;
  margin: 32px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

@media (max-width: 860px) {
  .detail-grid { grid-template-columns: 1fr; }
}

.photo-gallery {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-main {
  aspect-ratio: 4/3;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: var(--surface);
  overflow-x: auto;
}

.photo-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.photo-thumb.active { border-color: var(--primary); }
.photo-thumb:hover { border-color: var(--primary); opacity: 0.85; }

.detail-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
}

.detail-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.detail-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.sold-detail-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  color: #92400E;
  border-radius: var(--radius);
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.detail-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.seller-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  transition: var(--transition);
}

.seller-card:hover { border-color: var(--primary); background: var(--primary-light); }

.seller-card-linked { cursor: pointer; }

.seller-card-search {
  cursor: pointer;
}

.seller-card-search .seller-card-link-hint {
  color: var(--primary);
}

.seller-card-unlinked {
  cursor: default;
}

.seller-card-unlinked:hover {
  border-color: var(--border);
  background: var(--surface-alt);
}

.seller-card-unlinked .seller-card-link-hint {
  color: var(--text-muted);
  font-size: 0;
}

.seller-card-unlinked .seller-card-link-hint::after {
  content: "LinkedIn profil bağlantısı bekleniyor";
  font-size: 11px;
}

html[lang="en"] .seller-card-unlinked .seller-card-link-hint::after {
  content: "LinkedIn profile pending";
}

.seller-card-disabled { cursor: default; }

.seller-card-disabled:hover {
  border-color: var(--border);
  background: var(--surface-alt);
}

.seller-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.seller-card-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.seller-card-link-hint {
  display: inline-flex;
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 4px;
}

.seller-card-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.seller-card-company {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

.seller-trust-mini {
  display: grid;
  gap: 5px;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.35;
}

.seller-trust-mini span {
  display: block;
  overflow-wrap: anywhere;
}

.seller-trust-mini b {
  color: var(--text-primary);
  font-weight: 800;
}

.seller-trust-mini .active b { color: #047857; }
.seller-trust-mini .alumni b { color: #0A66C2; }

.contact-btn {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}

.contact-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(10,102,194,0.3);
  transform: translateY(-1px);
}

.fav-btn-lg {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fav-btn-lg:hover { border-color: #EF4444; color: #EF4444; }
.fav-btn-lg.active { border-color: #EF4444; color: #EF4444; background: #FFF5F5; }

.sold-action-btn:hover {
  border-color: #F59E0B;
  color: #92400E;
  background: #FFFBEB;
}

.favorites-page {
  max-width: 1180px;
  margin: 32px auto 56px;
  padding: 0 24px;
}

.favorites-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.favorites-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
}

.favorites-head h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-size: 28px;
  font-weight: 800;
}

.favorites-head p {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

.favorites-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.favorites-empty {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

@media (max-width: 640px) {
  .favorites-head {
    align-items: stretch;
    flex-direction: column;
  }
}

/* ── MESSAGE MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 90%;
  max-width: 480px;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-box h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.modal-textarea {
  width: 100%;
  min-height: 120px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
  outline: none;
  transition: var(--transition);
}

.modal-textarea:focus { border-color: var(--primary); }

.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.modal-cancel {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.modal-cancel:hover { background: var(--surface-hover); }

.modal-send {
  flex: 2;
  padding: 12px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.modal-send:hover { background: var(--primary-dark); }

/* ── LOGIN PAGE ── */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8FAFC 0%, #EBF3FB 100%);
  padding: 24px;
}

.login-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 42px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.login-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 24px;
  filter: drop-shadow(0 14px 24px rgba(10, 102, 194, 0.22));
}

.login-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.login-card h1,
.login-brand-name {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.login-brand-name span {
  color: var(--primary);
  font-weight: 700;
}

.login-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.linkedin-btn {
  width: 100%;
  padding: 15px 24px;
  background: #0A66C2;
  color: white;
  border: none;
  border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  transition: var(--transition);
}

.linkedin-btn:hover {
  background: #004D99;
  box-shadow: 0 8px 24px rgba(10,102,194,0.35);
  transform: translateY(-2px);
}

.linkedin-icon {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A66C2;
  font-weight: 900;
  font-size: 14px;
}

.login-divider {
  margin: 28px 0;
  position: relative;
  text-align: center;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.login-divider span {
  background: white;
  padding: 0 12px;
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
}

.login-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.login-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.login-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

/* ── CREATE LISTING ── */
.create-page {
  max-width: 800px;
  margin: 32px auto;
  padding: 0 24px;
}

.create-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.create-card-header {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  padding: 28px 32px;
  color: white;
}

.create-card-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.create-card-body { padding: 32px; }

.form-section { margin-bottom: 28px; }

.form-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-label .required { color: #EF4444; }

.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,102,194,0.1);
}

textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* Support page */
.support-page {
  max-width: 920px;
  display: grid;
  gap: 24px;
}

.support-card {
  width: 100%;
}

.support-action-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.support-action-bar .fav-btn-lg,
.support-action-bar .contact-btn {
  width: auto;
  min-width: 154px;
  margin-bottom: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.support-action-bar .contact-btn {
  min-width: 190px;
  padding: 15px 28px;
}

.support-action-bar .fav-btn-lg {
  padding: 14px 24px;
}

.support-action-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.support-history-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.support-history-head .form-section-title {
  margin-bottom: 6px;
}

.support-history-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.support-history-count {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #EFF6FF;
  color: var(--primary);
  border: 1px solid #BFDBFE;
  font-weight: 800;
}

.support-empty-state {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  background: #F8FAFC;
  font-size: 14px;
}

.support-request-list {
  display: grid;
  gap: 10px;
}

.support-request-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(110px, 0.45fr) minmax(110px, 0.42fr) minmax(128px, 0.48fr) 42px;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition);
}

.support-request-row:hover {
  border-color: rgba(10,102,194,0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.support-request-main {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.support-request-title {
  min-width: 0;
  color: var(--text-primary);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.support-request-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--text-muted);
  font-size: 12px;
}

.support-request-label {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.support-request-info {
  min-width: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.support-request-info strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.support-status-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  background: #FEF3C7;
  color: #92400E;
}

.support-status-badge.resolved {
  background: #DCFCE7;
  color: #166534;
}

.support-status-badge.dismissed {
  background: #F1F5F9;
  color: #334155;
}

.support-row-action {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--primary);
  background: #F8FAFC;
}

@media (max-width: 760px) {
  .support-page {
    max-width: 100%;
    padding: 0 16px;
  }

  .support-card .create-card-header,
  .support-card .create-card-body {
    padding: 24px;
  }

  .support-action-bar {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .support-action-bar .fav-btn-lg,
  .support-action-bar .contact-btn {
    width: 100%;
    min-width: 0;
  }

  .support-history-head {
    align-items: center;
  }

  .support-request-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .support-row-action {
    width: 100%;
  }
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-check input { width: 16px; height: 16px; cursor: pointer; }

/* ── PHOTO UPLOAD ── */
.photo-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--surface-alt);
  position: relative;
}

.photo-upload-area:hover { border-color: var(--primary); background: var(--primary-light); }

.photo-upload-area input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.photo-upload-icon { font-size: 32px; color: var(--text-muted); margin-bottom: 8px; }

.photo-upload-text { font-size: 14px; color: var(--text-secondary); }

.photo-upload-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.photo-previews {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.photo-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview-item .remove-photo {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-preview-item .primary-badge {
  position: absolute;
  bottom: 4px;
  left: 4px;
  background: var(--primary);
  color: white;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ── FOOTER ── */
footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 32px 24px;
  margin-top: 60px;
  font-size: 13px;
}

footer a { color: rgba(255,255,255,0.9); text-decoration: none; }
footer a:hover { color: white; }
footer strong { color: white; }

/* ── LEGAL PAGES ── */
.legal-page {
  max-width: 920px;
  margin: 32px auto 56px;
  padding: 0 24px;
}

.legal-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  box-shadow: var(--shadow-md);
}

.legal-kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.78;
  margin-bottom: 8px;
}

.legal-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
}

.legal-hero p {
  max-width: 640px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.6;
}

.legal-date {
  min-width: 150px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  font-size: 12px;
  color: rgba(255,255,255,0.82);
}

.legal-date strong {
  display: block;
  margin-top: 3px;
  color: white;
}

.legal-card {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.legal-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--secondary);
  margin: 24px 0 8px;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.legal-card ul {
  margin: 8px 0 0 18px;
  padding: 0;
}

.legal-card li { margin-bottom: 6px; }

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 12px;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
  color: var(--text-secondary);
  line-height: 1.55;
}

.legal-table th {
  background: var(--surface-muted);
  color: var(--secondary);
  font-weight: 800;
}

@media (max-width: 700px) {
  .legal-hero { display: block; padding: 26px; }
  .legal-hero h1 { font-size: 26px; }
  .legal-date { margin-top: 18px; }
  .legal-card { padding: 24px; }
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 32px;
}

.page-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: white; border-color: var(--primary); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}

.empty-state-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.5; }
.empty-state h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

.marketplace-empty-state {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
}

.marketplace-empty-state p {
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.marketplace-empty-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ── UTILITIES ── */
.text-primary { color: var(--primary); }
.text-muted { color: var(--text-muted); }
.font-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-8 { gap: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--secondary);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transform: translateY(100px);
  transition: transform 0.3s ease;
}

.toast.show { transform: translateY(0); }

/* Closed marketplace landing */
.landing-page {
  background: var(--surface-alt);
  min-height: calc(100vh - 64px);
}

.landing-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 42px;
}

.landing-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
}

.landing-copy h1 {
  max-width: 720px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.landing-copy p {
  max-width: 680px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
}

.landing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.landing-primary,
.landing-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
}

.landing-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 28px rgba(10,102,194,0.2);
}

.landing-primary:hover { background: var(--primary-dark); color: white; }

.landing-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1.5px solid var(--border);
}

.landing-secondary:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.landing-visual {
  display: flex;
  justify-content: center;
}

.locked-market-card {
  width: min(100%, 420px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.locked-market-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  background: var(--secondary);
}

.locked-market-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
}

.locked-market-body {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 34px 28px;
}

.locked-market-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 28px;
  flex-shrink: 0;
}

.locked-market-body strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-size: 22px;
  margin-bottom: 6px;
}

.locked-market-body p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.locked-market-lines {
  padding: 0 28px 32px;
  display: grid;
  gap: 12px;
}

.locked-market-lines span {
  height: 16px;
  border-radius: 999px;
  background: var(--surface-alt);
}

.locked-market-lines span:nth-child(2) { width: 76%; }
.locked-market-lines span:nth-child(3) { width: 52%; }

.landing-trust-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.landing-trust-grid > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.landing-trust-grid i {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary);
  margin-bottom: 14px;
}

.landing-trust-grid strong,
.landing-trust-grid span {
  display: block;
}

.landing-trust-grid strong {
  color: var(--text-primary);
  font-weight: 800;
  margin-bottom: 6px;
}

.landing-trust-grid span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

/* Auth gate pages */
.auth-gate-page {
  min-height: calc(100vh - 64px);
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px 20px;
}

.auth-gate-card {
  width: min(100%, 640px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 30px;
}

.auth-gate-card-wide {
  width: min(100%, 920px);
}

.auth-gate-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.auth-gate-header h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.auth-gate-header p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.auth-gate-form {
  display: grid;
  gap: 14px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.consent-row span {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

.consent-row a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  margin-left: 4px;
}

.auth-gate-primary,
.auth-gate-secondary {
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.auth-gate-primary {
  background: var(--primary);
  color: white;
}

.auth-gate-primary:hover { background: var(--primary-dark); }

.auth-gate-primary:disabled,
.auth-gate-secondary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.auth-gate-secondary {
  background: var(--secondary);
  color: white;
}

.auth-gate-secondary:hover { filter: brightness(1.05); }

.linked-company-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #BFDBFE;
  background: linear-gradient(135deg, #F8FBFF, #EFF6FF);
  border-radius: var(--radius);
  padding: 16px;
}

.linked-company-card.is-domain-fallback {
  border-color: #BAE6FD;
  background: linear-gradient(135deg, #F8FBFF, #F0F9FF);
}

.linked-company-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: var(--primary);
  box-shadow: 0 10px 24px rgba(10, 102, 194, 0.22);
  flex-shrink: 0;
}

.linked-company-card.is-domain-fallback .linked-company-icon {
  background: #0284C7;
  box-shadow: 0 10px 24px rgba(2, 132, 199, 0.16);
}

.linked-company-card span,
.linked-company-card strong,
.linked-company-card small {
  display: block;
}

.linked-company-card span {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.linked-company-card strong {
  color: var(--text-primary);
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.linked-company-card small {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.corporate-verify-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 18px;
}

.verify-code-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  padding: 18px;
  align-self: start;
}

.form-group small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
  margin-top: 6px;
}

.code-input {
  letter-spacing: 7px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 900px) {
  .landing-hero,
  .landing-trust-grid,
  .corporate-verify-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .landing-copy h1 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .landing-copy h1 { font-size: 32px; }
  .landing-actions { flex-direction: column; }
  .landing-primary,
  .landing-secondary { width: 100%; }
  .public-plan-link { display: none; }
  .auth-gate-header { align-items: flex-start; }
  .auth-gate-card { padding: 22px; }
}

/* Company package page */
.company-packages-page {
  background: var(--surface-alt);
  min-height: calc(100vh - 64px);
  padding: 44px 24px 64px;
}

.company-packages-hero {
  max-width: 1180px;
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.company-packages-copy {
  background: linear-gradient(135deg, #102A43 0%, #0A66C2 62%, #12A8D8 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-md);
}

.company-packages-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
}

.company-packages-copy h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
  max-width: 780px;
  margin-bottom: 14px;
}

.company-packages-copy p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
  color: rgba(255,255,255,0.86);
}

.company-package-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.company-packages-panel {
  display: grid;
  gap: 12px;
}

.company-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-xs);
}

.company-metric strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  color: var(--text-primary);
}

.company-metric span {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 14px;
}

.company-current-plan {
  max-width: 1180px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  color: #14532D;
  padding: 14px 18px;
  border-radius: var(--radius);
}

.company-current-plan i { font-size: 20px; }
.company-current-plan strong,
.company-current-plan span { display: block; }
.company-current-plan span { font-size: 13px; opacity: 0.82; margin-top: 2px; }

.company-package-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.company-package-flow {
  max-width: 1180px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.company-package-flow .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-package-flow h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px;
  line-height: 1.22;
  color: var(--text-primary);
  letter-spacing: 0;
}

.company-package-flow p {
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.company-flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.company-flow-steps article {
  padding: 18px;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.company-flow-steps i {
  color: var(--primary);
  font-size: 23px;
}

.pain-grid article:nth-child(3) i {
  color: #be123c;
  background: #ffe4e6;
  box-shadow: inset 0 0 0 1px rgba(190, 18, 60, 0.18);
}

.company-flow-steps strong,
.company-flow-steps span {
  display: block;
}

.company-flow-steps strong {
  margin-top: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 800;
}

.company-flow-steps span {
  margin-top: 7px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.company-plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.company-plan-card.recommended {
  border-color: var(--primary);
  box-shadow: 0 18px 42px rgba(10,102,194,0.12);
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--primary);
  color: white;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
}

.plan-card-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  padding-right: 96px;
}

.plan-card-head p {
  min-height: 70px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.plan-price {
  margin: 22px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.plan-price strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  color: var(--text-primary);
}

.plan-price span {
  color: var(--text-muted);
  font-weight: 600;
}

.plan-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  flex: 1;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.plan-features i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  transition: var(--transition);
}

.plan-cta:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.plan-cta.primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.plan-cta.primary:hover { background: var(--primary-dark); }

.company-package-notes {
  max-width: 1180px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.company-package-notes > div {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.company-package-notes h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.company-package-notes p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 14px;
}

.pilot-page {
  background:
    radial-gradient(circle at top right, rgba(16,185,129,0.11), transparent 360px),
    linear-gradient(180deg, rgba(10,102,194,0.06), rgba(248,250,252,0) 340px),
    var(--surface-alt);
}

.pilot-hero {
  grid-template-columns: minmax(0, 1.45fr) 380px;
}

.pilot-hero-copy {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(255,255,255,0.18), transparent 220px),
    linear-gradient(135deg, #102A43 0%, #0A66C2 64%, #0EA5A5 100%);
}

.pilot-hero-copy::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
}

.pilot-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #e8fff7;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.pilot-hero-copy .eyebrow,
.pilot-hero-copy h1,
.pilot-hero-copy p,
.pilot-hero-copy .company-package-actions {
  position: relative;
  z-index: 1;
}

.pilot-primary-cta {
  min-height: 48px;
  padding-inline: 18px;
}

.pilot-secondary-cta {
  min-height: 48px;
  background: rgba(255,255,255,0.08);
  color: white;
  border-color: rgba(255,255,255,0.42);
}

.pilot-secondary-cta:hover {
  color: white;
  background: rgba(255,255,255,0.16);
}

.pilot-status-panel .company-metric {
  display: flex;
  min-height: 138px;
  flex-direction: column;
  justify-content: center;
}

.pilot-status-panel .company-metric strong {
  color: var(--primary);
}

.pilot-program-section {
  align-items: center;
}

.pilot-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pilot-benefit-grid article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.pilot-benefit-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 17px;
}

.pilot-benefit-grid span {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.pilot-application-section {
  max-width: 1180px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  scroll-margin-top: 94px;
}

.pilot-application-copy .eyebrow,
.pilot-section-heading .eyebrow {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pilot-application-copy h2,
.pilot-section-heading h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  line-height: 1.18;
  color: var(--text-primary);
  letter-spacing: 0;
}

.pilot-application-copy p {
  margin-top: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pilot-copy-points {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pilot-copy-points span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.45;
}

.pilot-copy-points i {
  color: #059669;
  margin-top: 1px;
}

.pilot-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.pilot-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pilot-form label {
  display: grid;
  gap: 7px;
}

.pilot-form label span {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 800;
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--text-primary);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.pilot-form input,
.pilot-form select {
  height: 44px;
  padding: 0 13px;
}

.pilot-form textarea {
  min-height: 130px;
  resize: vertical;
  padding: 12px 13px;
}

.pilot-form input:focus,
.pilot-form select:focus,
.pilot-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,102,194,0.09);
}

.pilot-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: var(--primary);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
}

.pilot-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.pilot-trust-note {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(10,102,194,0.14);
  border-radius: var(--radius);
  background: rgba(10,102,194,0.06);
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.pilot-form-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pilot-form-alert.success {
  background: #dcfce7;
  color: #14532d;
  border: 1px solid #86efac;
}

.pilot-form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.pilot-faq-section {
  max-width: 1180px;
  margin: 0 auto;
}

.pilot-section-heading {
  margin-bottom: 16px;
}

.pilot-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pilot-faq-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.pilot-faq-grid h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pilot-faq-grid p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.benefit-page {
  background:
    linear-gradient(180deg, #eef6ff 0%, #f8fbff 340px, #f6f8fb 100%);
  padding: 0 18px 64px;
}

.benefit-hero {
  max-width: 1180px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) 390px;
  gap: 24px;
  align-items: stretch;
  padding: 54px 0 34px;
}

.benefit-hero-copy {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px 0;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  padding: 9px 13px;
  border: 1px solid rgba(10,102,194,0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #0a66c2;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.benefit-hero-copy h1 {
  max-width: 820px;
  margin: 20px 0 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 0;
  color: #0f172a;
}

.benefit-hero-copy p {
  max-width: 770px;
  color: #475569;
  font-size: 18px;
  line-height: 1.72;
}

.benefit-hero-actions,
.benefit-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.benefit-outline {
  background: #ffffff;
}

.benefit-key-message {
  max-width: 780px;
  margin-top: 28px;
  padding: 17px 18px;
  border-left: 4px solid #0a66c2;
  border-radius: 8px;
  background: #ffffff;
  color: #17324d;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.benefit-hero-panel {
  align-self: center;
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(10,102,194,0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.13);
}

.benefit-panel-head {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #123f6d, #0a66c2);
  color: #ffffff;
}

.benefit-panel-head span,
.benefit-dashboard-top span,
.package-card-head span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: inherit;
  opacity: 0.78;
}

.benefit-panel-head strong {
  display: block;
  margin-top: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  line-height: 1.2;
}

.benefit-panel-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fbff;
}

.benefit-panel-row i,
.benefit-card i,
.employee-benefits-grid i,
.trust-points i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  background: #e7f0fb;
  color: #0a66c2;
  font-size: 18px;
}

.benefit-panel-row strong,
.benefit-panel-row span {
  display: block;
}

.benefit-panel-row strong {
  color: #0f172a;
  font-weight: 900;
}

.benefit-panel-row span {
  margin-top: 5px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.benefit-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.benefit-panel-metrics span {
  padding: 12px 10px;
  border-radius: 8px;
  background: #eef6ff;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.benefit-panel-metrics strong {
  display: block;
  color: #0a66c2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
}

.benefit-section {
  max-width: 1180px;
  margin: 0 auto 42px;
  scroll-margin-top: 94px;
}

.benefit-section-head {
  max-width: 840px;
  margin-bottom: 20px;
}

.benefit-section .eyebrow,
.benefit-final-cta .eyebrow {
  display: inline-flex;
  margin-bottom: 9px;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.benefit-section h2,
.benefit-final-cta h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: 0;
}

.benefit-section p,
.benefit-final-cta p {
  margin-top: 11px;
  color: #475569;
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-card,
.employee-benefits-grid article,
.admin-feature-grid article,
.trust-points article {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15,23,42,0.04);
}

.benefit-card {
  padding: 20px;
}

.benefit-card h3 {
  margin-top: 15px;
  color: #0f172a;
  font-size: 17px;
  font-weight: 900;
}

.benefit-card p {
  font-size: 14px;
}

.benefit-steps-section {
  padding: 28px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 42px rgba(15,23,42,0.05);
}

.benefit-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-steps article {
  min-height: 220px;
  padding: 22px;
  border-radius: 8px;
  background: #f8fbff;
  border: 1px solid #dbeafe;
}

.benefit-steps article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #0a66c2;
  color: #ffffff;
  font-weight: 900;
}

.benefit-steps h3 {
  margin-top: 18px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 900;
}

.benefit-steps p {
  font-size: 14px;
}

.benefit-example {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #e7f0fb;
  color: #17324d;
  font-weight: 800;
  line-height: 1.55;
}

.benefit-example i {
  color: #0a66c2;
  font-size: 20px;
}

.benefit-split,
.official-listing-section,
.trust-section,
.benefit-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: center;
}

.company-sponsored-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #dcfce7;
  color: #14532d;
  font-size: 14px;
  font-weight: 900;
}

.employee-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.employee-benefits-grid article,
.trust-points article {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 15px;
  color: #0f172a;
  font-weight: 900;
}

.admin-feature-section {
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #e2e8f0;
}

.admin-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-feature-grid article {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 15px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.admin-feature-grid i {
  color: #0a66c2;
  margin-top: 1px;
  flex-shrink: 0;
}

.privacy-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #fff7ed;
  color: #7c2d12;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.privacy-note i {
  font-size: 18px;
}

.official-listing-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #dbeafe;
  box-shadow: 0 18px 44px rgba(10,102,194,0.08);
}

.official-card-image {
  min-height: 150px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #dbeafe, #f8fbff);
}

.official-card-image i {
  font-size: 46px;
  color: #0a66c2;
}

.official-card-body {
  min-width: 0;
}

.official-badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: #e7f0fb;
  color: #0a66c2;
  font-size: 12px;
  font-weight: 900;
}

.official-card-body h3 {
  margin: 12px 0 6px;
  color: #0f172a;
  font-size: 22px;
  font-weight: 900;
}

.official-card-body p {
  font-size: 14px;
}

.official-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.official-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f8fbff;
  color: #334155;
  font-size: 12px;
  font-weight: 900;
}

.benefit-dashboard {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #cfe1f4;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15,23,42,0.11);
}

.benefit-dashboard-sidebar {
  padding: 22px;
  background: #123f6d;
  color: #ffffff;
}

.benefit-dashboard-sidebar strong,
.benefit-dashboard-sidebar span {
  display: block;
}

.benefit-dashboard-sidebar > strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
}

.benefit-dashboard-sidebar > span {
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  font-weight: 800;
}

.benefit-dashboard-sidebar nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.benefit-dashboard-sidebar nav span {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 900;
}

.benefit-dashboard-sidebar nav span.active {
  background: rgba(255,255,255,0.14);
  color: #ffffff;
}

.benefit-dashboard-main {
  min-width: 0;
  padding: 22px;
  background: #f8fbff;
}

.benefit-dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.benefit-dashboard-top strong {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  font-size: 20px;
}

.dashboard-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #dcfce7;
  color: #14532d;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-card-grid article {
  min-height: 92px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
}

.dashboard-card-grid span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.dashboard-card-grid strong {
  display: block;
  margin-top: 10px;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 23px;
}

.benefit-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefit-package-card {
  position: relative;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 34px rgba(15,23,42,0.05);
}

.benefit-package-card.recommended {
  border-color: #0a66c2;
  box-shadow: 0 22px 54px rgba(10,102,194,0.14);
}

.package-card-head {
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}

.package-card-head h3 {
  margin: 8px 0 10px;
  padding-right: 92px;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  letter-spacing: 0;
}

.package-card-head strong {
  display: inline-flex;
  color: #0a66c2;
  font-weight: 900;
}

.benefit-package-card ul {
  flex: 1;
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
  list-style: none;
}

.benefit-package-card li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

.benefit-package-card li i {
  color: #0a66c2;
  margin-top: 1px;
  flex-shrink: 0;
}

.package-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  border: 1.5px solid #cfe1f4;
  color: #0a66c2;
  text-decoration: none;
  font-weight: 900;
  transition: var(--transition);
}

.package-cta:hover {
  border-color: #0a66c2;
  background: #e7f0fb;
}

.package-cta.primary {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.package-cta.primary:hover {
  background: #084f97;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.benefit-demo-section {
  background: #ffffff;
}

.benefit-final-cta {
  padding: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #123f6d, #0a66c2);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(10,102,194,0.16);
}

.benefit-final-cta .eyebrow,
.benefit-final-cta h2,
.benefit-final-cta p {
  color: #ffffff;
}

.benefit-final-cta p {
  color: rgba(255,255,255,0.84);
}

.benefit-final-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.benefit-final-actions .btn-nav-outline {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-color: rgba(255,255,255,0.42);
}

.benefit-final-actions .btn-nav-outline:hover {
  background: rgba(255,255,255,0.16);
}

/* Company package admin helpers */
.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admin-form-row {
  display: grid;
  gap: 6px;
}

.admin-form-row label {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-secondary);
}

.filter-input {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--surface);
  outline: none;
  transition: var(--transition);
}

.filter-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,102,194,0.08);
}

.plan-mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: var(--surface-alt);
}

.plan-mini-card strong {
  display: block;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.plan-mini-card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.45;
}

.plan-mini-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
}

.admin-status-badge.trial { background: #DBEAFE; color: #1D4ED8; }
.admin-status-badge.pastdue { background: #FEF3C7; color: #B45309; }
.admin-status-badge.cancelled,
.admin-status-badge.expired { background: #F1F5F9; color: var(--text-muted); }

@media (max-width: 960px) {
  .company-packages-hero,
  .company-package-flow,
  .company-package-grid,
  .company-package-notes {
    grid-template-columns: 1fr;
  }

  .company-flow-steps { grid-template-columns: 1fr; }

  .company-packages-copy { padding: 28px; }
  .company-packages-copy h1 { font-size: 30px; }
  .company-plan-card { min-height: auto; }
  .pilot-hero,
  .pilot-application-section,
  .pilot-faq-grid {
    grid-template-columns: 1fr;
  }
  .pilot-benefit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .company-packages-page { padding: 24px 14px 44px; }
  .company-packages-copy h1 { font-size: 26px; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .company-package-actions,
  .pilot-primary-cta,
  .pilot-secondary-cta {
    width: 100%;
  }
  .pilot-application-section,
  .pilot-program-section {
    padding: 20px;
  }
  .pilot-form {
    padding: 18px;
  }
  .pilot-form-grid {
    grid-template-columns: 1fr;
  }
  .pilot-application-copy h2,
  .pilot-section-heading h2 {
    font-size: 24px;
  }
}

@media (max-width: 1080px) {
  .benefit-hero,
  .benefit-split,
  .official-listing-section,
  .trust-section,
  .benefit-final-cta {
    grid-template-columns: 1fr;
  }

  .benefit-hero-copy {
    min-height: auto;
    padding: 34px 0 8px;
  }

  .benefit-hero-panel {
    align-self: stretch;
  }

  .benefit-grid,
  .benefit-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .benefit-page {
    padding-inline: 14px;
  }

  .benefit-hero {
    padding-top: 32px;
  }

  .benefit-hero-copy h1 {
    font-size: 36px;
  }

  .benefit-hero-copy p {
    font-size: 16px;
  }

  .benefit-grid,
  .benefit-steps,
  .employee-benefits-grid,
  .admin-feature-grid,
  .benefit-package-grid,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .benefit-dashboard {
    grid-template-columns: 1fr;
  }

  .benefit-dashboard-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-package-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .benefit-hero-copy h1 {
    font-size: 30px;
  }

  .benefit-hero-actions,
  .benefit-hero-actions .btn-nav,
  .benefit-final-actions,
  .benefit-final-actions .btn-nav {
    width: 100%;
  }

  .benefit-section h2,
  .benefit-final-cta h2 {
    font-size: 25px;
  }

  .benefit-steps-section,
  .admin-feature-section,
  .benefit-final-cta {
    padding: 20px;
  }

  .official-listing-card {
    grid-template-columns: 1fr;
  }

  .official-card-image {
    min-height: 128px;
  }

  .benefit-dashboard-sidebar nav,
  .dashboard-card-grid {
    grid-template-columns: 1fr;
  }

  .benefit-panel-metrics {
    grid-template-columns: 1fr;
  }
}

/* Trusted profile */
.trust-profile-page {
  min-height: calc(100vh - 78px);
  background:
    linear-gradient(180deg, rgba(10,102,194,0.08), rgba(248,250,252,0) 280px),
    var(--background);
  padding: 28px 18px 56px;
}

.trust-profile-shell {
  max-width: 980px;
  margin: 0 auto;
}

.trust-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 18px;
  transition: var(--transition);
}

.trust-back-link:hover { color: var(--primary); }

.trust-profile-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(210px, 240px);
  gap: 24px;
  align-items: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(24,58,111,0.98), rgba(10,102,194,0.96)),
    var(--primary);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 22px 48px rgba(15,23,42,0.16);
}

.trust-avatar-wrap {
  position: relative;
  width: 104px;
  height: 104px;
}

.trust-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.55);
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(15,23,42,0.24);
}

.trust-avatar-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
}

.trust-avatar-badge {
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A66C2;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  font-size: 14px;
}

.trust-kicker {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trust-hero-kicker {
  text-transform: none;
  letter-spacing: 0.01em;
}

.trust-hero-copy h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 30px;
  line-height: 1.12;
  margin-bottom: 8px;
}

.trust-hero-copy p {
  max-width: 560px;
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.65;
}

.trust-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.trust-score-card {
  align-self: stretch;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 18px;
}

.trust-score-card span {
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-score-card strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
}

.trust-score-ring {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: conic-gradient(#22C55E calc(var(--score) * 1%), rgba(255,255,255,0.22) 0);
  position: relative;
}

.trust-score-ring::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: rgba(10,54,112,0.92);
}

.trust-score-ring b {
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
}

.profile-trust-card {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 16px;
  min-width: 210px;
}

.profile-trust-card > span {
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.profile-trust-card > strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.trust-employment-row {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
}

.trust-employment-row small {
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  font-weight: 800;
}

.trust-employment-row b {
  color: white;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.trust-card-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.trust-card-metrics span {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  line-height: 1.35;
}

.trust-card-metrics b {
  color: white;
  font-weight: 900;
  margin-right: 4px;
}

.trust-alert {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  background: #FFFBEB;
  border: 1px solid #FCD34D;
  border-radius: 8px;
  padding: 16px;
  color: #92400E;
}

.trust-alert > i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FEF3C7;
  border-radius: 8px;
}

.trust-alert strong {
  display: block;
  color: #78350F;
  margin-bottom: 2px;
}

.trust-alert p {
  color: #92400E;
  font-size: 13px;
  line-height: 1.5;
}

.trust-alert a {
  background: #92400E;
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

.trust-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
  margin-top: 16px;
}

.trust-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-xs);
  padding: 22px;
}

.trust-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.trust-panel-head.compact { margin-bottom: 14px; }

.trust-panel-head span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.trust-panel-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1.25;
}

.trust-chip,
.trust-mini-badge {
  display: inline-flex;
  align-items: center;
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.trust-mini-badge {
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 11px;
}

.trust-progress {
  height: 9px;
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}

.trust-progress div {
  height: 100%;
  background: linear-gradient(90deg, #0A66C2, #22C55E);
  border-radius: inherit;
}

.trust-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-alt);
  padding: 14px;
}

.trust-check i {
  margin-top: 2px;
  font-size: 18px;
  color: var(--text-muted);
}

.trust-check.complete {
  background: #F0FDF4;
  border-color: #BBF7D0;
}

.trust-check.complete i { color: #16A34A; }

.trust-check strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 3px;
}

.trust-check span {
  display: block;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.trust-detail-list {
  display: grid;
  gap: 12px;
}

.trust-detail-list div {
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.trust-detail-list div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.trust-detail-list dt {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}

.trust-detail-list dd {
  color: var(--text-primary);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.trust-company-panel {
  margin-top: 16px;
  display: grid;
  gap: 20px;
}

.trust-company-main {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-company-main .trust-kicker {
  color: var(--primary);
  margin-bottom: 4px;
}

.trust-company-main h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-size: 24px;
  margin-bottom: 6px;
}

.trust-company-main p {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.trust-company-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 8px;
  font-size: 24px;
  flex-shrink: 0;
}

.trust-company-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-company-facts div {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}

.trust-company-facts span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.trust-company-facts strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.company-verification-settings {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: grid;
  gap: 14px;
}

.company-verification-current {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.company-verification-current div {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}

.company-verification-current span,
.company-change-form label > span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none;
  margin-bottom: 6px;
}

.company-verification-current strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.company-change-details {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  background: #F8FAFC;
}

.company-change-details summary {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 900;
  cursor: pointer;
}

.company-change-details p {
  margin: 12px 0;
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.company-change-form {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin-top: 12px;
}

.company-change-form label {
  display: grid;
  gap: 6px;
}

.company-change-form small {
  color: var(--text-secondary);
  font-size: 12px;
}

.pending-code-form {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.trust-profile-page .trust-kicker,
.trust-profile-page .profile-trust-card > span,
.trust-profile-page .trust-panel-head span,
.trust-profile-page .trust-detail-list dt,
.trust-profile-page .trust-company-facts span,
.trust-profile-page .trust-chip {
  text-transform: none;
  letter-spacing: 0.01em;
}

.trust-ok { color: #15803D !important; }
.trust-warn { color: #B45309 !important; }

.trust-profile-setup-form {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.trust-form-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.trust-form-title i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEF2FF;
  color: #4F46E5;
  border-radius: 8px;
  flex-shrink: 0;
}

.trust-form-title strong,
.trust-form-title span {
  display: block;
}

.trust-form-title strong {
  color: var(--text-primary);
  margin-bottom: 3px;
}

.trust-form-title span {
  color: var(--text-secondary);
  font-size: 13px;
}

.trust-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.trust-form-grid.single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
}

.trust-form-grid label {
  display: grid;
  gap: 7px;
}

.trust-form-grid label span {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 800;
}

.trust-form-grid label small {
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.45;
}

.trust-inline-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.trust-inline-input input[readonly] {
  background: #F8FAFC;
  color: var(--text-secondary);
}

.trust-inline-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: white;
  color: var(--primary);
  font-weight: 800;
  padding: 0 12px;
  cursor: pointer;
  transition: var(--transition);
}

.trust-inline-button:hover {
  border-color: var(--primary);
  background: #EFF6FF;
}

.trust-check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  color: var(--text-primary);
  font-size: 13px;
}

.trust-check-row input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.trust-check-row span {
  font-weight: 700 !important;
}

.trust-primary-action,
.trust-secondary-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: white;
  font-weight: 800;
  text-decoration: none;
  padding: 0 16px;
  cursor: pointer;
  transition: var(--transition);
}

.trust-primary-action:hover {
  background: var(--primary-dark);
  color: white;
}

.trust-secondary-action {
  width: 100%;
  border-color: var(--border);
  background: var(--surface);
  color: var(--text-primary);
}

.trust-secondary-action:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.trust-secondary-action.danger:hover {
  border-color: #EF4444;
  color: #EF4444;
}

.seller-company-package-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ECFDF5;
  color: #047857;
  font-size: 11px;
  font-weight: 800;
}

.trust-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.trust-actions form { margin: 0; }

@media (max-width: 860px) {
  .trust-profile-hero,
  .trust-profile-grid,
  .trust-company-facts,
  .company-verification-current {
    grid-template-columns: 1fr;
  }

  .trust-profile-hero { text-align: center; }
  .trust-avatar-wrap { margin: 0 auto; }
  .trust-hero-meta { justify-content: center; }
  .profile-trust-card { min-height: 150px; }
}

@media (max-width: 640px) {
  .trust-profile-page { padding: 18px 12px 40px; }
  .trust-profile-hero,
  .trust-panel { padding: 18px; }
  .trust-hero-copy h1 { font-size: 25px; }
  .trust-alert,
  .trust-check-list,
  .trust-form-grid,
  .trust-actions {
    grid-template-columns: 1fr;
  }
}

/* Premium public landing */
.landing-premium {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(235, 243, 251, 0.96) 0%, rgba(248, 250, 252, 0.98) 48%, #ffffff 100%);
}

.landing-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(80% 52% at 50% 0%, rgba(10, 102, 194, 0.16), rgba(10, 102, 194, 0) 70%),
    linear-gradient(135deg, rgba(28, 53, 87, 0.05), rgba(0, 160, 220, 0.04));
}

.landing-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 76px;
}

.landing-premium .landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.86fr);
  gap: 72px;
  align-items: center;
  min-height: 570px;
  padding: 0;
}

.landing-premium .landing-copy {
  max-width: 680px;
}

.landing-premium .landing-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(10, 102, 194, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
  color: var(--secondary);
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
}

.landing-premium .landing-logo-row span span {
  color: var(--primary);
}

.landing-brand-mark {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px;
}

.landing-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(10, 102, 194, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.landing-premium .landing-copy h1 {
  margin: 0;
  color: #0B122A;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.landing-premium .landing-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.82;
  font-weight: 500;
}

.landing-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.landing-trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(203, 213, 225, 0.85);
  background: rgba(255, 255, 255, 0.78);
  color: #1E293B;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.landing-trust-badges i {
  color: var(--primary);
}

.landing-premium .landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.landing-premium .landing-primary,
.landing-premium .landing-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.landing-premium .landing-primary {
  border: 1px solid #0757AA;
  background: linear-gradient(135deg, #0A66C2 0%, #0757AA 100%);
  color: white;
  box-shadow: 0 18px 38px rgba(10, 102, 194, 0.25);
}

.landing-premium .landing-primary:hover,
.landing-premium .landing-secondary:hover {
  transform: translateY(-2px);
}

.landing-premium .landing-primary:hover {
  box-shadow: 0 22px 44px rgba(10, 102, 194, 0.34);
}

.landing-premium .landing-secondary {
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.landing-premium .landing-secondary:hover {
  border-color: rgba(10, 102, 194, 0.42);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.landing-premium .landing-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marketplace-dashboard {
  width: min(100%, 520px);
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
  transform: translateY(4px);
}

.dashboard-topbar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  background: linear-gradient(135deg, #173A64 0%, #0E2D50 100%);
  color: rgba(255, 255, 255, 0.78);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.7);
}

.dashboard-topbar strong {
  margin-left: auto;
  font-size: 13px;
  font-weight: 800;
  color: white;
}

.dashboard-body {
  padding: 28px;
}

.dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-header span {
  display: block;
  color: #64748B;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.dashboard-header strong {
  display: block;
  margin-top: 4px;
  color: #0B122A;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 999px;
  background: #ECFDF5;
  color: #047857;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.dashboard-metrics div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 18px;
  background: #F8FAFC;
}

.dashboard-metrics i {
  color: var(--primary);
  font-size: 18px;
}

.dashboard-metrics strong,
.dashboard-metrics span {
  display: block;
}

.dashboard-metrics strong {
  margin-top: 9px;
  color: #0B122A;
  font-size: 18px;
  font-weight: 900;
}

.dashboard-metrics span {
  color: #64748B;
  font-size: 12px;
  font-weight: 700;
}

.dashboard-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-list-row {
  position: relative;
  min-height: 74px;
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: white;
  overflow: hidden;
}

.dashboard-list-row.muted {
  filter: blur(0.7px);
  opacity: 0.72;
}

.mock-image {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E0F2FE, #DBEAFE 42%, #E2E8F0);
}

.mock-lines {
  display: grid;
  gap: 9px;
}

.mock-lines span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #E2E8F0;
}

.mock-lines span:first-child {
  width: 70%;
  background: #CBD5E1;
}

.mock-lines span:last-child {
  width: 48%;
}

.dashboard-list-row > i {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--primary);
  font-size: 12px;
}

.dashboard-verification {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-verification div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(235, 243, 251, 0.78);
  color: #1E3A5F;
  font-size: 12px;
  font-weight: 800;
}

.dashboard-verification i {
  color: var(--primary);
}

.landing-premium .landing-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.landing-premium .landing-trust-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.landing-premium .landing-trust-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 194, 0.28);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.1);
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #EBF3FB;
  color: var(--primary);
  font-size: 19px;
}

.landing-premium .landing-trust-grid strong {
  display: block;
  color: #0B122A;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 900;
}

.landing-premium .landing-trust-grid span {
  display: block;
  margin-top: 11px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.landing-info-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  margin-top: 18px;
}

.landing-how,
.closed-market-section {
  padding: 30px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.055);
}

.section-kicker {
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.landing-how h2,
.closed-market-section h2 {
  margin-top: 8px;
  color: #0B122A;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
}

.how-steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.how-steps div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border-radius: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.how-steps span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.how-steps strong {
  color: #0F172A;
  font-size: 14px;
  font-weight: 900;
}

.closed-market-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.closed-market-list div {
  padding: 18px;
  border-radius: 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

.closed-market-list i {
  color: var(--primary);
  font-size: 20px;
}

.closed-market-list strong,
.closed-market-list span {
  display: block;
}

.closed-market-list strong {
  margin-top: 12px;
  color: #0B122A;
  font-size: 15px;
  font-weight: 900;
}

.closed-market-list span {
  margin-top: 7px;
  color: #64748B;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .landing-shell {
    width: min(calc(100% - 36px), 980px);
    padding-top: 64px;
  }

  .landing-premium .landing-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }

  .landing-premium .landing-copy {
    max-width: 820px;
  }

  .landing-premium .landing-visual {
    min-height: 0;
  }

  .marketplace-dashboard {
    width: min(100%, 720px);
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .landing-premium .landing-copy h1 {
    font-size: 48px;
  }

  .landing-premium .landing-trust-grid,
  .landing-info-grid,
  .closed-market-list {
    grid-template-columns: 1fr;
  }

  .dashboard-verification {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .navbar-inner {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
  }

  .navbar-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .btn-nav {
    height: 38px;
    padding: 0 13px;
    font-size: 12px;
  }

  .brand-name {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .landing-shell {
    width: min(calc(100% - 28px), 520px);
    padding: 40px 0 52px;
  }

  .landing-premium .landing-copy h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .landing-premium .landing-copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .landing-premium .landing-actions,
  .landing-premium .landing-primary,
  .landing-premium .landing-secondary {
    width: 100%;
  }

  .landing-premium .landing-logo-row {
    font-size: 16px;
  }

  .dashboard-body,
  .landing-how,
  .closed-market-section,
  .landing-premium .landing-trust-grid article {
    padding: 20px;
  }

  .dashboard-header {
    display: grid;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-header strong {
    font-size: 21px;
  }
}

@media (max-width: 420px) {
  .navbar-brand {
    width: 100%;
  }

  .navbar-actions {
    gap: 7px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .landing-premium .landing-copy h1 {
    font-size: 32px;
  }
}

/* Premium landing v2 */
.navbar {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(203, 213, 225, 0.62);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.055);
}

.navbar-inner {
  height: 78px;
}

.navbar-brand {
  padding: 7px 10px 7px 7px;
  border: 1px solid transparent;
}

.navbar-brand:hover,
.navbar-brand:focus-visible {
  border-color: rgba(10, 102, 194, 0.14);
  background: rgba(255, 255, 255, 0.74);
  outline: none;
}

.brand-logo {
  box-shadow: 0 14px 28px rgba(10, 102, 194, 0.14);
}

.btn-nav:focus-visible,
.lang-btn:focus-visible,
.landing-primary:focus-visible,
.landing-secondary:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid rgba(10, 102, 194, 0.26);
  outline-offset: 3px;
}

.landing-v2 {
  min-height: calc(100vh - 78px);
  background: #F7FAFE;
}

.landing-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(62% 42% at 28% 4%, rgba(10, 102, 194, 0.18), rgba(10, 102, 194, 0) 70%),
    radial-gradient(48% 34% at 76% 8%, rgba(0, 160, 220, 0.1), rgba(0, 160, 220, 0) 72%),
    linear-gradient(180deg, #F7FAFE 0%, #EEF6FD 44%, #FFFFFF 100%);
}

.landing-v2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(10, 102, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 194, 0.055) 1px, transparent 1px),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
  background-size: 42px 42px, 42px 42px, 180px 180px;
  mask-image: linear-gradient(180deg, black 0%, black 62%, transparent 100%);
}

.landing-v2 .landing-shell {
  width: min(1220px, calc(100% - 48px));
  padding: 98px 0 96px;
}

.landing-v2 .landing-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.86fr);
  gap: 84px;
  min-height: 590px;
}

.landing-v2 .landing-copy {
  max-width: 710px;
}

.landing-v2 .landing-eyebrow {
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 14px;
  border-color: rgba(10, 102, 194, 0.16);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  color: #0757AA;
}

.landing-v2 .landing-copy h1 {
  max-width: 700px;
  font-size: 62px;
  line-height: 1.03;
  letter-spacing: 0;
}

.landing-v2 .landing-copy p {
  max-width: 665px;
  margin-top: 24px;
  color: #25364D;
  font-size: 18px;
  line-height: 1.86;
}

.landing-v2 .landing-trust-badges {
  gap: 11px;
  margin-top: 30px;
}

.landing-v2 .landing-trust-badges span {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(148, 163, 184, 0.36);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 13px 30px rgba(15, 23, 42, 0.055);
}

.landing-v2 .landing-trust-badges span:hover {
  border-color: rgba(10, 102, 194, 0.32);
  transform: translateY(-1px);
}

.landing-v2 .landing-actions {
  margin-top: 36px;
}

.landing-v2 .landing-primary,
.landing-v2 .landing-secondary {
  min-height: 54px;
  border-radius: 16px;
}

.landing-v2 .landing-primary {
  box-shadow: 0 18px 40px rgba(10, 102, 194, 0.28);
}

.landing-v2 .landing-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: #0757AA;
}

.landing-v2 .landing-visual {
  min-height: 500px;
}

.product-mockup-card {
  width: min(100%, 550px);
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 40px 110px rgba(15, 23, 42, 0.18);
}

.product-mockup-card .dashboard-body {
  padding: 30px;
}

.product-mockup-card .dashboard-header strong {
  max-width: 330px;
  font-size: 26px;
}

.mockup-security-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mockup-security-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #F0F7FF;
  color: #0757AA;
  font-size: 11px;
  font-weight: 900;
}

.mockup-feed {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.mockup-listing-card {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr 34px;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 13px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9), 0 12px 28px rgba(15, 23, 42, 0.055);
}

.mockup-listing-card.blurred {
  opacity: 0.72;
}

.mockup-listing-card.blurred .mockup-listing-content {
  filter: blur(1.5px);
}

.mockup-product-image {
  width: 62px;
  height: 62px;
  border-radius: 17px;
  background: linear-gradient(135deg, #DBEAFE, #F8FAFC);
}

.mockup-product-image.phone {
  background:
    linear-gradient(135deg, rgba(10, 102, 194, 0.2), rgba(255, 255, 255, 0.72)),
    linear-gradient(145deg, #111827 0%, #293548 52%, #0F172A 100%);
}

.mockup-product-image.laptop {
  background: linear-gradient(135deg, #E0F2FE, #CBD5E1);
}

.mockup-product-image.office {
  background: linear-gradient(135deg, #E2E8F0, #F8FAFC);
}

.mockup-listing-content {
  display: grid;
  gap: 9px;
}

.mockup-title-line,
.mockup-price-line,
.mockup-meta-line {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #CBD5E1;
}

.mockup-title-line {
  width: 72%;
}

.mockup-price-line {
  width: 45%;
  background: #0A66C2;
}

.mockup-meta-line {
  width: 58%;
  background: #E2E8F0;
}

.mockup-seller-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ECFDF5;
  color: #047857;
  font-size: 11px;
  font-weight: 900;
}

.mockup-seller-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
}

.mockup-lock {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--primary);
}

.landing-assurance-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.landing-assurance-row span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: #F0F7FF;
  color: #0757AA;
  font-size: 12px;
  font-weight: 900;
}

.landing-social-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
}

.proof-stats,
.proof-logo-row {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.055);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(203, 213, 225, 0.58);
  overflow: hidden;
}

.proof-stats div {
  padding: 24px 22px;
}

.proof-stats div + div {
  border-left: 1px solid rgba(226, 232, 240, 0.86);
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  color: #0B122A;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
}

.proof-stats span {
  margin-top: 8px;
  color: #64748B;
  font-size: 13px;
  font-weight: 800;
}

.proof-logo-row {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 22px 24px;
  border: 1px solid rgba(203, 213, 225, 0.48);
}

.proof-logo-row > span {
  color: #64748B;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-logo-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-logo-row strong {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #F8FAFC;
  color: rgba(15, 23, 42, 0.5);
  font-size: 14px;
  font-weight: 900;
}

.landing-v2 .landing-trust-grid {
  gap: 20px;
  margin-top: 24px;
}

.landing-v2 .landing-trust-grid article {
  min-height: 230px;
  border: 1px solid rgba(203, 213, 225, 0.44);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.055);
}

.landing-v2 .landing-trust-grid article:hover {
  border-color: rgba(10, 102, 194, 0.2);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.095);
}

.landing-v2 .trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, #EBF3FB, #F8FAFC);
  box-shadow: inset 0 0 0 1px rgba(10, 102, 194, 0.08);
}

.landing-v2 .landing-info-grid {
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 22px;
}

.landing-v2 .landing-how,
.landing-v2 .closed-market-section,
.landing-trust-layers {
  border: 1px solid rgba(203, 213, 225, 0.48);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.055);
}

.landing-v2 .landing-how {
  padding: 34px;
}

.landing-v2 .how-steps {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.landing-v2 .how-steps div {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 154px;
  gap: 10px;
  padding: 22px;
  border: 0;
  background: #F8FAFC;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
}

.landing-v2 .how-steps span {
  width: 36px;
  height: 36px;
}

.landing-v2 .how-steps p {
  color: #64748B;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.landing-v2 .closed-market-section {
  padding: 34px;
}

.landing-v2 .closed-market-list {
  gap: 14px;
}

.landing-v2 .closed-market-list div {
  border: 0;
  background: #F8FAFC;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.88);
}

.landing-trust-layers {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  align-items: start;
  margin-top: 22px;
  padding: 34px;
  border-radius: 24px;
}

.landing-trust-layers h2 {
  margin-top: 8px;
  color: #0B122A;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 30px;
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
}

.trust-layer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-layer-grid article {
  padding: 18px;
  border-radius: 18px;
  background: #F8FAFC;
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.9);
}

.trust-layer-grid i {
  color: var(--primary);
  font-size: 20px;
}

.trust-layer-grid strong,
.trust-layer-grid span {
  display: block;
}

.trust-layer-grid strong {
  margin-top: 12px;
  color: #0B122A;
  font-size: 15px;
  font-weight: 900;
}

.trust-layer-grid span {
  margin-top: 7px;
  color: #64748B;
  font-size: 13px;
  line-height: 1.58;
  font-weight: 500;
}

.site-footer {
  margin-top: 0;
  padding: 56px 24px 24px;
  background:
    linear-gradient(135deg, #07182E 0%, #0F2744 62%, #0A315A 100%);
  color: rgba(255, 255, 255, 0.72);
  text-align: left;
}

.site-footer-inner {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 0.72fr 0.84fr;
  gap: 42px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer-brand span span {
  color: #7CC4FF;
}

.footer-brand-col p {
  max-width: 440px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.78;
}

.footer-link-col {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-link-col h3 {
  margin: 0 0 4px;
  color: white;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

.site-footer a:hover {
  color: white;
  transform: translateX(2px);
}

.site-footer-bottom {
  width: min(1220px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

@media (max-width: 1100px) {
  .landing-v2 .landing-shell {
    width: min(calc(100% - 36px), 980px);
    padding-top: 66px;
  }

  .landing-v2 .landing-hero {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .landing-v2 .landing-visual {
    min-height: 0;
  }

  .landing-social-proof,
  .landing-trust-layers,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .navbar-inner {
    height: auto;
    min-height: 76px;
  }

  .landing-v2 .landing-copy h1 {
    font-size: 48px;
  }

  .proof-stats,
  .landing-v2 .landing-trust-grid,
  .landing-v2 .how-steps,
  .landing-v2 .closed-market-list,
  .trust-layer-grid {
    grid-template-columns: 1fr;
  }

  .proof-stats div + div {
    border-left: 0;
    border-top: 1px solid rgba(226, 232, 240, 0.86);
  }

  .site-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .landing-v2 .landing-shell {
    width: min(calc(100% - 28px), 520px);
    padding: 42px 0 56px;
  }

  .landing-v2 .landing-copy h1 {
    font-size: 34px;
  }

  .landing-v2 .landing-copy p {
    font-size: 16px;
  }

  .product-mockup-card .dashboard-body,
  .landing-v2 .landing-how,
  .landing-v2 .closed-market-section,
  .landing-trust-layers {
    padding: 20px;
  }

  .mockup-security-strip span {
    width: 100%;
  }

  .mockup-listing-card {
    grid-template-columns: 54px 1fr 30px;
  }

  .mockup-product-image {
    width: 54px;
    height: 54px;
  }

  .proof-logo-row > div {
    gap: 8px;
  }

  .proof-logo-row strong {
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .site-footer {
    padding: 42px 18px 22px;
  }
}

/* Listing share and submit feedback */
.detail-share-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 14px 0 16px;
}

.detail-share-main,
.detail-share-chip {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  background: #fff;
  color: var(--secondary);
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.detail-share-main {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #F8FBFF, #FFFFFF);
}

.detail-share-main:hover,
.detail-share-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(10, 102, 194, 0.45);
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.listing-submit-overlay[hidden] {
  display: none !important;
}

.listing-submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(248, 250, 252, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.listing-submit-panel {
  width: min(420px, 100%);
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.72);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  text-align: center;
}

.listing-submit-panel h2 {
  margin-top: 18px;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.listing-submit-panel p {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

.listing-submit-spinner,
.button-spinner {
  border-radius: 50%;
  border: 3px solid rgba(10, 102, 194, 0.18);
  border-top-color: var(--primary);
  animation: bySpin 0.8s linear infinite;
}

.listing-submit-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.button-spinner {
  width: 18px;
  height: 18px;
  border-width: 2px;
}

@keyframes bySpin {
  to { transform: rotate(360deg); }
}

.contact-btn .submit-button-loading {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-btn.is-loading .submit-button-content {
  display: none;
}

.contact-btn.is-loading .submit-button-loading {
  display: inline-flex;
}

.contact-btn.is-loading {
  opacity: 0.88;
  cursor: wait;
}

@media (max-width: 720px) {
  body[data-auth="false"] .navbar-actions {
    justify-content: flex-end;
  }

  body[data-auth="false"] .navbar-actions .lang-switcher {
    margin-right: auto;
  }
}

@media (max-width: 420px) {
  body[data-auth="false"] .navbar-actions .public-plan-link {
    display: none;
  }
}

/* Trust-focused landing and how-it-works pages */
.trust-landing,
.how-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(10, 102, 194, 0.16), transparent 380px),
    radial-gradient(circle at 78% 12%, rgba(0, 166, 112, 0.10), transparent 340px),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f5f9fd 100%);
}

.trust-landing::before,
.how-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(10, 102, 194, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 194, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.trust-landing::after,
.how-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: radial-gradient(rgba(15, 23, 42, 0.18) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
}

.trust-shell,
.how-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.trust-shell {
  padding: 70px 0 84px;
}

.trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 54px;
  align-items: center;
  min-height: 640px;
}

.trust-eyebrow,
.how-feature-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(10, 102, 194, 0.18);
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  font-size: 13px;
  font-weight: 850;
}

.trust-hero h1 {
  margin: 26px 0 22px;
  color: #071126;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 70px;
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.trust-hero h1 span,
.trust-hero h1 strong {
  display: block;
}

.trust-hero h1 strong,
.section-center h2 strong,
.how-hero h1 strong {
  color: #0aa86e;
}

.trust-hero-copy > p {
  max-width: 680px;
  color: #1e293b;
  font-size: 20px;
  line-height: 1.75;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 20px;
}

.trust-primary,
.trust-secondary,
.trust-final-cta a,
.how-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.trust-primary,
.trust-final-cta a,
.how-final-cta a {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #075fb6);
  box-shadow: 0 16px 34px rgba(10, 102, 194, 0.22);
}

.trust-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 102, 194, 0.28);
}

.trust-primary:hover,
.trust-secondary:hover,
.trust-final-cta a:hover,
.how-final-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(10, 102, 194, 0.18);
}

.trust-primary:focus-visible,
.trust-secondary:focus-visible,
.trust-final-cta a:focus-visible,
.how-final-cta a:focus-visible {
  outline: 3px solid rgba(10, 102, 194, 0.26);
  outline-offset: 3px;
}

.trust-proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #334155;
  font-size: 13px;
  font-weight: 750;
}

.trust-proof-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-proof-line i {
  color: #0aa86e;
}

.trust-hero-visual {
  min-width: 0;
}

.trust-person-panel {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.32)),
    radial-gradient(circle at 64% 32%, rgba(10, 102, 194, 0.18), transparent 260px),
    linear-gradient(135deg, #edf6ff, #ffffff);
  border: 1px solid rgba(203, 213, 225, 0.86);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.14);
}

.trust-photo-scene {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 72% 30%, rgba(3, 105, 161, 0.16), transparent 260px),
    linear-gradient(135deg, #f8fbff, #dcecf8);
}

.trust-photo-shape {
  position: absolute;
  right: 18px;
  bottom: -16px;
  width: 270px;
  height: 430px;
  border-radius: 150px 150px 24px 24px;
  background:
    radial-gradient(circle at 50% 16%, #f6d9c7 0 44px, transparent 45px),
    linear-gradient(180deg, #11315a 0 30%, #0a66c2 100%);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.14);
}

.trust-photo-shape::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 98px;
  width: 200px;
  height: 220px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(226, 232, 240, 0.86));
  transform: rotate(-8deg);
}

.verified-profile-floating,
.community-floating,
.trust-listing-preview {
  position: absolute;
  border: 1px solid rgba(203, 213, 225, 0.78);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.verified-profile-floating {
  top: 58px;
  right: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 280px;
  padding: 18px;
  border-radius: 18px;
}

.verified-profile-floating i,
.solution-card > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #0aa86e;
  background: #ecfdf5;
  font-size: 24px;
}

.verified-profile-floating strong,
.verified-profile-floating span {
  display: block;
}

.verified-profile-floating span {
  color: var(--text-secondary);
  font-size: 13px;
}

.trust-listing-preview {
  right: 38px;
  bottom: 72px;
  width: 250px;
  padding: 14px;
  border-radius: 20px;
}

.listing-image-mini {
  height: 132px;
  margin-bottom: 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 58% 42%, rgba(10, 102, 194, 0.42), transparent 42px),
    linear-gradient(135deg, #111827, #e2e8f0);
}

.trust-listing-preview strong,
.trust-listing-preview span,
.trust-listing-preview small {
  display: block;
}

.trust-listing-preview span {
  color: var(--text-primary);
  font-weight: 900;
}

.trust-listing-preview small {
  margin-top: 6px;
  color: #057642;
  font-weight: 800;
}

.community-floating {
  left: 42px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  padding: 13px 16px;
  border-radius: 999px;
  color: #1e293b;
  font-size: 13px;
  font-weight: 750;
}

.community-floating i {
  color: #0a66c2;
  font-size: 22px;
}

.section-center {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-center h2,
.trust-comparison h2,
.trust-audience h2,
.how-detailed h2,
.how-why h2 {
  margin: 0;
  color: #071126;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.section-center p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.trust-problem,
.trust-features,
.trust-steps,
.trust-comparison,
.trust-audience,
.trust-final-cta,
.how-company-feature,
.how-detailed,
.how-why,
.how-final-cta {
  margin-top: 34px;
  padding: 42px;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.06);
}

.trust-problem-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.anonymous-card {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.anonymous-avatar {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 0 auto 4px;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #475569);
  font-size: 54px;
  font-weight: 900;
}

.anonymous-card span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(203, 213, 225, 0.86);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.anonymous-card i {
  color: #dc2626;
}

.solution-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ecfdf5, #f8fbff);
  border: 1px solid rgba(16, 185, 129, 0.18);
}

.solution-card strong {
  display: block;
  color: #047857;
  font-size: 20px;
}

.solution-card p {
  margin: 8px 0 0;
  color: #334155;
}

.trust-feature-grid,
.trust-step-grid,
.how-detailed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.trust-feature-grid article,
.trust-step-grid article,
.how-detailed-grid article,
.how-why article {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 18px;
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.trust-feature-grid article:hover,
.trust-step-grid article:hover,
.how-detailed-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 102, 194, 0.30);
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.trust-feature-grid i,
.trust-step-grid i,
.how-detailed-grid i,
.how-why i {
  color: #0a66c2;
  font-size: 38px;
}

.trust-feature-grid strong,
.trust-step-grid strong,
.how-detailed-grid strong,
.how-why strong {
  display: block;
  margin-top: 18px;
  color: #071126;
  font-size: 16px;
  line-height: 1.35;
}

.trust-feature-grid p,
.trust-step-grid p,
.how-detailed-grid p,
.how-why p {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.trust-step-grid article > span,
.how-timeline article > span,
.how-detailed-grid article > span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: #0aa86e;
  font-weight: 900;
}

.trust-step-grid i {
  margin-top: 36px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(203, 213, 225, 0.86);
  border-radius: 18px;
  background: #fff;
}

.comparison-table > div {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.comparison-table > div:nth-last-child(-n+3) {
  border-bottom: 0;
}

.comparison-head {
  color: #071126 !important;
  background: #f1f5f9;
  font-weight: 900 !important;
  text-align: center;
}

.comparison-head.positive {
  color: #fff !important;
  background: #0aa86e;
}

.comparison-table i.bi-check-circle {
  color: #0aa86e;
}

.comparison-table i.bi-x-circle {
  color: #94a3b8;
}

.trust-audience {
  text-align: center;
}

.trust-audience > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.trust-audience span {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 120px;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.86);
  border-radius: 18px;
  background: #fff;
  font-weight: 850;
}

.trust-audience i {
  color: #0a66c2;
  font-size: 28px;
}

.trust-final-cta,
.how-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 50%, rgba(10, 166, 110, 0.28), transparent 300px),
    linear-gradient(135deg, #071b38, #0a2f5f);
}

.trust-final-cta i,
.how-final-cta i {
  font-size: 34px;
}

.trust-final-cta h2,
.how-final-cta h2 {
  margin: 8px 0 6px;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.trust-final-cta p,
.how-final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.how-shell {
  padding: 54px 0 78px;
}

.how-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 14px;
}

.how-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.how-hero {
  margin: 48px 0 48px;
  text-align: center;
}

.how-hero h1 {
  margin: 0;
  color: #071126;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0;
}

.how-hero p {
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 18px;
}

.how-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 34px;
}

.how-timeline article {
  position: relative;
  text-align: center;
}

.how-timeline article::after {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(50% + 54px);
  width: calc(100% - 78px);
  border-top: 2px dashed rgba(148, 163, 184, 0.42);
}

.how-timeline article:last-child::after {
  display: none;
}

.how-timeline article > div {
  display: grid;
  place-items: center;
  width: 106px;
  height: 106px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid rgba(203, 213, 225, 0.86);
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
}

.how-timeline article > div i {
  color: #071126;
  font-size: 42px;
}

.how-timeline article > span {
  top: 26px;
  left: calc(50% - 70px);
  z-index: 1;
}

.how-timeline strong {
  display: block;
  color: #0aa86e;
  font-size: 18px;
  font-weight: 900;
}

.how-timeline p {
  margin: 10px auto 0;
  max-width: 210px;
  color: var(--text-secondary);
  font-size: 14px;
}

.how-company-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.15fr);
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, #f0fdf4, #f8fbff);
}

.how-feature-copy h2 {
  margin: 20px 0 14px;
  color: #071126;
  font-size: 36px;
  font-weight: 900;
}

.how-feature-copy h2::first-letter {
  color: inherit;
}

.how-feature-copy p {
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.how-feature-copy ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.how-feature-copy li {
  display: flex;
  gap: 10px;
  color: #334155;
  font-weight: 750;
}

.how-feature-copy li i {
  color: #0aa86e;
}

.how-market-mockup {
  position: relative;
  min-height: 330px;
}

.how-filter-card,
.how-listings-card {
  position: absolute;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.10);
}

.how-filter-card {
  left: 0;
  top: 50px;
  z-index: 2;
  width: 230px;
  padding: 20px;
}

.how-filter-card strong,
.how-filter-card label,
.how-filter-card span,
.how-filter-card small {
  display: block;
}

.how-filter-card label {
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 12px;
}

.how-filter-card span {
  display: flex;
  justify-content: space-between;
  margin: 6px 0 14px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
}

.how-filter-card small {
  color: #0aa86e;
  font-weight: 800;
}

.how-listings-card {
  right: 0;
  top: 0;
  width: calc(100% - 160px);
  padding: 22px;
}

.how-listings-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.how-listings-head span {
  align-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: #f1f5f9;
  font-size: 11px;
  font-weight: 850;
}

.how-product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.how-product-row article {
  padding: 10px;
  border-radius: 15px;
  background: #f8fafc;
}

.how-product-row article div {
  height: 110px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e2e8f0, #0f172a);
}

.how-product-row article:nth-child(2) div {
  background: linear-gradient(135deg, #e2e8f0, #64748b);
}

.how-product-row article:nth-child(3) div {
  background: linear-gradient(135deg, #e2e8f0, #111827);
}

.how-product-row b,
.how-product-row small {
  display: block;
  margin-top: 8px;
}

.how-product-row small {
  color: #0f172a;
  font-weight: 850;
}

.how-detailed h2,
.how-why h2 {
  margin-bottom: 28px;
  text-align: center;
}

.how-detailed-grid article {
  min-height: 300px;
}

.how-illustration {
  height: 120px;
  margin-top: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef6ff, #fff);
  border: 1px solid rgba(203, 213, 225, 0.72);
}

.how-illustration.phone {
  background:
    radial-gradient(circle at 62% 40%, #0aa86e 0 8px, transparent 9px),
    linear-gradient(135deg, #eff6ff, #ffffff);
}

.how-illustration.form {
  background:
    linear-gradient(#cbd5e1 0 0) 58% 32% / 46% 8px no-repeat,
    linear-gradient(#cbd5e1 0 0) 58% 52% / 42% 8px no-repeat,
    linear-gradient(#0aa86e 0 0) 58% 72% / 44% 16px no-repeat,
    linear-gradient(135deg, #f8fafc, #ffffff);
}

.how-illustration.chat {
  background:
    radial-gradient(circle at 36% 42%, #0a66c2 0 10px, transparent 11px),
    radial-gradient(circle at 64% 58%, #0aa86e 0 10px, transparent 11px),
    linear-gradient(135deg, #eff6ff, #ffffff);
}

.how-illustration.trade {
  background:
    radial-gradient(circle at 68% 38%, #0aa86e 0 18px, transparent 19px),
    linear-gradient(135deg, #f8fafc, #ffffff);
}

.how-why > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.how-why article {
  min-height: 170px;
}

@media (max-width: 1100px) {
  .trust-hero,
  .trust-problem-grid,
  .how-company-feature {
    grid-template-columns: 1fr;
  }

  .trust-hero {
    min-height: 0;
  }

  .trust-feature-grid,
  .trust-step-grid,
  .how-detailed-grid,
  .how-timeline,
  .how-why > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-audience > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .how-timeline article::after {
    display: none;
  }
}

@media (max-width: 760px) {
  .trust-shell,
  .how-shell {
    width: min(100% - 28px, 620px);
  }

  .trust-shell {
    padding: 42px 0 58px;
  }

  .trust-hero {
    gap: 34px;
  }

  .trust-hero h1 {
    font-size: 44px;
  }

  .trust-hero-copy > p,
  .how-hero p {
    font-size: 16px;
  }

  .trust-actions,
  .trust-primary,
  .trust-secondary,
  .trust-final-cta a,
  .how-final-cta a {
    width: 100%;
  }

  .trust-person-panel {
    min-height: 470px;
  }

  .verified-profile-floating {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .trust-listing-preview {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .community-floating {
    display: none;
  }

  .trust-problem,
  .trust-features,
  .trust-steps,
  .trust-comparison,
  .trust-audience,
  .trust-final-cta,
  .how-company-feature,
  .how-detailed,
  .how-why,
  .how-final-cta {
    padding: 24px;
  }

  .section-center h2,
  .trust-comparison h2,
  .trust-audience h2,
  .how-detailed h2,
  .how-why h2 {
    font-size: 28px;
  }

  .trust-feature-grid,
  .trust-step-grid,
  .how-detailed-grid,
  .how-timeline,
  .how-why > div,
  .trust-audience > div {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    grid-template-columns: 1fr;
  }

  .comparison-table > div,
  .comparison-table > div:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  }

  .comparison-head.center {
    display: none;
  }

  .trust-final-cta,
  .how-final-cta,
  .solution-card {
    display: grid;
  }

  .how-hero {
    margin: 34px 0;
  }

  .how-hero h1 {
    font-size: 36px;
  }

  .how-market-mockup {
    min-height: auto;
  }

  .how-filter-card,
  .how-listings-card {
    position: static;
    width: 100%;
  }

  .how-listings-card {
    margin-top: 16px;
  }

  .how-product-row {
    grid-template-columns: 1fr;
  }

  body[data-auth="false"] .navbar-actions .public-how-link {
    display: none;
  }
}

/* Startup landing rebuild */
body[data-auth="false"] .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

body[data-auth="false"] .navbar-inner {
  min-height: 76px;
}

.public-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.public-menu a {
  color: #0f1b3d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.16s ease;
}

.public-menu a:hover {
  color: #0a66c2;
}

body[data-auth="false"] .navbar-actions {
  gap: 12px;
}

body[data-auth="false"] .navbar-actions .btn-nav-primary {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 12px;
  background: #0b3b75;
  box-shadow: 0 12px 28px rgba(11, 59, 117, 0.22);
}

body[data-auth="false"] .navbar-actions .btn-nav-primary:hover {
  transform: translateY(-1px);
  background: #0755a3;
}

.startup-landing {
  --startup-navy: #071833;
  --startup-blue: #0a66c2;
  --startup-emerald: #10b981;
  --startup-text: #0f172a;
  --startup-muted: #58657d;
  --startup-line: rgba(203, 213, 225, 0.86);
  --startup-soft: #f6f9fc;
  position: relative;
  overflow: hidden;
  color: var(--startup-text);
  background:
    radial-gradient(circle at 18% 0%, rgba(10, 102, 194, 0.14), transparent 32%),
    radial-gradient(circle at 82% 6%, rgba(16, 185, 129, 0.10), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #f7fafc 100%);
}

.startup-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 55%);
}

.startup-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 72px;
}

.startup-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  align-items: center;
  gap: 72px;
  min-height: calc(100vh - 168px);
}

.startup-hero-copy {
  max-width: 660px;
}

.startup-eyebrow,
.section-heading span,
.company-filter-copy > span,
.startup-final-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0a66c2;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.startup-eyebrow {
  padding: 9px 14px;
  border: 1px solid rgba(10, 102, 194, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.startup-hero h1 {
  margin: 22px 0 18px;
  color: var(--startup-navy);
  font-size: clamp(56px, 6.5vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 800;
}

.startup-hero h1 span,
.startup-hero h1 strong {
  display: block;
}

.startup-hero h1 strong {
  color: var(--startup-emerald);
}

.startup-hero-copy > p {
  margin: 0;
  max-width: 620px;
  color: #253149;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
}

.startup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.startup-primary,
.startup-secondary,
.startup-final-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.startup-primary,
.startup-final-cta a {
  color: #fff;
  background: #0b3b75;
  box-shadow: 0 18px 36px rgba(11, 59, 117, 0.22);
}

.startup-secondary {
  color: #0b3b75;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.44);
}

.startup-primary:hover,
.startup-secondary:hover,
.startup-final-cta a:hover {
  transform: translateY(-2px);
}

.startup-primary:hover,
.startup-final-cta a:hover {
  color: #fff;
  background: #0755a3;
  box-shadow: 0 22px 44px rgba(10, 102, 194, 0.24);
}

.startup-secondary:hover {
  color: #0b3b75;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.startup-primary:focus-visible,
.startup-secondary:focus-visible,
.startup-final-cta a:focus-visible {
  outline: 3px solid rgba(10, 102, 194, 0.26);
  outline-offset: 3px;
}

.startup-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.startup-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  color: #1f2a44;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.startup-trust-line i {
  color: var(--startup-emerald);
}

.startup-hero-visual {
  position: relative;
}

.dashboard-preview {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 80px rgba(15, 23, 42, 0.16);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(135deg, #102a4d, #0b3b75);
}

.dashboard-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.dashboard-topbar strong {
  margin-left: auto;
  font-size: 14px;
}

.dashboard-body {
  padding: 24px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-metrics div {
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.76);
  border-radius: 18px;
  background: #f8fbff;
}

.dashboard-metrics small {
  display: block;
  color: var(--startup-muted);
  font-size: 12px;
  font-weight: 800;
}

.dashboard-metrics strong {
  display: block;
  margin-top: 6px;
  color: var(--startup-navy);
  font-size: 24px;
}

.dashboard-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.dashboard-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #075985;
  background: #eff6ff;
  font-size: 12px;
  font-weight: 800;
}

.dashboard-badges span:last-child {
  color: #047857;
  background: #ecfdf5;
}

.dashboard-listings {
  display: grid;
  gap: 14px;
}

.dashboard-listings article {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(203, 213, 225, 0.62);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94));
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.listing-thumb,
.mock-product {
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9), transparent 22%),
    linear-gradient(135deg, #dbeafe, #93c5fd);
}

.listing-thumb {
  width: 72px;
  height: 58px;
}

.landing-product-thumb {
  width: 82px;
  height: 70px;
  display: block;
  object-fit: contain;
  box-sizing: border-box;
  padding: 5px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 20px rgba(15, 23, 42, 0.09);
}

.listing-thumb.chair,
.mock-product.chair {
  background:
    radial-gradient(circle at 40% 28%, rgba(255,255,255,0.9), transparent 22%),
    linear-gradient(135deg, #e2e8f0, #64748b);
}

.dashboard-listings strong,
.company-listing-preview strong {
  display: block;
  color: var(--startup-navy);
  font-size: 15px;
}

.dashboard-listings small {
  display: block;
  margin-top: 3px;
  color: var(--startup-muted);
  font-size: 12px;
  font-weight: 700;
}

.dashboard-listings b {
  display: block;
  margin-top: 5px;
  color: var(--startup-blue);
}

.dashboard-listings article > span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #047857;
  background: #ecfdf5;
  font-size: 12px;
  font-weight: 800;
}

.startup-section {
  margin-top: 44px;
  padding: 42px;
  border: 1px solid rgba(203, 213, 225, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.company-filter-copy h2,
.startup-final-cta h2 {
  margin: 9px 0 0;
  color: var(--startup-navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.trust-problem-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 22px;
  align-items: stretch;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-self: start;
}

.pain-grid article,
.how-simple-grid article,
.audience-grid article,
.faq-grid article {
  padding: 22px;
  border: 1px solid rgba(203, 213, 225, 0.82);
  border-radius: 22px;
  background: #f8fbff;
}

.pain-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #ef4444;
  background: #fff1f2;
  font-size: 23px;
  box-shadow: inset 0 0 0 1px rgba(239, 68, 68, 0.14);
}

.pain-grid article:nth-child(3) i {
  color: #be123c;
  background: #ffe4e6;
  box-shadow: inset 0 0 0 1px rgba(190, 18, 60, 0.18);
}

.pain-grid strong,
.how-simple-grid strong,
.faq-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--startup-navy);
  font-size: 17px;
}

.pain-grid p,
.how-simple-grid p,
.faq-grid p,
.company-filter-copy p,
.startup-final-cta p {
  margin: 10px 0 0;
  color: var(--startup-muted);
  font-size: 15px;
  line-height: 1.65;
}

.solution-panel {
  padding: 28px;
  border-radius: 24px;
  color: #06291f;
  background: linear-gradient(135deg, #ecfdf5, #f8fbff);
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.solution-panel span {
  color: #047857;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-panel h3 {
  margin: 10px 0 18px;
  color: #064e3b;
  font-size: 28px;
}

.solution-panel ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.solution-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.solution-panel i {
  color: var(--startup-emerald);
}

.company-filter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(circle at 83% 18%, rgba(16, 185, 129, 0.14), transparent 28%),
    linear-gradient(135deg, #ffffff, #f0fdf4);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.filter-pills span {
  padding: 9px 13px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 999px;
  color: #1f2a44;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.filter-pills .active {
  color: #fff;
  background: #0b3b75;
  border-color: #0b3b75;
}

.company-listing-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.company-listing-preview article {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(203, 213, 225, 0.68);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92));
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.company-listing-preview article::after {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 0 7px rgba(16, 185, 129, 0.12);
}

.company-listing-preview article:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 102, 194, 0.24);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
}

.mock-product {
  height: 150px;
  margin-bottom: 16px;
}

.landing-product-image {
  width: 100%;
  height: 190px;
  display: block;
  object-fit: contain;
  box-sizing: border-box;
  padding: 12px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 34px rgba(15, 23, 42, 0.09);
}

.company-listing-preview p {
  margin: 8px 0 12px;
  color: var(--startup-blue);
  font-size: 22px;
  font-weight: 800;
}

.company-listing-preview span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0f3f68;
  background: rgba(239, 246, 255, 0.95);
  font-size: 12px;
  font-weight: 800;
}

.how-simple-grid,
.audience-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.how-simple-grid article {
  position: relative;
}

.how-simple-grid article > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: #0a66c2;
  font-weight: 800;
}

.comparison-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(203, 213, 225, 0.78);
  border-radius: 24px;
  background: #fff;
}

.comparison-col {
  padding: 28px;
}

.comparison-col + .comparison-col {
  border-left: 1px solid rgba(203, 213, 225, 0.78);
}

.comparison-col h3 {
  margin: 0 0 18px;
  color: var(--startup-navy);
  font-size: 22px;
}

.comparison-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: #334155;
  font-weight: 700;
}

.comparison-col.muted i {
  color: #ef4444;
}

.comparison-col.positive {
  background: linear-gradient(135deg, #f0fdf4, #ffffff);
}

.comparison-col.positive i {
  color: var(--startup-emerald);
}

.audience-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.audience-grid article {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--startup-navy);
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.startup-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
  padding: 38px 42px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 185, 129, 0.22), transparent 34%),
    linear-gradient(135deg, #071833, #0b3b75);
  box-shadow: 0 28px 70px rgba(7, 24, 51, 0.22);
}

.startup-final-cta span,
.startup-final-cta h2,
.startup-final-cta p {
  color: #fff;
}

.startup-final-cta p {
  opacity: 0.82;
}

.startup-final-cta a {
  flex: 0 0 auto;
  background: var(--startup-emerald);
  box-shadow: 0 18px 36px rgba(16, 185, 129, 0.22);
}

.startup-final-cta a:hover {
  background: #059669;
}

@media (max-width: 1120px) {
  .public-menu {
    gap: 16px;
  }

  .public-menu a {
    font-size: 13px;
  }

  .startup-hero,
  .trust-problem-layout,
  .company-filter-section {
    grid-template-columns: 1fr;
  }

  .startup-hero {
    min-height: 0;
  }

  .startup-hero-copy {
    max-width: 820px;
  }

  .startup-hero-visual {
    max-width: 640px;
  }

  .pain-grid,
  .how-simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  body[data-auth="false"] .navbar-inner {
    min-height: 94px;
    flex-wrap: wrap;
    align-content: center;
    gap: 10px;
  }

  .public-menu {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .public-menu a {
    flex: 0 0 auto;
  }

  body[data-auth="false"] .navbar-actions .lang-switcher {
    display: none;
  }

  body[data-auth="false"] .navbar-actions .btn-nav-primary {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 700px) {
  .startup-shell {
    width: min(100% - 28px, 560px);
    padding: 48px 0 50px;
  }

  .startup-hero {
    gap: 34px;
  }

  .startup-hero h1 {
    font-size: 48px;
  }

  .startup-hero-copy > p {
    font-size: 17px;
    line-height: 1.65;
  }

  .startup-actions,
  .startup-primary,
  .startup-secondary,
  .startup-final-cta a {
    width: 100%;
  }

  .startup-section {
    padding: 24px;
    border-radius: 24px;
  }

  .section-heading h2,
  .company-filter-copy h2,
  .startup-final-cta h2 {
    font-size: 30px;
  }

  .pain-grid,
  .company-listing-preview,
  .how-simple-grid,
  .comparison-card,
  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .comparison-col + .comparison-col {
    border-left: 0;
    border-top: 1px solid rgba(203, 213, 225, 0.78);
  }

  .startup-final-cta {
    display: grid;
    padding: 30px 24px;
  }

  .dashboard-listings article {
    grid-template-columns: 58px 1fr;
  }

  .dashboard-listings article > span {
    grid-column: 2;
    justify-self: start;
  }

  .listing-thumb,
  .landing-product-thumb {
    width: 58px;
    height: 54px;
  }
}

@media (max-width: 520px) {
  body[data-auth="false"] .navbar-inner {
    min-height: 116px;
  }

  body[data-auth="false"] .navbar-brand {
    min-width: 100%;
  }

  body[data-auth="false"] .navbar-actions {
    margin-left: auto;
  }

  .public-menu {
    display: none;
  }
}

/* BeyazYakalıdan premium marketplace landing */
body[data-auth="false"] .navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(203, 213, 225, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
}

body[data-auth="false"] .navbar-inner {
  min-height: 78px;
  gap: 20px;
}

body[data-auth="false"] .navbar-brand {
  flex: 0 0 auto;
}

.public-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1 1 auto;
}

.public-menu a {
  color: #0f1b3d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.public-menu a:hover,
.public-menu a:focus-visible {
  color: #0a66c2;
}

body[data-auth="false"] .navbar-actions {
  gap: 10px;
  flex: 0 0 auto;
}

body[data-auth="false"] .navbar-actions .btn-nav {
  min-height: 42px;
  border-radius: 14px;
  font-weight: 800;
}

body[data-auth="false"] .navbar-actions .public-login-btn {
  padding: 0 18px;
  background: #fff;
}

body[data-auth="false"] .navbar-actions .btn-nav-primary {
  padding: 0 20px;
  background: linear-gradient(135deg, #0b4f93, #0a66c2);
  box-shadow: 0 16px 34px rgba(10, 102, 194, 0.24);
}

body[data-auth="false"] .navbar-actions .btn-nav-primary:hover {
  background: linear-gradient(135deg, #073f78, #0757aa);
}

.by-landing {
  --by-navy: #07142f;
  --by-blue: #0a66c2;
  --by-blue-dark: #084a93;
  --by-soft: #f6f9fc;
  --by-line: #d7e3f1;
  --by-text: #0b1637;
  --by-muted: #52637a;
  --by-green: #10b981;
  position: relative;
  overflow: hidden;
  color: var(--by-text);
  background:
    radial-gradient(circle at 12% 12%, rgba(10, 102, 194, 0.14), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(16, 185, 129, 0.12), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 44%, #f7faff 100%);
}

.by-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10, 102, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 102, 194, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.82) 34%, transparent 80%);
}

.by-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 72px;
}

.by-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.84fr);
  align-items: center;
  gap: 72px;
  min-height: calc(100vh - 156px);
  padding: 18px 0 76px;
}

.by-eyebrow,
.by-section-heading span,
.by-feature-copy > span,
.by-ai-section > div:first-child > span,
.by-final-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--by-blue);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(186, 207, 232, 0.84);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.by-hero h1 {
  margin: 28px 0 22px;
  max-width: 680px;
  color: var(--by-navy);
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
  font-weight: 900;
}

.by-hero-copy > p {
  max-width: 650px;
  margin: 0;
  color: #142342;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.72;
}

.by-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.by-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.by-btn:hover {
  transform: translateY(-2px);
}

.by-btn:focus-visible {
  outline: 3px solid rgba(10, 102, 194, 0.24);
  outline-offset: 3px;
}

.by-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #084a93, #0a66c2);
  box-shadow: 0 18px 38px rgba(10, 102, 194, 0.24);
}

.by-btn-secondary {
  color: #0b4f93;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(185, 203, 225, 0.92);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}

.by-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.by-trust-strip span,
.by-dashboard-badges span,
.by-dashboard-filters span,
.by-filter-pills span,
.by-company-preview article > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(199, 213, 230, 0.84);
  border-radius: 999px;
  padding: 9px 13px;
  color: #0a315f;
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.055);
}

.by-trust-strip i,
.by-dashboard-badges i,
.by-company-preview i {
  color: var(--by-green);
}

.by-dashboard-card {
  overflow: hidden;
  border: 1px solid rgba(165, 186, 212, 0.82);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(15, 23, 42, 0.16);
}

.by-dashboard-top {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(135deg, #132f55, #0b2445);
}

.by-dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8da4be;
}

.by-dashboard-top strong {
  margin-left: auto;
  font-size: 15px;
  font-weight: 900;
}

.by-dashboard-body {
  padding: 34px 28px 28px;
}

.by-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.by-dashboard-header small,
.by-section-heading span,
.by-feature-copy > span,
.by-ai-section > div:first-child > span,
.by-final-cta span {
  text-transform: none;
}

.by-dashboard-header small {
  color: #35506e;
  font-size: 12px;
  font-weight: 900;
}

.by-dashboard-header h2 {
  margin: 9px 0 0;
  max-width: 360px;
  color: var(--by-navy);
  font-size: 30px;
  line-height: 1.08;
}

.by-status-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  color: #047857;
  background: #e8fff3;
  font-size: 13px;
  font-weight: 900;
}

.by-dashboard-filters,
.by-dashboard-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.by-dashboard-filters span.active,
.by-filter-pills span.active {
  color: #fff;
  border-color: #0b4f93;
  background: #0b4f93;
}

.by-listing-stack {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.by-listing-stack article {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(205, 218, 234, 0.9);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.by-listing-stack img {
  width: 84px;
  height: 72px;
  object-fit: contain;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 18px;
  background: #fff;
}

.by-listing-stack img.by-chair-thumb {
  padding: 5px;
  object-position: center;
}

.by-listing-stack strong,
.by-company-preview strong {
  display: block;
  color: var(--by-navy);
  font-size: 17px;
  font-weight: 900;
}

.by-listing-stack small {
  display: block;
  margin: 5px 0;
  color: #35506e;
  font-weight: 800;
}

.by-listing-stack b,
.by-company-preview b {
  color: var(--by-blue);
  font-size: 19px;
  font-weight: 900;
}

.by-listing-stack article > span {
  border-radius: 999px;
  padding: 10px 14px;
  color: #047857;
  background: #e8fff3;
  font-size: 13px;
  font-weight: 900;
}

.by-section,
.by-feature-section,
.by-final-cta {
  margin-top: 42px;
  border: 1px solid rgba(203, 216, 232, 0.88);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 64px rgba(15, 23, 42, 0.08);
}

.by-section {
  padding: 46px;
}

.by-section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.by-section-heading h2,
.by-feature-copy h2,
.by-ai-section h2,
.by-final-cta h2 {
  margin: 16px 0 0;
  color: var(--by-navy);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.by-trust-grid,
.by-use-case-grid,
.by-steps-grid,
.by-faq-grid {
  display: grid;
  gap: 16px;
}

.by-trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.by-use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.by-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.by-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.by-trust-grid article,
.by-use-case-grid article,
.by-steps-grid article,
.by-faq-grid article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(203, 216, 232, 0.92);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.by-trust-grid article:hover,
.by-use-case-grid article:hover,
.by-steps-grid article:hover,
.by-faq-grid article:hover,
.by-company-preview article:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 102, 194, 0.32);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.1);
}

.by-trust-grid i,
.by-use-case-grid i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: #0b4f93;
  background: #e9f4ff;
  font-size: 20px;
}

.by-trust-grid h3,
.by-use-case-grid h3,
.by-steps-grid h3,
.by-faq-grid h3 {
  margin: 0 0 12px;
  color: var(--by-navy);
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
}

.by-trust-grid p,
.by-use-case-grid p,
.by-steps-grid p,
.by-faq-grid p,
.by-feature-copy p,
.by-ai-section p {
  margin: 0;
  color: var(--by-muted);
  font-size: 15px;
  line-height: 1.7;
}

.by-steps-grid article {
  position: relative;
}

.by-steps-grid article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0b4f93, #0a66c2);
  font-size: 15px;
  font-weight: 900;
}

.by-feature-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  background:
    radial-gradient(circle at 80% 18%, rgba(16, 185, 129, 0.15), transparent 32%),
    rgba(255, 255, 255, 0.86);
}

.by-feature-copy p {
  max-width: 540px;
  margin-top: 18px;
}

.by-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.by-company-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.by-company-preview article {
  padding: 18px;
  border: 1px solid rgba(203, 216, 232, 0.95);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.by-product-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1.34 / 1;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(203, 216, 232, 0.95);
  border-radius: 22px;
  background: #fff;
}

.by-product-frame img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

.by-product-frame.by-product-frame-chair {
  aspect-ratio: 1 / 1.08;
  padding: 10px 0;
}

.by-product-frame.by-product-frame-chair img.by-chair-product {
  width: auto;
  height: 100%;
  max-width: 74%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.by-company-preview b {
  display: block;
  margin: 12px 0 14px;
  font-size: 28px;
}

.by-ai-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.by-ai-card {
  padding: 30px;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 26px;
  background: linear-gradient(180deg, #f2fff8, #ffffff);
}

.by-ai-card > i {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #047857;
  background: #dffbed;
  font-size: 26px;
}

.by-ai-card strong {
  display: block;
  color: var(--by-navy);
  font-size: 24px;
  font-weight: 900;
}

.by-ai-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.by-ai-card li {
  color: #173055;
  font-weight: 800;
}

.by-ai-card li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--by-green);
  font-weight: 900;
}

.by-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 46px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 185, 129, 0.24), transparent 30%),
    linear-gradient(135deg, #07142f, #0b4f93);
}

.by-final-cta span {
  color: #c8f7e4;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.by-final-cta h2 {
  max-width: 680px;
  color: #fff;
}

.by-final-cta .by-btn-primary {
  flex: 0 0 auto;
  background: linear-gradient(135deg, #0f9f70, #10b981);
  box-shadow: 0 18px 38px rgba(16, 185, 129, 0.24);
}

@media (max-width: 1180px) {
  .public-menu {
    gap: 18px;
  }

  .public-menu a {
    font-size: 13px;
  }

  .by-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 44px;
  }

  .by-hero h1,
  .by-hero-copy > p {
    max-width: 850px;
  }

  .by-hero-visual {
    max-width: 720px;
  }

  .by-trust-grid,
  .by-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .by-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  body[data-auth="false"] .navbar-inner {
    min-height: 96px;
    flex-wrap: wrap;
    align-content: center;
  }

  body[data-auth="false"] .navbar-brand {
    min-width: 0;
  }

  .public-menu {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .public-menu a {
    flex: 0 0 auto;
  }

  body[data-auth="false"] .navbar-actions .lang-switcher {
    display: none;
  }

  .by-shell {
    width: min(100% - 32px, 760px);
    padding-top: 56px;
  }

  .by-section,
  .by-feature-section,
  .by-final-cta {
    padding: 30px;
    border-radius: 24px;
  }

  .by-feature-section,
  .by-ai-section {
    grid-template-columns: 1fr;
  }

  .by-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body[data-auth="false"] .navbar-inner {
    min-height: 104px;
    padding: 10px 16px;
  }

  body[data-auth="false"] .navbar-brand {
    width: auto;
  }

  body[data-auth="false"] .brand-name {
    font-size: 16px;
  }

  body[data-auth="false"] .navbar-actions {
    margin-left: auto;
    gap: 8px;
  }

  body[data-auth="false"] .navbar-actions .public-login-btn {
    display: none;
  }

  body[data-auth="false"] .navbar-actions .btn-nav-primary {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .public-menu {
    display: none;
  }

  .by-shell {
    width: min(100% - 24px, 560px);
    padding: 34px 0 48px;
  }

  .by-hero {
    padding-bottom: 34px;
  }

  .by-hero h1 {
    margin-top: 22px;
    font-size: clamp(42px, 15vw, 64px);
  }

  .by-hero-actions,
  .by-btn {
    width: 100%;
  }

  .by-trust-strip span,
  .by-dashboard-badges span,
  .by-filter-pills span {
    font-size: 12px;
  }

  .by-dashboard-body {
    padding: 24px 18px 20px;
  }

  .by-dashboard-header {
    display: grid;
  }

  .by-dashboard-header h2 {
    font-size: 24px;
  }

  .by-listing-stack article {
    grid-template-columns: 68px 1fr;
  }

  .by-listing-stack article > span {
    grid-column: 2;
    justify-self: start;
  }

  .by-listing-stack img {
    width: 68px;
    height: 62px;
  }

  .by-trust-grid,
  .by-use-case-grid,
  .by-steps-grid,
  .by-company-preview {
    grid-template-columns: 1fr;
  }

  .by-section-heading h2,
  .by-feature-copy h2,
  .by-ai-section h2,
  .by-final-cta h2 {
    font-size: 32px;
  }

  .by-final-cta {
    display: grid;
  }
}

/* About page */
.about-page {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 119, 181, 0.12), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(16, 185, 129, 0.12), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #f6f9fc 100%);
  color: #07142f;
}

.about-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(15, 65, 120, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 65, 120, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 72%);
}

.about-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 48px;
  align-items: center;
  padding: 42px 0 64px;
}

.about-eyebrow,
.about-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #005eb8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.about-hero h1,
.about-story h2,
.about-privacy h2,
.about-cta h2 {
  margin: 14px 0 0;
  color: #07142f;
  font-weight: 850;
  letter-spacing: 0;
}

.about-hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
}

.about-hero-copy p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #29405f;
  font-size: 20px;
  line-height: 1.7;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.about-btn:hover {
  transform: translateY(-1px);
}

.about-btn-primary {
  color: #fff;
  border: 1px solid #044a9c;
  background: linear-gradient(135deg, #0b63ce, #004a97);
  box-shadow: 0 18px 34px rgba(0, 92, 185, 0.2);
}

.about-btn-primary:hover {
  color: #fff;
  box-shadow: 0 22px 40px rgba(0, 92, 185, 0.28);
}

.about-btn-secondary {
  color: #07336d;
  border: 1px solid rgba(0, 92, 185, 0.18);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 28px rgba(7, 20, 47, 0.08);
}

.about-signal-panel {
  overflow: hidden;
  border: 1px solid rgba(10, 53, 105, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 70px rgba(7, 20, 47, 0.14);
  backdrop-filter: blur(16px);
}

.about-panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  color: #fff;
  background: #0d315f;
}

.about-panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.about-panel-top strong {
  margin-left: auto;
  font-size: 14px;
}

.about-panel-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.about-trust-score,
.about-mini-card,
.about-card,
.about-pillar {
  border: 1px solid rgba(10, 53, 105, 0.14);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(7, 20, 47, 0.07);
}

.about-trust-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
}

.about-trust-score span {
  color: #6d7f99;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.about-trust-score strong {
  color: #008f5d;
  font-size: 24px;
}

.about-mini-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
}

.about-mini-card i,
.about-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  color: #0065c9;
  background: #eef6ff;
}

.about-mini-card strong,
.about-pillar h3 {
  display: block;
  color: #07142f;
  font-weight: 850;
}

.about-mini-card small {
  display: block;
  margin-top: 3px;
  color: #6b7d96;
}

.about-card {
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
}

.about-story h2,
.about-privacy h2,
.about-cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.about-story p,
.about-privacy p,
.about-cta p,
.about-pillar p {
  color: #29405f;
  line-height: 1.75;
}

.about-story p,
.about-privacy p {
  max-width: 940px;
  margin: 22px 0 0;
  font-size: 18px;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0;
}

.about-pillar {
  border-radius: 24px;
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-pillar:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(7, 20, 47, 0.11);
}

.about-pillar h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.about-pillar p {
  margin: 0;
}

.about-privacy {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
  margin-top: 22px;
}

.about-privacy p {
  margin-top: 0;
}

.about-cta {
  margin-top: 28px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 12%, rgba(0, 207, 143, 0.22), transparent 34%),
    linear-gradient(135deg, #061c38 0%, #0b4c96 100%);
  box-shadow: 0 28px 70px rgba(7, 20, 47, 0.2);
}

.about-cta span {
  color: #63f2bd;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-cta h2,
.about-cta p {
  color: #fff;
}

.about-cta p {
  max-width: 760px;
  margin: 18px 0 28px;
  opacity: 0.88;
}

@media (max-width: 980px) {
  .about-hero,
  .about-privacy {
    grid-template-columns: 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-signal-panel {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .about-shell {
    width: min(100% - 28px, 560px);
    padding: 42px 0 64px;
  }

  .about-hero {
    gap: 30px;
    padding-top: 18px;
  }

  .about-hero h1 {
    font-size: clamp(38px, 13vw, 52px);
  }

  .about-hero-copy p,
  .about-story p,
  .about-privacy p {
    font-size: 16px;
  }

  .about-actions,
  .about-btn {
    width: 100%;
  }

  .about-signal-panel {
    border-radius: 22px;
  }

  .about-panel-body,
  .about-card,
  .about-pillar,
  .about-cta {
    padding: 22px;
  }
}
