/* ==========================================================================
   BizLink B2B Marketplace - Executive Design System & High-Converting Styles
   Inspired by BizScout Editorial & Modern High-End B2B SaaS
   ========================================================================== */

:root {
  /* Core Colors */
  --color-cream: #faf7f2;
  --color-cream-soft: #f4efea;
  --color-cream-deep: #ede4d8;
  --color-white: #ffffff;
  
  --color-navy: #14171c;
  --color-navy-light: #1e222a;
  --color-navy-muted: #2d323e;
  --color-slate-muted: #5a6474;
  --color-border-subtle: rgba(20, 23, 28, 0.08);
  --color-border-medium: rgba(20, 23, 28, 0.15);

  /* Gold & Accents */
  --color-gold: #ffd08b;
  --color-gold-hover: #f7c272;
  --color-gold-soft: #dca44e;
  --color-gold-dark: #b88636;
  --color-gold-bg: rgba(255, 208, 139, 0.16);

  /* Status Colors */
  --color-success: #059669;
  --color-success-bg: #ecfdf5;
  --color-success-border: #a7f3d0;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Lora', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Elevation */
  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 4px 20px -2px rgba(20, 23, 28, 0.06);
  --shadow-hover: 0 14px 34px -4px rgba(20, 23, 28, 0.12);
  --shadow-modal: 0 24px 50px -12px rgba(20, 23, 28, 0.25);
}

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

html {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Typography Utilities */
.font-serif { font-family: var(--font-serif); }
.font-mono { font-family: var(--font-mono); }
.italic { font-style: italic; }
.font-bold { font-weight: 700; }
.text-gold { color: var(--color-gold-dark); }
.text-success { color: var(--color-success); }
.text-muted { color: var(--color-slate-muted); }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }

/* ==================== VECTOR SVG ICONS ==================== */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.svg-icon-sm {
  width: 0.95em;
  height: 0.95em;
}

.svg-icon-md {
  width: 1.35em;
  height: 1.35em;
}

.svg-icon-lg {
  width: 1.65em;
  height: 1.65em;
}

.svg-icon-xl {
  width: 2.25rem;
  height: 2.25rem;
}

.svg-icon-gold {
  stroke: var(--color-gold);
}

.svg-icon-success {
  stroke: var(--color-success);
}

.svg-icon-danger {
  stroke: #ef4444;
}

.svg-icon-muted {
  stroke: var(--color-slate-muted);
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.45rem;
  border-radius: 9999px; /* Pill style */
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-navy);
  box-shadow: 0 4px 18px rgba(255, 208, 139, 0.45), 0 0 12px rgba(255, 208, 139, 0.25);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 208, 139, 0.65), 0 0 20px rgba(255, 208, 139, 0.4);
}

.btn-dark {
  background-color: var(--color-navy);
  color: #ffffff;
}

.btn-dark:hover {
  background-color: var(--color-navy-light);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--color-border-medium);
  color: var(--color-navy);
}

.btn-outline:hover {
  background-color: var(--color-cream-soft);
  border-color: var(--color-navy);
}

.btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.845rem;
}

.btn-lg {
  padding: 0.95rem 2.15rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.arrow-icon {
  font-size: 1.1rem;
  transition: transform 0.15s ease;
}

.btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* ==================== NAVBAR ==================== */
.biz-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-subtle);
  height: 64px;
  width: 100%;
}

.nav-container {
  width: 100%;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 1.5rem !important;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.nav-logo {
  height: 32px;
  max-height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-item {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-navy-muted);
  transition: color 0.15s ease;
}

.nav-item:hover {
  color: var(--color-gold-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* ==================== HERO SECTION ==================== */
.biz-hero {
  padding: 5.5rem 1.5rem 5rem;
  border-bottom: 1px solid var(--color-border-subtle);
  background: radial-gradient(circle at 50% -15%, rgba(255, 208, 139, 0.35) 0%, transparent 65%);
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 2rem;
  background-color: var(--color-cream-soft);
  padding: 0.4rem 1.15rem;
  border-radius: 9999px;
  border: 1px solid rgba(184, 134, 54, 0.25);
  box-shadow: var(--shadow-subtle);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-success);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.2);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.hero-main-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin-bottom: 2rem;
}

.hero-subgrid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-lead {
  font-size: 1.22rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
  font-weight: 400;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-proof-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.proof-pill {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy-muted);
}

/* ==================== TICKER ==================== */
.ticker-section {
  padding: 1.5rem;
  background-color: var(--color-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-label {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
}

.ticker-items {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ticker-pill {
  font-size: 0.845rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 6.5rem 1.5rem;
}

.bg-white { background-color: #ffffff; }
.bg-cream { background-color: var(--color-cream); }
.bg-dark { background-color: var(--color-navy); }

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.kicker {
  display: inline-block;
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--color-slate-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ==================== EDITORIAL 3-COLUMNS (BROKEN SYSTEM) ==================== */
.editorial-header {
  max-width: 850px;
  margin-bottom: 4rem;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.2;
}

.editorial-title-muted {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(20, 23, 28, 0.55);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
  margin-bottom: 4rem;
}

.editorial-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 18px;
  padding: 2.75rem 2.25rem;
  transition: all 0.25s ease;
}

.editorial-card:hover {
  border-color: rgba(201, 162, 39, 0.4);
  box-shadow: var(--shadow-card);
  transform: translateY(-3px);
}

.card-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(20, 23, 28, 0.18);
  margin-bottom: 1.25rem;
}

.card-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
}

.editorial-bottom-quote {
  border-top: 1px solid var(--color-border-medium);
  padding-top: 2.75rem;
  max-width: 850px;
}

.quote-txt {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-navy);
  line-height: 1.35;
}

.quote-sub {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-top: 0.5rem;
}

/* ==================== STEPS (01, 02, 03) ==================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.big-step-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 20px;
  padding: 3.25rem 2.25rem;
  position: relative;
  transition: all 0.25s ease;
}

.big-step-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.step-giant-num {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(20, 23, 28, 0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.big-step-card:hover .step-giant-num {
  color: var(--color-gold-dark);
}

.step-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.badge-free { background-color: var(--color-success-bg); color: var(--color-success); }
.badge-credit { background-color: var(--color-gold-bg); color: var(--color-gold-dark); }
.badge-success { background-color: var(--color-success-bg); color: var(--color-success); }

.step-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
}

.mechanics-panel {
  background-color: #ffffff;
  border: 1px solid var(--color-border-medium);
  border-radius: 18px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: var(--shadow-subtle);
}

.mech-col {
  flex: 1;
}

.mech-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.mech-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mech-col p {
  font-size: 0.925rem;
  color: var(--color-slate-muted);
  line-height: 1.6;
}

.mech-divider {
  width: 1px;
  height: 90px;
  background-color: var(--color-border-subtle);
}

/* ==================== ROLE SWITCHER ==================== */
.role-tab-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.role-tab-bar {
  display: inline-flex;
  background-color: var(--color-cream-soft);
  padding: 0.35rem;
  border-radius: 9999px;
  border: 1px solid var(--color-border-subtle);
}

.role-tab {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--color-slate-muted);
  transition: all 0.2s ease;
}

.role-tab.active {
  background-color: var(--color-navy);
  color: #ffffff;
  box-shadow: var(--shadow-subtle);
}

.role-view-content {
  display: none;
}

.role-view-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.role-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.role-view-heading {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.role-view-lead {
  font-size: 1.075rem;
  color: var(--color-slate-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.role-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.role-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-navy-muted);
}

.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-gold-dark);
}

.role-preview-card {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border-medium);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.p-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--color-gold-bg);
  color: var(--color-gold-dark);
}

.p-date {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
}

.p-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.p-company {
  font-size: 0.9rem;
  color: var(--color-slate-muted);
  margin-bottom: 1.5rem;
}

.p-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.p-stat-box {
  background-color: #ffffff;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  text-align: center;
}

.ps-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-slate-muted);
  margin-bottom: 0.25rem;
}

.ps-val {
  font-size: 1.05rem;
  font-weight: 700;
}

.p-tag-strip {
  display: flex;
  gap: 0.5rem;
}

.p-tag-strip span {
  font-size: 0.75rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
}

.p-footer-note {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 0.75rem;
}

.unlocked-details-box {
  background: #ffffff;
  border: 1px solid var(--color-success-border);
  padding: 1.15rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ==================== CATEGORIES SHOWCASE GRID & GOLD GLOW ==================== */
.categories-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.cat-card {
  background-color: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 18px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cat-card:hover {
  border-color: rgba(255, 208, 139, 0.7);
  box-shadow: 0 18px 40px -10px rgba(20, 23, 28, 0.08), 0 0 28px rgba(255, 208, 139, 0.3);
  transform: translateY(-4px);
}

.cat-card:hover::before {
  opacity: 1;
}

.cat-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 208, 139, 0.28) 0%, rgba(255, 183, 77, 0.1) 100%);
  border: 1px solid rgba(255, 208, 139, 0.55);
  box-shadow: 0 4px 20px rgba(255, 208, 139, 0.3), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  margin-bottom: 1.35rem;
  color: var(--color-gold-dark);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.cat-icon-badge svg {
  stroke: #b88636;
  transition: all 0.3s ease;
}

.cat-card:hover .cat-icon-badge {
  transform: scale(1.1) translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 208, 139, 0.45) 0%, rgba(255, 183, 77, 0.2) 100%);
  border-color: rgba(255, 208, 139, 0.95);
  box-shadow: 0 8px 30px rgba(255, 208, 139, 0.65), 0 0 20px rgba(255, 208, 139, 0.5), inset 0 1px 2px #ffffff;
}

.cat-card:hover .cat-icon-badge svg {
  stroke: #92651d;
  filter: drop-shadow(0 2px 8px rgba(255, 208, 139, 0.7));
}

.cat-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  transition: color 0.2s ease;
}

.cat-card:hover .cat-title {
  color: #14171c;
}

.cat-desc {
  font-size: 0.925rem;
  color: var(--color-slate-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.cat-meta-strip {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.cat-tag {
  font-size: 0.75rem;
  background-color: var(--color-cream);
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  color: var(--color-navy-muted);
  font-weight: 500;
  border: 1px solid var(--color-border-subtle);
  transition: all 0.2s ease;
}

.cat-card:hover .cat-tag {
  background-color: #faf7f2;
  border-color: rgba(255, 208, 139, 0.4);
}

.cat-footer-lock {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ecosystem-callout {
  background-color: #ffffff;
  border: 1px solid rgba(255, 208, 139, 0.4);
  border-radius: 18px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 10px 30px rgba(20, 23, 28, 0.04), 0 0 25px rgba(255, 208, 139, 0.15);
  position: relative;
  z-index: 1;
}

.callout-txt h4 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.callout-txt p {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
}

/* Ambient Glow Accents */
.ambient-glow-wrap {
  position: relative;
  overflow: hidden;
}

.ambient-gold-glow {
  position: absolute;
  width: 550px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 208, 139, 0.18) 0%, rgba(255, 208, 139, 0) 70%);
  pointer-events: none;
  filter: blur(45px);
  z-index: 0;
}

.glow-top-center {
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.glow-right {
  top: 10%;
  right: -80px;
}

.glow-left {
  bottom: 10%;
  left: -80px;
}


/* ==================== FAQ ACCORDION ==================== */
.faq-accordion-wrap {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--color-cream);
  border: 1px solid var(--color-border-subtle);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--color-border-medium);
}

.faq-item.active {
  background-color: #ffffff;
  border-color: rgba(184, 134, 54, 0.4);
  box-shadow: var(--shadow-subtle);
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-header h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.faq-chevron {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-gold-dark);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
}

.faq-item.active .faq-body {
  max-height: 250px;
  padding-top: 1rem;
}

.faq-body p {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
}

/* ==================== EARLY ACCESS / FORM ==================== */
.early-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.bg-dark {
  background-color: var(--color-navy);
  color: #ffffff;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: #ffffff;
}

.text-white {
  color: #ffffff !important;
}

.early-spot-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold);
  background-color: rgba(255, 208, 139, 0.12);
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 208, 139, 0.35);
  margin-bottom: 1.5rem;
}

.early-headline {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff !important;
}

.early-subhead {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.92);
}

.perk-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.p-check {
  color: var(--color-gold);
  font-weight: 700;
}

/* Info Modal for In-App Rules & Privacy */
.info-modal-window {
  background-color: #ffffff;
  border-radius: 20px;
  width: 100%;
  max-width: 540px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-modal);
  border: 1px solid var(--color-border-subtle);
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-modal-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.info-modal-title {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--color-navy);
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-modal-body {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.info-modal-body strong {
  color: var(--color-navy);
}

.formbricks-embed-wrapper {
  position: relative;
  height: 75dvh;
  min-height: 580px;
  max-height: 720px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-modal);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.formbricks-frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .formbricks-embed-wrapper {
    height: 80dvh;
    min-height: 540px;
    border-radius: 16px;
  }
}

.lead-capture-form {
  background-color: #ffffff;
  padding: 3.25rem 2.75rem;
  border-radius: 22px;
  color: var(--color-navy);
  box-shadow: var(--shadow-modal);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.field-wrap {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.field-wrap label {
  font-size: 0.845rem;
  font-weight: 600;
  color: var(--color-navy);
}

.field-wrap input, .field-wrap select, .field-wrap textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-border-medium);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field-wrap input:focus, .field-wrap select:focus, .field-wrap textarea:focus {
  border-color: var(--color-gold-dark);
  box-shadow: 0 0 0 3px rgba(255, 208, 139, 0.25);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-fineprint {
  font-size: 0.775rem;
  color: var(--color-slate-muted);
  text-align: center;
  margin-top: 1.15rem;
}

/* ==================== MODALS ==================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 23, 28, 0.72);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

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

.modal-window {
  background-color: #ffffff;
  border-radius: 22px;
  width: 100%;
  max-width: 580px;
  padding: 2.75rem 2.25rem;
  position: relative;
  box-shadow: var(--shadow-modal);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalScaleIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalScaleIn {
  from { opacity: 0; transform: scale(0.96) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: var(--color-slate-muted);
  cursor: pointer;
  transition: color 0.15s ease;
}

.modal-close:hover {
  color: var(--color-navy);
}

.modal-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.modal-heading {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.modal-meta {
  font-size: 0.875rem;
  color: var(--color-slate-muted);
  margin-bottom: 1.75rem;
}

.modal-actions-bar {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.75rem;
}

.pill-selector {
  display: flex;
  gap: 0.75rem;
}

.pill-option {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid var(--color-border-medium);
  border-radius: 9999px;
  text-align: center;
  font-size: 0.845rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.pill-option.active {
  background-color: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}

/* Toast */
.toast-stack {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background-color: var(--color-navy);
  color: #ffffff;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-modal);
  border-left: 4px solid var(--color-gold);
  animation: toastPop 0.25s ease-out;
}

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

/* ==================== FOOTER ==================== */
.biz-footer {
  background-color: #101317;
  border-top: 1px solid rgba(255, 208, 139, 0.2);
  padding: 5rem 1.5rem 2.5rem;
  color: #f8fafc;
}

.footer-upper {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.footer-about {
  max-width: 360px;
}

.footer-bio {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-nav-cols {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.f-col h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.f-col a, .f-col p {
  display: block;
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
  transition: color 0.15s ease;
  text-decoration: none;
}

.f-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
}

/* ==================== EXECUTIVE SALES & LUXURY VIBE EXTENSIONS (VERZIJA 2) ==================== */

/* ==================== 3-WAY A/B/C VERSION SWITCHER BAR ==================== */
.version-switcher-bar {
  background: #101317;
  color: #ffffff;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255, 208, 139, 0.2);
  position: sticky;
  top: 0;
  z-index: 2000;
  flex-wrap: wrap;
}

.version-nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.v-tab-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.2s ease;
  text-decoration: none;
}

.v-tab-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 208, 139, 0.4);
}

.v-tab-link.active {
  background: var(--color-gold);
  color: #14171c;
  border-color: var(--color-gold);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 208, 139, 0.3);
}

/* ==================== TENDER FEED & DIRECT LEAD STREAM (VERZIJA C) ==================== */
.tender-feed-container {
  max-width: 1140px;
  margin: 0 auto;
}

.tender-filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

.tender-filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: #ffffff;
  border: 1px solid var(--color-border-medium);
  color: var(--color-navy);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tender-filter-btn:hover {
  border-color: var(--color-gold-dark);
}

.tender-filter-btn.active {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}

.tender-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tender-feed-card {
  background: #ffffff;
  border: 1px solid var(--color-border-subtle);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-subtle);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.tender-feed-card:hover {
  border-color: rgba(255, 208, 139, 0.6);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.t-header-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

.t-badge-cat {
  background: #f4efea;
  color: #14171c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-family: var(--font-mono);
}

.t-badge-status {
  background: #ecfdf5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.t-time-left {
  font-size: 0.8125rem;
  color: var(--color-slate-muted);
}

.t-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.t-card-desc {
  font-size: 0.9375rem;
  color: var(--color-slate-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.t-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-navy);
  flex-wrap: wrap;
}

.t-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.t-budget-highlight {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #059669;
  font-size: 1rem;
}

.t-card-right-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  min-width: 220px;
}

.blurred-contact-badge {
  background: #fdfaf8;
  border: 1px dashed #fed7aa;
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  text-align: right;
  color: var(--color-slate-muted);
}

.blurred-contact-badge .blur-text {
  filter: blur(4px);
  user-select: none;
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .tender-feed-card { grid-template-columns: 1fr; gap: 1.25rem; }
  .t-card-right-action { align-items: stretch; text-align: left; }
}

/* Cinematic Executive Hero */
.executive-hero {
  position: relative;
  background-color: #14171c;
  background-image: linear-gradient(180deg, rgba(20, 23, 28, 0.82) 0%, rgba(20, 23, 28, 0.92) 100%), url('assets/images/penthouse_executive_desk.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #ffffff;
  padding: 7rem 1.5rem 6rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 208, 139, 0.15);
}

.executive-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 208, 139, 0.12) 0%, rgba(20, 23, 28, 0) 70%);
  pointer-events: none;
}

.executive-hero-container {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vip-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 208, 139, 0.12);
  border: 1px solid rgba(255, 208, 139, 0.35);
  color: var(--color-gold);
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.executive-main-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  color: #ffffff;
}

.executive-main-title .gold-accent {
  color: var(--color-gold);
  font-style: italic;
}

.executive-hero-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.executive-hero-lead strong {
  color: #ffffff;
  font-weight: 600;
}

.executive-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-gold-vip {
  background: linear-gradient(135deg, #ffd08b 0%, #f7c272 100%);
  color: #14171c;
  font-weight: 700;
  font-size: 1.0625rem;
  padding: 1rem 2.25rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px -4px rgba(255, 208, 139, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-gold-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(255, 208, 139, 0.5);
  background: linear-gradient(135deg, #f7c272 0%, #ffd08b 100%);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  font-size: 1.0625rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.executive-proof-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 2rem;
}

.ex-proof-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.ex-proof-item span.icon {
  color: var(--color-gold);
}

/* Ambience Gallery Cards (The Executive Routine) */
.ambience-section {
  background-color: var(--color-navy);
  padding: 4rem 1.5rem;
  color: #ffffff;
}

.ambience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ambience-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 208, 139, 0.15);
}

.ambience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ambience-card:hover img {
  transform: scale(1.05);
}

.ambience-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 23, 28, 0.2) 0%, rgba(20, 23, 28, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.ambience-overlay .tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.ambience-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.ambience-overlay p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Contrast Section: The Rat Race vs The Executive State */
.contrast-section {
  background-color: #ffffff;
  padding: 6rem 1.5rem;
}

.contrast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1140px;
  margin: 3rem auto 0;
}

.contrast-card {
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}

.contrast-card.chaos {
  background: #fdfaf8;
  border: 1px solid #fed7aa;
}

.contrast-card.mastery {
  background: var(--color-navy);
  color: #ffffff;
  border: 1px solid rgba(255, 208, 139, 0.3);
  box-shadow: 0 16px 40px -8px rgba(20, 23, 28, 0.4);
}

.contrast-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contrast-card.chaos .contrast-card-badge {
  background: #fee2e2;
  color: #b91c1c;
}

.contrast-card.mastery .contrast-card-badge {
  background: rgba(255, 208, 139, 0.2);
  color: var(--color-gold);
  border: 1px solid rgba(255, 208, 139, 0.4);
}

.contrast-card h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contrast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contrast-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.contrast-list li .icon {
  font-size: 1.1rem;
  line-height: 1.3;
}

.contrast-card.chaos .contrast-list li {
  color: var(--color-slate-muted);
}

.contrast-card.mastery .contrast-list li {
  color: rgba(255, 255, 255, 0.85);
}

.contrast-card.mastery .contrast-list li strong {
  color: #ffffff;
}

/* Interactive Calculator */
.calculator-box {
  background: linear-gradient(135deg, #1e222a 0%, #14171c 100%);
  border: 1px solid rgba(255, 208, 139, 0.25);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  max-width: 1040px;
  margin: 4rem auto 0;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-inputs label {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.calc-range-wrapper {
  margin-bottom: 2rem;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #2d323e;
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--color-gold);
}

.calc-slider-val {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-top: 0.4rem;
}

.calc-results-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 208, 139, 0.2);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.calc-saved-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin: 0.75rem 0;
}

.calc-saved-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.6);
}

.calc-hours-saved {
  font-size: 0.875rem;
  color: #34d399;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Formbricks VIP Golden Frame */
.vip-formbricks-container {
  background: #14171c;
  border: 1px solid rgba(255, 208, 139, 0.35);
  border-radius: 20px;
  padding: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 208, 139, 0.1);
  position: relative;
}

/* Responsive Extensions */
@media (max-width: 900px) {
  .executive-main-title { font-size: 2.5rem; }
  .ambience-grid { grid-template-columns: 1fr; }
  .contrast-grid { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .calculator-box { padding: 2rem 1.5rem; }
}

/* ==================== B2B IMENIK KOMPANIJA STYLES ==================== */
.directory-section {
  padding: 5rem 1.5rem;
  background-color: var(--color-cream);
  border-top: 1px solid rgba(20, 23, 28, 0.08);
  border-bottom: 1px solid rgba(20, 23, 28, 0.08);
}

.directory-header-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem auto;
}

.directory-header-box .kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.5rem;
}

.directory-header-box h2 {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.directory-header-box p {
  font-size: 1rem;
  color: var(--color-slate-muted);
  line-height: 1.6;
}

.directory-control-panel {
  background: #ffffff;
  border: 1px solid rgba(20, 23, 28, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(20, 23, 28, 0.04);
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.dir-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.dir-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 320px;
  min-width: 240px;
}

.dir-search-wrap input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.65rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--color-navy);
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.dir-search-wrap input:focus {
  border-color: var(--color-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 163, 89, 0.25);
}

.dir-search-icon {
  position: absolute;
  left: 0.95rem;
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
}

.dir-city-select {
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--color-navy);
  outline: none;
  cursor: pointer;
  flex: 0 0 auto;
  min-width: 160px;
  transition: all 0.2s ease;
}

.dir-city-select:focus {
  border-color: var(--color-gold);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(212, 163, 89, 0.25);
}

.dir-view-toggles {
  display: flex;
  background: #f1f5f9;
  border-radius: 12px;
  padding: 0.25rem;
  gap: 0.25rem;
  flex: 0 0 auto;
  margin-left: auto;
}

.view-btn {
  background: transparent;
  border: none;
  padding: 0.55rem 0.95rem;
  border-radius: 9px;
  cursor: pointer;
  color: #64748b;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
}

.view-btn.active {
  background: #ffffff;
  color: var(--color-navy);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.dir-chips-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scrollbar-width: thin;
}

.chip-label {
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 600;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.chip-filter {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-sans);
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.chip-filter:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.chip-filter.active {
  background: rgba(212, 163, 89, 0.18);
  border-color: var(--color-gold);
  color: var(--color-gold-dark);
  font-weight: 700;
}

.dir-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.8125rem;
  color: #64748b;
}

/* Directory Grid */
.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comp-card {
  background: #ffffff;
  border: 1px solid rgba(20, 23, 28, 0.08);
  border-radius: 18px;
  padding: 1.65rem;
  box-shadow: 0 2px 10px rgba(20, 23, 28, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.comp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 163, 89, 0.6);
  box-shadow: 0 12px 30px rgba(20, 23, 28, 0.08), 0 0 20px rgba(212, 163, 89, 0.15);
}

.comp-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.pib-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.725rem;
  font-family: var(--font-mono);
  font-weight: 700;
}

.rating-box {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.comp-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.comp-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 0.85rem;
}

.legal-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.legal-badge.doo { background: #e0f2fe; color: #0369a1; }
.legal-badge.pr { background: #fef3c7; color: #92400e; }
.legal-badge.ad { background: #f3e8ff; color: #6b21a8; }

.comp-desc {
  font-size: 0.845rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.comp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.tag-pill {
  font-size: 0.725rem;
  background: #f1f5f9;
  color: #475569;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
}

.comp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.ind-pill {
  font-size: 0.725rem;
  font-weight: 600;
  color: #0369a1;
  background: #f0f9ff;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
}

.view-link {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-gold-dark);
}

/* Directory Table */
.table-responsive {
  background: #ffffff;
  border: 1px solid rgba(20, 23, 28, 0.08);
  border-radius: 18px;
  overflow-x: auto;
  box-shadow: 0 2px 10px rgba(20, 23, 28, 0.03);
  max-width: 1200px;
  margin: 0 auto;
}

.directory-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.845rem;
}

.directory-table th {
  background: #f8fafc;
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}

.directory-table td {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.directory-table tr:hover {
  background: #fafaf9;
}

.t-comp-name {
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.9375rem;
  cursor: pointer;
}

.t-comp-name:hover {
  color: var(--color-gold-dark);
}

.directory-empty-state {
  text-align: center;
  padding: 4rem 2rem;
  background: #ffffff;
  border-radius: 18px;
  border: 1px dashed #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.directory-empty-state .empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.directory-empty-state h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.directory-empty-state p {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.25rem;
}

/* Company Modal Details */
.company-modal-window {
  background: #ffffff;
  width: 92%;
  max-width: 680px;
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 163, 89, 0.4);
}

.comp-modal-header {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.comp-modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-navy);
  margin-top: 0.5rem;
}

.comp-modal-sub {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.35rem;
}

.modal-section-box {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.modal-section-box h5 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.contact-masked-box {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-navy);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.badge-lock {
  font-size: 0.6875rem;
  background: #fef2f2;
  color: #b91c1c;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.comp-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
  .directory-header-box h2 { font-size: 1.85rem; }
  .dir-search-row { flex-direction: column; align-items: stretch; }
  .dir-view-toggles { margin-left: 0; justify-content: center; }
  .company-modal-window { padding: 1.5rem; }
  .comp-modal-title { font-size: 1.35rem; }
}



