@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #E8EAED;
  --neon: #B8FF22;
  --black: #111111;
  --card: #FFFFFF;
  --muted: #888888;
  --radius: 36px;
  --radius-sm: 16px;
  --shadow: 0 8px 32px rgba(0,0,0,0.07);
  --font: 'Urbanist', sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; font-family:var(--font); }

html, body { height:100%; overflow:hidden; background:var(--bg); color:var(--black); }

/* ══ LOGIN ══ */
#login-overlay {
  position:fixed; inset:0; background:#0a0a0a;
  display:flex; justify-content:center; align-items:center; z-index:9999;
  transition:opacity .3s;
}
#login-overlay.hidden { opacity:0; pointer-events:none; }
.login-box {
  background:#141414; border:1px solid #2a2a2a; border-radius:var(--radius);
  padding:48px; width:380px; text-align:center;
}
.login-box h1 { color:#fff; font-size:22px; font-weight:800; }

/* ══ APP SHELL ══ */
.app-container {
  display:flex; flex-direction:column; height:100vh;
  padding:20px 24px 20px; gap:20px; transition:filter .3s;
}
.app-container.locked { filter:blur(24px); pointer-events:none; }

/* ══ TOP NAV ══ */
.top-nav {
  display:flex; justify-content:space-between; align-items:center;
  background:var(--black); border-radius:100px;
  padding:8px 8px 8px 20px;
  box-shadow:0 12px 40px rgba(0,0,0,0.18);
  flex-shrink:0;
}
.nav-left { display:flex; align-items:center; gap:8px; }
.nav-brand {
  display:flex; align-items:center; gap:10px;
  color:#fff; font-weight:900; font-size:16px; letter-spacing:-0.5px;
  padding-right:16px; border-right:1px solid #333;
  margin-right:8px;
}
.nav-links { display:flex; gap:4px; }
.nav-link {
  padding:12px 24px; border-radius:100px;
  color:#666; font-weight:700; font-size:14px;
  cursor:pointer; transition:all .2s; text-decoration:none; user-select:none;
}
.nav-link:hover { color:#fff; background:rgba(255,255,255,0.08); }
.nav-link.active { background:var(--neon); color:var(--black); }

.nav-right { display:flex; align-items:center; gap:10px; }
.search-btn {
  width:48px; height:48px; background:rgba(255,255,255,0.08); border-radius:50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  color:#888; transition:.2s;
}
.search-btn:hover { background:rgba(255,255,255,0.15); color:#fff; }
.date-badge {
  background:var(--neon); color:var(--black); font-weight:800; font-size:13px;
  padding:10px 20px; border-radius:100px; cursor:pointer; user-select:none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}
.date-badge:hover {
  transform: scale(1.05);
  filter: brightness(0.95);
}
.date-badge:active {
  transform: scale(0.98);
}

/* ══ CUSTOM PREMIUM CALENDAR POPOVER ══ */
.calendar-popover-card {
  display: none;
  position: absolute;
  top: 54px;
  right: 0;
  z-index: 1010;
  background: #09090b !important; /* Premium Slate/Zinc dark theme background */
  border: 1px solid #27272a;
  padding: 18px;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  width: 310px;
  color: #fff;
  animation: popInCal 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes popInCal {
  from { opacity: 0; transform: translateY(-8px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cal-nav-btn {
  background: #18181b;
  border: 1px solid #27272a;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.15s ease;
}
.cal-nav-btn:hover {
  background: #27272a;
  border-color: #3f3f46;
}
.cal-day-cell {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
  color: #a1a1aa;
}
.cal-day-cell:hover:not(.inactive) {
  background: #27272a;
  color: #fff;
}
.cal-day-cell.inactive {
  color: #3f3f46;
  cursor: not-allowed;
}
.cal-day-cell.selected {
  background: var(--neon) !important;
  color: var(--black) !important;
  font-weight: 800;
  box-shadow: 0 0 12px rgba(184, 255, 34, 0.4);
}
.cal-day-cell.today {
  border: 2px solid var(--neon);
  color: var(--neon);
}
.cal-day-cell.today.selected {
  color: var(--black);
}

.avatar-pill {
  display:flex; align-items:center; gap:8px; background:rgba(255,255,255,0.08);
  padding:6px 14px 6px 6px; border-radius:100px; cursor:pointer; color:#aaa;
  font-size:13px; font-weight:700; transition:.2s;
}
.avatar-pill:hover { background:rgba(255,255,255,0.15); color:#fff; }
.avatar-pill img { width:36px; height:36px; border-radius:50%; }

/* ══ VIEWS ══ */
.views-container { flex:1; overflow:hidden; }
.view { display:none; height:100%; overflow-y:auto; animation:fadeUp .25s ease; scrollbar-width:thin; scrollbar-color:#ddd transparent; }
.view::-webkit-scrollbar { width:4px; }
.view::-webkit-scrollbar-track { background:transparent; }
.view::-webkit-scrollbar-thumb { background:#ddd; border-radius:4px; }
.view.active { display:block; }
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.view-header {
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:28px; flex-wrap:wrap; gap:12px;
}
.view-header h1 { font-size:36px; font-weight:900; letter-spacing:-1.5px; }
.stat-pills { display:flex; gap:10px; flex-wrap:wrap; }
.stat-pill {
  background:var(--card); padding:10px 20px; border-radius:100px;
  font-size:13px; font-weight:700; box-shadow:var(--shadow);
}
.stat-pill.neon { background:var(--neon); }
.stat-pill span { font-size:18px; font-weight:900; margin-right:4px; }

/* ══ DASHBOARD GRID ══ */
.dash-grid {
  display:grid; grid-template-columns:1fr 340px; gap:24px; height:calc(100% - 80px);
}
.dash-section { display:flex; flex-direction:column; gap:16px; overflow:hidden; }
.section-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:4px; }
.section-header h3 { font-size:18px; font-weight:800; }
.pebble-scroll { display:flex; gap:16px; overflow-x:auto; padding-bottom:12px; scrollbar-width:none; }
.pebble-scroll::-webkit-scrollbar { display:none; }

/* ══ DARK PANEL (Right side) ══ */
.dark-panel {
  background:var(--black); border-radius:var(--radius); padding:28px;
  color:#fff; display:flex; flex-direction:column; gap:16px;
  box-shadow:0 20px 60px rgba(0,0,0,0.2); overflow-y:auto;
}
.panel-header { display:flex; justify-content:space-between; align-items:center; }
.panel-header h3 { font-size:20px; font-weight:800; }
.icon-round {
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.1);
  border:none; cursor:pointer; color:#fff; display:flex; align-items:center; justify-content:center;
  transition:.2s;
}
.icon-round:hover { background:var(--neon); color:var(--black); }

.task-row {
  background:rgba(255,255,255,0.05); border-radius:var(--radius-sm); padding:14px 16px;
  display:flex; align-items:center; gap:12px;
}
.task-row .platform-dot { width:8px; height:8px; border-radius:50%; background:var(--neon); flex-shrink:0; }
.task-row .task-info { flex:1; min-width:0; }
.task-row .task-info strong { display:block; font-size:13px; font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.task-row .task-info span { font-size:11px; color:#666; }

/* ══ PEBBLE CARDS ══ */
.pebble-card {
  background:var(--card); border-radius:var(--radius); padding:28px;
  box-shadow:var(--shadow); transition:transform .2s; display:flex;
  flex-direction:column; gap:16px;
}
.pebble-card:hover { transform:translateY(-4px); }
.pebble-card.neon-variant { background:var(--neon); }
.pebble-card.dark-variant { background:var(--black); color:#fff; }
.pebble-card.dark-variant .pebble-sub { color:#666; }
.pebble-card.full-width { grid-column:1/-1; }

.pebble-mini {
  background:var(--card); border-radius:28px; padding:24px; min-width:240px;
  box-shadow:var(--shadow); flex-shrink:0; display:flex; flex-direction:column; gap:12px;
  transition:transform .2s;
}
.pebble-mini:hover { transform:translateY(-4px); }
.pebble-mini.neon { background:var(--neon); }
.pebble-mini img { width:48px; height:48px; border-radius:50%; }
.pebble-mini h4 { font-size:18px; font-weight:800; }
.pebble-mini .pebble-sub { font-size:13px; color:var(--muted); font-weight:600; }
.pebble-mini .tag { display:inline-flex; align-items:center; padding:6px 14px; background:#f0f2f5; border-radius:100px; font-size:12px; font-weight:700; }
.pebble-mini.neon .tag { background:rgba(0,0,0,0.12); }

/* ══ PEBBLE GRID ══ */
.pebble-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px;
}

/* ══ DATA TABLE ══ */
.data-table { width:100%; border-collapse:collapse; }
.data-table th { padding:16px 20px; text-align:left; font-size:11px; font-weight:700; letter-spacing:1px; color:var(--muted); border-bottom:1px solid #f0f2f5; }
.data-table td { padding:16px 20px; border-bottom:1px solid #f0f2f5; font-size:14px; }
.data-table tr:last-child td { border-bottom:none; }
.data-table tr:hover td { background:#fafafa; }

/* ══ TRACKER ══ */
.tracker-layout { display:grid; grid-template-columns:1fr 280px; gap:24px; }
.tracker-list-header {
  padding:20px 24px; border-bottom:1px solid #f0f2f5;
  display:flex; justify-content:space-between; align-items:center;
  font-weight:700; font-size:15px;
}
.progress-pill { background:var(--neon); padding:6px 16px; border-radius:100px; font-size:13px; font-weight:800; }
.tracker-sidebar { display:flex; flex-direction:column; gap:20px; }

.activity-item {
  display:flex; align-items:center; gap:16px; padding:18px 24px;
  border-bottom:1px solid #f5f5f5; transition:background .15s; cursor:pointer;
}
.activity-item:hover { background:#fafafa; }
.activity-item:last-child { border-bottom:none; }
.activity-check {
  width:24px; height:24px; border-radius:50%; border:2px solid #ddd;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  cursor:pointer; transition:.2s;
}
.activity-check.done { background:var(--neon); border-color:var(--neon); }
.activity-item-info { flex:1; }
.activity-item-info strong { display:block; font-size:15px; font-weight:700; }
.activity-item-info span { font-size:12px; color:var(--muted); }
.activity-category { padding:5px 12px; background:#f0f2f5; border-radius:100px; font-size:11px; font-weight:700; }
.activity-item.done-item strong { text-decoration:line-through; color:var(--muted); }

.week-bar { display:flex; flex-direction:column; gap:10px; }
.week-day { display:flex; align-items:center; gap:10px; font-size:13px; }
.week-day-label { width:30px; color:#888; font-weight:600; }
.week-day-bar-wrap { flex:1; height:8px; background:#222; border-radius:4px; overflow:hidden; }
.week-day-bar-fill { height:100%; background:var(--neon); border-radius:4px; transition:width .4s; }
.week-day-count { font-size:12px; font-weight:700; color:#888; }

/* ══ SETTINGS ══ */
.settings-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.deliverable-row {
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px; background:#f8f9fa; border-radius:var(--radius-sm); margin-bottom:10px;
}
.deliverable-row:last-child { margin-bottom:0; }

/* ══ BUTTONS ══ */
.primary-btn {
  background:var(--black); color:#fff; border:none; padding:14px 28px;
  border-radius:100px; font-weight:800; font-size:14px; cursor:pointer;
  display:inline-flex; align-items:center; gap:8px; transition:transform .2s;
}
.primary-btn:hover { transform:scale(1.02); }
.neon-btn {
  background:var(--neon); color:var(--black); border:none; padding:14px 28px;
  border-radius:100px; font-weight:800; font-size:14px; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center; gap:8px; transition:transform .2s;
}
.neon-btn:hover { transform:scale(1.02); }
.neon-btn.full-width { width:100%; }
.ghost-btn {
  background:#f0f2f5; color:var(--black); border:none; padding:10px 18px;
  border-radius:100px; font-weight:700; font-size:13px; cursor:pointer;
  display:inline-flex; align-items:center; gap:6px; transition:.2s;
}
.ghost-btn:hover { background:#e5e7ea; }
.icon-btn {
  background:none; border:none; cursor:pointer; color:var(--muted);
  display:flex; align-items:center; justify-content:center; border-radius:50%;
  padding:8px; transition:.2s;
}
.icon-btn:hover { color:var(--black); background:#f0f2f5; }

/* ══ INPUTS ══ */
.dark-input {
  width:100%; background:#1a1a1a; border:1.5px solid #2a2a2a; color:#fff;
  padding:14px 18px; border-radius:var(--radius-sm); font-size:15px;
  font-family:var(--font); outline:none; transition:.2s;
}
.dark-input:focus { border-color:var(--neon); }
.light-input {
  width:100%; background:#f8f9fa; border:1.5px solid #eee; color:var(--black);
  padding:14px 18px; border-radius:var(--radius-sm); font-size:15px;
  font-family:var(--font); outline:none; transition:.2s;
}
.light-input:focus { border-color:var(--black); }
.form-group { margin-bottom:18px; }
.form-group label { display:block; margin-bottom:8px; font-size:13px; color:#888; font-weight:600; }
.form-group:last-child { margin-bottom:0; }

/* ══ MODALS ══ */
.modal-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.75);
  backdrop-filter:blur(12px); z-index:200;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:.25s;
}
.modal-overlay.active { opacity:1; pointer-events:auto; }
.modal-card {
  background:#111; color:#fff; border-radius:var(--radius); padding:40px;
  width:90%; max-width:520px; border:1px solid #222; max-height:90vh; overflow-y:auto;
  scrollbar-width:thin; scrollbar-color:#333 transparent;
}
.modal-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; }
.modal-header h2 { font-size:22px; font-weight:800; }

/* Print Controls (inside preview modal) */
.print-controls {
  display:flex; gap:12px; padding:16px 24px; background:#f8f9fa;
  border-bottom:1px solid #eee; position:sticky; top:0; z-index:10;
}

/* ══ QUOTE ITEMS IN MODAL ══ */
.quote-item {
  background:#1a1a1a; border-radius:var(--radius-sm); padding:14px 16px;
  display:flex; align-items:center; gap:12px;
}
.quote-item label { flex:1; cursor:pointer; }
.quote-item label strong { display:block; font-size:14px; font-weight:700; }
.quote-item label span { font-size:12px; color:#888; }
.quote-item input[type="number"] { width:70px; background:#222; border:1px solid #333; color:#fff; padding:8px; border-radius:10px; text-align:center; font-weight:700; }
.quote-item input[type="checkbox"] { width:18px; height:18px; accent-color:var(--neon); flex-shrink:0; }

/* ══ PRINT STYLES ══ */
@media print {
  @page {
    size: A4 portrait;
    margin: 0mm !important;
  }
  
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    font-family: 'Urbanist', sans-serif !important;
  }

  html, body {
    overflow: visible !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #000000 !important;
  }

  body > *:not(#modal-preview) {
    display: none !important;
  }

  #modal-preview {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    background: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .print-controls {
    display: none !important;
  }

  .modal-card {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: none !important;
  }

  #print-doc {
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    background: #ffffff !important;
    color: #000000 !important;
  }

  .print-page {
    page-break-after: always !important;
    page-break-inside: avoid !important;
    display: block !important;
    box-sizing: border-box !important;
    width: 210mm !important;
    height: 297mm !important;
    min-height: 297mm !important;
    margin: 0 !important;
    padding: 20mm 20mm !important; /* Perfect luxury padding, perfectly centered and safe from cuts */
    background: #ffffff !important;
    color: #000000 !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .no-print {
    display: none !important;
  }
}

/* PROPOSAL PRINT DOC */
.proposal-cover-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:40px; }
.proposal-meta-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border:1px solid #e5e5e5; border-radius:12px; overflow:hidden; margin:32px 0; }
.proposal-meta-cell { padding:16px 20px; border-right:1px solid #e5e5e5; }
.proposal-meta-cell:last-child { border-right:none; }
.proposal-meta-cell .meta-label { font-size:10px; letter-spacing:1.5px; color:#888; font-weight:700; margin-bottom:6px; }
.proposal-meta-cell .meta-val { font-size:14px; font-weight:700; }
.proposal-what-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:24px; }
.proposal-service-card { border:1px solid #eee; border-radius:12px; padding:20px; }
.proposal-service-card h4 { font-size:15px; font-weight:800; margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.proposal-service-card ul { list-style:none; padding:0; }
.proposal-service-card ul li { font-size:13px; color:#555; padding:4px 0; }
.proposal-service-card ul li::before { content:"> "; color:#888; }
.deliverables-table { width:100%; border-collapse:collapse; margin-top:16px; }
.deliverables-table th { font-size:10px; letter-spacing:1px; color:#888; padding:12px 16px; border-bottom:1px solid #eee; text-align:left; }
.deliverables-table td { padding:20px 16px; border-bottom:1px solid #f5f5f5; font-size:14px; }
.investment-summary-box { background:#f8f9fa; border-radius:16px; padding:28px; margin-top:32px; }
.investment-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid #eee; font-size:14px; }
.investment-total { display:flex; justify-content:space-between; align-items:center; padding-top:20px; margin-top:8px; }
.investment-total .label { font-weight:900; font-size:16px; letter-spacing:0.5px; }
.investment-total .amount { font-size:36px; font-weight:900; color:#7c3aed; }
.proposal-info-cards { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:28px; }
.proposal-info-card { background:#f8f9fa; border-radius:12px; padding:20px; }
.proposal-info-card h4 { font-size:13px; font-weight:800; margin-bottom:8px; }
.proposal-info-card p { font-size:12px; color:#666; line-height:1.6; }
.tc-section { margin-bottom:28px; page-break-inside: avoid !important; }
.tc-section h4 { display:flex; align-items:center; gap:12px; font-size:14px; font-weight:800; letter-spacing:0.5px; margin-bottom:12px; }
.tc-section h4 span.num { background:#111; color:#fff; width:26px; height:26px; border-radius:6px; display:inline-flex; align-items:center; justify-content:center; font-size:12px; flex-shrink:0; }
.tc-box { background:#f8f9fa; border-radius:12px; padding:18px; }
.tc-box p { font-size:13px; color:#444; line-height:1.7; font-weight:600; margin-bottom:8px; }
.tc-box ul { list-style:none; padding:0; }
.tc-box ul li { font-size:13px; color:#666; padding:3px 0; }
.tc-box ul li::before { content:"> "; color:#aaa; }
.tc-grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px; }
.tc-mini { background:#fff; border:1px solid #e5e5e5; border-radius:10px; padding:14px; }
.tc-mini .mini-label { font-size:10px; letter-spacing:1px; color:#888; font-weight:700; margin-bottom:6px; }
.tc-mini p { font-size:12px; color:#555; line-height:1.5; }
.tc-highlight { background:#fffbeb; border:1px solid #f5e272; border-radius:10px; padding:12px 16px; font-size:12px; color:#555; margin-top:12px; }
.proposal-footer { background:#111; color:#fff; padding:24px 40px; display:flex; justify-content:space-between; align-items:center; margin-top:48px; }
.proposal-footer a { color:var(--neon); }
.signature-grid { display:grid; grid-template-columns:1fr 1fr; gap:32px; margin-top:24px; }
.signature-box { border:1px solid #e5e5e5; border-radius:12px; padding:20px; }
.signature-box .sig-label { font-size:10px; letter-spacing:1px; color:#888; font-weight:700; margin-bottom:16px; }
.signature-box .sig-line { border-bottom:1px solid #ccc; margin-bottom:8px; height:40px; }
.signature-box .sig-name { font-size:13px; color:#555; }
.signature-box .sig-date { font-size:12px; color:#999; margin-top:4px; }

/* ══════════════ PORTFOLIO SHOWCASE LANDING PAGE ══════════════ */
#showcase-landing-page {
  position: fixed;
  inset: 0;
  background: #E8EAED;
  color: #111111;
  z-index: 9999;
  overflow-y: auto;
  scrollbar-width: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
#showcase-landing-page::-webkit-scrollbar {
  display: none;
}
#showcase-landing-page.fade-out {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* Floating Navigation Capsule Bar */
.showcase-nav {
  position: sticky;
  top: 20px;
  left: 0;
  right: 0;
  max-width: 1200px;
  margin: 0 auto;
  background: #111111;
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  z-index: 10000;
}
.showcase-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: -0.5px;
}
.showcase-links {
  display: flex;
  gap: 8px;
}
.showcase-link {
  color: #71717a;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.2s ease;
  cursor: pointer;
}
.showcase-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.showcase-nav-btn {
  background: var(--neon);
  color: var(--black);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 13px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.showcase-nav-btn:hover {
  transform: scale(1.03);
  filter: brightness(0.95);
}

/* Slide Panels */
.showcase-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
}
.showcase-section.center {
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* iMac Desktop CSS Mockup */
.imac-frame-container {
  width: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.imac-display {
  width: 100%;
  aspect-ratio: 1.68;
  background: #18181b;
  border: 12px solid #111111;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  overflow: hidden;
  position: relative;
  border-bottom: none;
}
.imac-chin {
  width: 100%;
  height: 38px;
  background: #e4e4e7;
  border: 12px solid #111111;
  border-top: none;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.imac-logo {
  width: 12px;
  height: 12px;
  background: #111111;
  border-radius: 50%;
}
.imac-stand {
  width: 110px;
  height: 80px;
  background: linear-gradient(to bottom, #d4d4d8, #a1a1aa);
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
  margin-top: -1px;
}
.imac-base {
  width: 220px;
  height: 10px;
  background: #71717a;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* MacBook HTML/CSS Mockup */
.macbook-frame-container {
  width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.macbook-screen {
  width: 90%;
  aspect-ratio: 1.6;
  background: #09090b;
  border: 12px solid #111;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 10px rgba(255,255,255,0.05);
}
.macbook-body {
  width: 105%;
  height: 12px;
  background: #d4d4d8;
  border-radius: 2px 2px 8px 8px;
  border-bottom: 2px solid #a1a1aa;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.macbook-indent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #71717a;
  border-radius: 0 0 4px 4px;
}

/* Color Specs Grid */
.palette-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 32px;
}
.palette-card-showcase {
  border-radius: 24px;
  padding: 32px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

/* CTA Showcase Banner */
.cta-showcase-box {
  width: 100%;
  background: #111111;
  border-radius: 36px;
  padding: 80px 48px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-showcase-box h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -1.5px;
}
.cta-showcase-box p {
  color: #71717a;
  font-size: 15px;
  max-width: 600px;
  line-height: 1.6;
}
.social-badges {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-badge {
  background: #1c1917;
  border: 1px solid #292524;
  padding: 10px 20px;
  border-radius: 100px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ══ KANBAN & PLANNER STYLES ══ */
.shoot-column::-webkit-scrollbar {
  width: 6px;
}
.shoot-column::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.shoot-column {
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}
.shoot-column .pebble-card {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s ease !important;
}
.shoot-column .pebble-card:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 255, 34, 0.3) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* ══ INVOICE MODAL LINE ITEMS ══ */
#invoice-items-edit-list::-webkit-scrollbar {
  width: 6px;
}
#invoice-items-edit-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}