/* ==========================================================================
   ANALYTICAL DOSSIER & INSIDER AUDIT DESIGN SYSTEM
   Theme: Advisory Intelligence (#FAFAFA, #1F2937, #0F2027, #10B981, #D4AF37)
   ========================================================================== */

:root {
  --bg-page: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-surface-alt: #F3F4F6;
  --bg-header: #0F2027;
  --bg-header-subtle: #182A32;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --text-light: #F9FAFB;
  --text-slate: #0F2027;
  --accent-green: #10B981;
  --accent-green-bg: #ECFDF5;
  --accent-green-border: #A7F3D0;
  --accent-gold: #D4AF37;
  --accent-gold-light: #FDF6E2;
  --accent-gold-border: #E8D390;
  --accent-alert: #DC2626;
  --accent-alert-bg: #FEF2F2;
  --accent-alert-border: #FECACA;
  --border-color: #E5E7EB;
  --border-dark: rgba(255, 255, 255, 0.12);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 24px -4px rgba(15, 32, 39, 0.12), 0 4px 8px -2px rgba(15, 32, 39, 0.06);
  --shadow-sticky: 0 -4px 20px rgba(15, 32, 39, 0.1);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-page);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 84px; /* Space for persistent sticky bottom bar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-slate);
  letter-spacing: -0.02em;
  font-weight: 700;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP INSTITUTIONAL NAVIGATION
   ========================================================================== */
.audit-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 32, 39, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: 68px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-back-hub {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #D1D5DB;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
  min-height: 44px;
}

.nav-back-hub:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.nav-logo-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.badge-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

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

/* ==========================================================================
   BUTTONS (Strict 44px+ mobile touch targets)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  min-height: 44px;
  min-width: 44px;
  text-align: center;
  white-space: nowrap;
}

.btn-accent {
  background-color: var(--accent-green);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.btn-accent:hover {
  background-color: #059669;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: #0F2027;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  background-color: #C5A028;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-dark {
  background-color: var(--bg-header);
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: #1A343F;
}

/* ==========================================================================
   1. THE HERO HEADER (THE DOSSIER)
   ========================================================================== */
.hero-dossier {
  position: relative;
  min-height: 520px;
  padding: 4.5rem 1.5rem 5rem;
  background-color: var(--bg-header);
  background-image: linear-gradient(
      135deg,
      rgba(15, 32, 39, 0.94) 0%,
      rgba(15, 32, 39, 0.84) 60%,
      rgba(15, 32, 39, 0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.hero-dossier-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.dossier-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.dossier-h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  max-width: 860px;
}

@media (min-width: 768px) {
  .dossier-h1 {
    font-size: 3.35rem;
  }
}

/* One-Sentence Verdict Highlight Box */
.verdict-box {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--accent-gold);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  max-width: 800px;
  margin-bottom: 2rem;
}

.verdict-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.verdict-text {
  font-size: 1.08rem;
  color: #F3F4F6;
  font-weight: 500;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================================
   2. THE HARD NUMBERS GRID
   ========================================================================== */
.hard-numbers-section {
  position: relative;
  z-index: 10;
  margin-top: -2.5rem;
  padding-bottom: 3.5rem;
}

.hard-numbers-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hard-numbers-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-column {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .metric-column {
    border-bottom: none;
  }
  .metric-column:last-child {
    border-right: none;
  }
}

.metric-column:nth-child(2) {
  border-right: none;
}

@media (min-width: 768px) {
  .metric-column:nth-child(2) {
    border-right: 1px solid var(--border-color);
  }
}

.metric-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-slate);
  line-height: 1.15;
}

.metric-sub {
  font-size: 0.75rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* ==========================================================================
   3. THE UNFILTERED REVIEW SECTION (SPLIT LAYOUT)
   ========================================================================== */
.review-section {
  padding: 2rem 0 4.5rem;
}

.section-intro {
  margin-bottom: 2.25rem;
}

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-green);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-slate);
}

.split-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .split-review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Left Card: The Good */
.card-works {
  border: 1px solid var(--accent-green-border);
  border-top: 4px solid var(--accent-green);
}

/* Right Card: The Trade-offs */
.card-tradeoffs {
  border: 1px solid var(--accent-alert-border);
  border-top: 4px solid var(--accent-alert);
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.card-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.badge-works {
  background-color: var(--accent-green-bg);
  color: var(--accent-green);
  border: 1px solid var(--accent-green-border);
}

.badge-tradeoffs {
  background-color: var(--accent-alert-bg);
  color: var(--accent-alert);
  border: 1px solid var(--accent-alert-border);
}

.card-title {
  font-size: 1.35rem;
  font-weight: 800;
}

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

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: var(--text-main);
  line-height: 1.55;
}

.point-icon {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.point-icon-green {
  color: var(--accent-green);
}

.point-icon-alert {
  color: var(--accent-alert);
}

.point-text strong {
  color: var(--text-slate);
  font-weight: 700;
}

/* ==========================================================================
   4. THE FLOORPLAN & COMMUTE REALITY
   ========================================================================== */
.reality-section {
  padding: 3.5rem 0 5rem;
  background-color: #F8F9FA;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .reality-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* 16:9 Video Placeholder Block */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  background-color: var(--bg-header);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.video-poster-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(15, 32, 39, 0.85) 0%, rgba(15, 32, 39, 0.3) 100%),
    url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.video-poster-container:hover {
  transform: scale(1.02);
}

.play-pulse-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--accent-green);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 0 10px rgba(16, 185, 129, 0.25);
  margin-bottom: 1rem;
  transition: var(--transition);
}

.video-poster-container:hover .play-pulse-btn {
  background: #059669;
  transform: scale(1.1);
  box-shadow: 0 0 0 16px rgba(16, 185, 129, 0.35);
}

.video-overlay-text {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.video-sub-text {
  color: #D1D5DB;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.reality-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.reality-h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-slate);
}

.reality-lead {
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.6;
}

.reality-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.reality-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.reality-item-icon {
  color: var(--accent-gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.reality-item strong {
  color: var(--text-slate);
}

/* ==========================================================================
   5. STICKY BOTTOM BAR (MOBILE & DESKTOP)
   ========================================================================== */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--bg-header);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-sticky);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sticky-bar-info {
  display: flex;
  flex-direction: column;
}

.sticky-project-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.sticky-pricing {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.sticky-action-btn {
  background-color: var(--accent-green);
  color: #FFFFFF;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
  white-space: nowrap;
}

.sticky-action-btn:hover {
  background-color: #059669;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .sticky-project-name {
    font-size: 0.95rem;
  }
  .sticky-pricing {
    font-size: 0.8rem;
  }
  .sticky-action-btn {
    font-size: 0.88rem;
    padding: 0.65rem 1rem;
  }
}

/* ==========================================================================
   FOOTER (ADVISORY AUTHORITY & DISCLAIMER)
   ========================================================================== */
.audit-footer {
  background-color: #080E11;
  color: #9CA3AF;
  padding: 3.5rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
}

.audit-footer a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.footer-disclaimer {
  max-width: 820px;
  margin: 1.25rem auto;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #6B7280;
}

/* ==========================================================================
   LEAD CAPTURE MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 32, 39, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

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

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--bg-surface-alt);
  color: var(--text-slate);
}

.modal-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-green);
  margin-bottom: 0.35rem;
}

.modal-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-slate);
  margin-bottom: 0.4rem;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-slate);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 44px;
  padding: 0 0.85rem;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Horizon selection chips */
.horizon-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.horizon-chip {
  position: relative;
  cursor: pointer;
}

.horizon-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.horizon-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-surface-alt);
  color: var(--text-main);
  transition: var(--transition);
  text-align: center;
}

.horizon-chip input:checked + span {
  border-color: var(--accent-green);
  background: var(--accent-green-bg);
  color: #065F46;
  font-weight: 700;
}

.modal-submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.85rem;
  font-size: 1rem;
}

.modal-security-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* ==========================================================================
   CALL BUTTONS & NON-SLIDABLE RESPONSIVE PRICING TABLE
   ========================================================================== */

.btn-nav-call {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: #D4AF37 !important;
  color: #000000 !important;
  font-weight: 800 !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: var(--radius-sm, 6px) !important;
  font-size: 0.82rem !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: var(--transition) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

.btn-nav-call:hover {
  background: #E5C158 !important;
  color: #000000 !important;
  transform: translateY(-1px);
}

.btn-nowrap {
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
  
  .table-scroll-hint {
    display: none !important;
  }

  .config-table-container {
    overflow-x: visible !important;
    width: 100% !important;
  }

  .config-table {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: auto !important;
  }

  .config-table th,
  .config-table td {
    padding: 0.55rem 0.35rem !important;
    font-size: 0.78rem !important;
  }

  .config-table th:first-child,
  .config-table td:first-child {
    position: static !important;
    box-shadow: none !important;
    border-right: none !important;
  }

  .btn-table-costsheet {
    padding: 0.35rem 0.5rem !important;
    font-size: 0.72rem !important;
    white-space: nowrap !important;
  }
}

/* ==========================================================================
   PERSISTENT STICKY BOTTOM ACTION BAR (DESKTOP & MOBILE RESPONSIVE)
   ========================================================================== */
.sticky-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 32, 39, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.sticky-action-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-project-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sticky-brand-eyebrow {
  font-size: 0.72rem;
  color: #D4AF37;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.sticky-brand-pricing {
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
}

.sticky-eoi-badge {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.sticky-buttons-group {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sticky-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #D4AF37;
  color: #000000;
  font-weight: 800;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.sticky-btn-call:hover {
  background: #E5C158;
}

.sticky-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.5);
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
}

.sticky-btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.25);
}

.sticky-btn-costsheet {
  padding: 0.6rem 1.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .sticky-action-bar {
    padding: 0.5rem 0.65rem;
  }
  
  .sticky-project-meta {
    display: none;
  }

  .sticky-action-container {
    justify-content: center;
    width: 100%;
  }

  .sticky-buttons-group {
    width: 100%;
    display: flex;
    gap: 0.4rem;
  }

  .sticky-btn-call,
  .sticky-btn-whatsapp,
  .sticky-btn-costsheet {
    flex: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 0.35rem;
    font-size: 0.78rem;
    text-align: center;
  }
}

