/* ================================================================
   JEMIXO — home.css (index page specific styles)
   ================================================================ */

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 100px 0 0; position: relative; overflow: hidden;
}
/* ... background before stays same ... */
.hero-bg-orb { position:absolute; border-radius:50%; pointer-events:none; filter: blur(120px); mix-blend-mode: screen; }
.hero-orb1 { width:800px; height:800px; top:-300px; right:-250px; background:radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%); animation: float-slow 15s ease-in-out infinite; }
.hero-orb2 { width:600px; height:600px; bottom:-200px; left:-200px; background:radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%); animation: float-slow 12s ease-in-out infinite reverse; }
.hero-orb3 { width:400px; height:400px; top:20%; left:40%; background:radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%); animation: float-slow 18s ease-in-out infinite; }
.hero-inner { display:grid; grid-template-columns: 1.15fr 0.85fr; gap:80px; align-items:center; position:relative; z-index:1; padding-bottom:100px; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:rgba(16, 185, 129, 0.1); border:1px solid rgba(16, 185, 129, 0.2); border-radius:100px; padding:6px 16px; font-size:.875rem; color:var(--teal-mid); font-weight:600; margin-bottom:24px; }
.badge-live { width:8px; height:8px; border-radius:50%; background:var(--teal); animation:blink 1.4s infinite; flex-shrink:0; }
.hero-title { color: #fff; margin-bottom:24px; }
.hero-accent { color:var(--teal-mid); text-shadow: 0 0 40px rgba(16, 185, 129, 0.3); }
.hero-sub { font-size:1.25rem; color:rgba(255,255,255,.6); max-width:540px; line-height:1.6; margin-bottom:40px; }
.hero-actions { display:flex; flex-wrap:wrap; gap:16px; margin-bottom:48px; }
.hero-trust { display:flex; align-items:center; gap:16px; }
.trust-avatars { display:flex; margin-right: 4px; }
.trust-avatars span { width:36px; height:36px; border-radius:50%; background:var(--teal); display:flex; align-items:center; justify-content:center; font-size:.9rem; border:2px solid var(--navy); margin-left:-12px; transition: transform .3s; }
.trust-avatars span:hover { transform: translateY(-4px); z-index: 2; }
.trust-avatars span:first-child { margin-left:0; }
.trust-text { font-size:.925rem; color:rgba(255,255,255,.5); }
.trust-text strong { color:#fff; font-weight: 700; }

/* ── Marquee ── */
.marquee-section { padding:48px 0; background:var(--cream); border-bottom:1px solid var(--border); text-align:center; overflow: hidden; }
.marquee-label { font-size:.875rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.1em; margin-bottom:24px; font-weight:700; }
.marquee-track { display:flex; gap:16px; width:max-content; animation:marquee 30s linear infinite; }
.mq-item { 
  display:flex; align-items:center; gap:10px; background:#fff; 
  border:1px solid var(--border); border-radius:100px; padding:10px 24px; 
  font-size:.9rem; font-weight:600; color:var(--text-dark); white-space:nowrap; 
  box-shadow: var(--shadow);
}

/* ── Hero Visual ── */
.hero-visual { position:relative; display: flex; justify-content: center; align-items: center; }
.hero-mockup {
  width: 100%; max-width: 520px;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px; padding: 24px;
  box-shadow: 0 42px 120px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.mockup-float-wrap { animation: float 6s ease-in-out infinite; }
.mockup-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(15, 23, 42, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: -24px -24px 20px -24px;
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
}
.m-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.m-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.m-url {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 24px;
  border-radius: 8px;
  font-family: var(--font-b);
  letter-spacing: 0.02em;
  max-width: 260px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0 auto;
}
.mockup-stats { 
  display:grid; 
  grid-template-columns:repeat(4,1fr); 
  gap:1px; 
  background:rgba(255,255,255,0.08); 
  border-bottom:1px solid rgba(255,255,255,0.08); 
  margin: 0 -24px 0 -24px; 
}
.m-stat { background: var(--navy-card); padding: 16px 4px; text-align: center; transition: background 0.3s; }
.m-stat:hover { background: rgba(255, 255, 255, 0.02); }
.m-val { font-family: var(--font-h); font-size: 1.05rem; font-weight: 800; color: var(--teal-mid); line-height: 1.1; }
.m-lbl { font-size: 0.58rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; font-weight: 700; }
.mockup-mods { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 24px 0 0 0; }
.m-mod { 
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); 
  border-radius: 12px; padding: 12px 16px; color: rgba(255,255,255,0.85); 
  font-size: 0.85rem; display: flex; align-items: center; gap: 10px;
  transition: all 0.3s ease;
}
.m-mod:hover {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
  transform: translateY(-2px);
  color: #fff;
}
.m-mod span { font-size: 1.35rem; }

.hero-float {
  position:absolute; 
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 12px 24px; 
  font-size: .875rem; 
  font-weight: 700; 
  color: var(--navy);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
  white-space: nowrap; 
  animation: float 4s ease-in-out infinite;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.hero-float:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.22);
  border-color: var(--teal-mid);
}
.hero-float1 { bottom: -15px; left: -30px; animation-delay: -1s; border-left: 4px solid var(--teal); }
.hero-float2 { top: -10px; right: -30px; animation-delay: -2s; border-left: 4px solid var(--gold); }

/* ── Features Grid ── */
.feat-card {
  background:#fff; border:1px solid var(--border); border-radius:var(--r-xl);
  padding:40px; transition:all var(--trans);
  display:flex; flex-direction:column; position:relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.02) 0%, rgba(16, 185, 129, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.feat-card:hover::before { opacity: 1; }
.feat-card:hover { transform:translateY(-12px); box-shadow: var(--shadow-xl); border-color:var(--teal-mid); }
.feat-card > * { position: relative; z-index: 1; }
.feat-icon-wrap { 
  width:64px; height:64px; border-radius:16px; 
  display:flex; align-items:center; justify-content:center; 
  font-size:2rem; margin-bottom:24px; 
  background: var(--teal-pale);
  transition: all .3s var(--ease);
}
.feat-card:hover .feat-icon-wrap { transform: scale(1.1) rotate(5deg); background: var(--teal); color: #fff; box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
.feat-card h3 { font-size:1.5rem; font-weight:700; color:var(--text-dark); margin-bottom:12px; }
.feat-card p { font-size:1rem; color:var(--text-mid); line-height:1.6; margin-bottom: 24px; }
.feat-link { display:inline-flex; align-items:center; gap:6px; color:var(--teal); font-weight:700; font-size:1rem; margin-top:auto; transition: gap .3s; }
.feat-link:hover { gap:10px; }

/* ── Why Section ── */
.why-section { background:linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%); }
.why-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.why-card {
  background:var(--navy-card); border:1px solid rgba(255,255,255,.06); border-radius:var(--r-lg);
  padding:28px; transition:transform var(--trans), border-color var(--trans);
}
.why-card:hover { transform:translateY(-5px); border-color:rgba(29,158,117,.3); }
.why-num { font-size:.7rem; font-weight:700; letter-spacing:.1em; color:rgba(255,255,255,.2); margin-bottom:12px; }
.why-icon { font-size:2rem; margin-bottom:14px; }
.why-card h3 { font-size:1.05rem; font-weight:600; color:#fff; margin-bottom:10px; }
.why-card p { font-size:.875rem; color:rgba(255,255,255,.5); line-height:1.7; }

/* ── Metrics ── */
.metrics-section { background:var(--cream); }
.metrics-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.metric-item { text-align:center; padding:32px 20px; }
.metric-icon { font-size:2.4rem; margin-bottom:12px; }
.metric-num { font-family:var(--font-h); font-size:2.6rem; font-weight:700; color:var(--teal); margin-bottom:6px; }
.metric-item p { font-size:.875rem; color:var(--text-mid); }

/* ── Testimonials ── */
.testi-section { background:var(--white); }
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-card { 
  background:var(--off-white); border:1px solid var(--border); border-radius:var(--r-lg); 
  padding:28px; transition:all .4s var(--ease-out); 
}
.testi-card:hover { transform:translateY(-10px) scale(1.02); box-shadow: var(--shadow-xl); border-color: var(--teal-mid); }
.testi-stars { color:var(--gold); font-size:1rem; margin-bottom:14px; letter-spacing:2px; }
.testi-card p { font-size:.9rem; color:var(--text-mid); line-height:1.75; margin-bottom:20px; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-av { width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.85rem; font-weight:700; color:#fff; flex-shrink:0; }
.testi-author strong { display:block; font-size:.92rem; color:var(--text-dark); }
.testi-author span { font-size:.8rem; color:var(--text-muted); }

/* ── Pricing ── */
.pricing-section { background:var(--cream); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.pricing-card { background:#fff; border:1.5px solid var(--border); border-radius:var(--r-xl); padding:36px; display:flex; flex-direction:column; gap:0; transition:all var(--trans); position: relative; overflow: hidden; }
.pricing-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-xl); border-color: var(--teal-mid); }
.pricing-featured { background:var(--navy); border-color:var(--teal); position:relative; transform:scale(1.03); box-shadow:0 24px 64px rgba(29,158,117,.28); }
.pricing-featured:hover { transform:scale(1.03) translateY(-8px); }
.pricing-featured .pc-name { color: var(--teal-mid); }
.pricing-featured .pc-price { color: #fff; }
.pricing-featured .pc-price span { color: rgba(255,255,255,0.4); }
.pricing-featured .pc-desc { color: rgba(255,255,255,0.6); border-bottom-color: rgba(255,255,255,0.1); }
.pricing-featured .pc-features li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.08); }
.pricing-featured .btn-primary { background: var(--teal-mid); color: var(--navy); font-weight: 700; }
.pricing-featured .btn-primary:hover { background: #fff; color: var(--teal-dark); box-shadow: 0 10px 24px rgba(255,255,255,0.15); }
.pc-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--teal); color:#fff; font-size:.7rem; font-weight:700; padding:4px 16px; border-radius:100px; white-space:nowrap; letter-spacing:.08em; text-transform: uppercase; }
.pc-name { font-size:.8rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text-muted); margin-bottom:8px; }
.pc-price { font-family:var(--font-h); font-size:2.8rem; font-weight:700; color:var(--text-dark); line-height:1; margin-bottom:4px; }
.pc-price span { font-size:1rem; font-weight:500; color:var(--text-muted); }
.pc-desc { font-size:.875rem; color:var(--text-mid); margin-bottom:20px; padding-bottom:20px; border-bottom:1px solid var(--border); }
.pc-features { margin-bottom:28px; flex:1; list-style: none; padding: 0; }
.pc-features li { 
  font-size:.875rem; 
  color:var(--text-mid); 
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── CTA Banner ── */
.cta-banner { background:linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%); padding:80px 0; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-text h2 { font-size:clamp(1.6rem,3vw,2.4rem); font-weight:600; color:#fff; margin-bottom:10px; }
.cta-text p { font-size:1rem; color:rgba(255,255,255,.75); max-width:500px; }
.cta-actions { display:flex; gap:12px; flex-wrap:wrap; }

/* ── Responsive ── */
@media(max-width:1100px) {
  .why-cards { grid-template-columns:repeat(2,1fr); }
  .metrics-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:900px) {
  .hero-inner { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .testi-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .pricing-featured { transform:none; }
  .cta-inner { flex-direction:column; text-align:center; }
}
@media(max-width:600px) {
  .features-grid { grid-template-columns:1fr; }
  .why-cards { grid-template-columns:1fr; }
  .metrics-grid { grid-template-columns:repeat(2,1fr); }
}

/* ── Interactive Dashboard Tour ── */
.dashboard-tour {
  position: relative;
  background: var(--navy) !important;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.tour-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 48px;
  align-items: center;
}
.tour-controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tour-tab {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  gap: 20px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.tour-tab:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.tour-tab.active {
  background: rgba(29, 158, 117, 0.08);
  border-color: var(--teal);
  box-shadow: 0 10px 30px rgba(29, 158, 117, 0.15);
}
.tab-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-meta h4 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 6px 0;
  font-weight: 700;
  font-family: var(--font-h);
}
.tab-meta p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
  margin: 0;
}
.tour-tab.active .tab-meta p {
  color: rgba(255, 255, 255, 0.75);
}

/* MacBook Mockup Frame */
.tour-mockup-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.macbook-frame {
  width: 100%;
  max-width: 680px;
  background: #1e1e24;
  border: 12px solid #08080a;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 35px 80px rgba(0,0,0,0.65);
  position: relative;
}
.macbook-camera {
  width: 6px;
  height: 6px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.macbook-screen {
  background: var(--navy-mid);
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.macbook-lip {
  width: calc(100% + 40px);
  height: 6px;
  background: #6b7280;
  border-radius: 0 0 8px 8px;
  position: relative;
  left: -20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.macbook-lip::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #374151;
  border-radius: 0 0 4px 4px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Dashboard UI Internals */
.dash-ui {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  user-select: none;
}
.dash-header {
  background: rgba(15, 23, 42, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.dh-store {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}
.badge-status {
  color: #10B981;
  font-size: 0.65rem;
  background: rgba(16, 185, 129, 0.1);
  padding: 1px 6px;
  border-radius: 100px;
  font-weight: 700;
}
.dh-search {
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4px 16px;
  border-radius: 6px;
  width: 200px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dh-user {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}
.dash-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.dash-sidebar {
  width: 120px;
  background: rgba(15, 23, 42, 0.45);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ds-item {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
}
.ds-item.active, .ds-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.dash-panels {
  flex: 1;
  padding: 16px;
  position: relative;
  background: rgba(15, 23, 42, 0.2);
}
.dash-panel {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: dashFadeIn 0.4s ease;
}
.dash-panel.active {
  display: flex;
}
@keyframes dashFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Panel Header */
.panel-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.panel-header-row h3 {
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}
.panel-date-range, .active-invoice-number, .active-crm-members, .panel-alert-count {
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.6);
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.panel-alert-count {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

/* Panel Stats */
.panel-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.panel-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 10px;
}
.ps-label {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.ps-val {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.ps-change {
  font-size: 0.58rem;
  margin-top: 4px;
  font-weight: 700;
}
.ps-change.positive { color: #10B981; }
.ps-change.neutral { color: rgba(255,255,255,0.4); }

/* SVG Graph */
.panel-chart-container {
  flex: 1;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.panel-svg-chart {
  width: 100%;
  height: 100%;
  max-height: 110px;
}

/* Tables in Mockup */
.invoice-table-wrap, .crm-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
  background: rgba(15, 23, 42, 0.3);
}
.mock-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.65rem;
}
.mock-table th {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mock-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
}
.invoice-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  font-size: 0.68rem;
  margin-bottom: 12px;
}
.customer-selected {
  color: rgba(255, 255, 255, 0.6);
}
.cs-badge {
  font-size: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
}
.invoice-totals {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 150px;
}
.tot-line {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
}
.tot-line.grand {
  font-weight: 700;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3px;
}

/* WhatsApp CTA Mock */
.whatsapp-btn-mock {
  width: 100%;
  background: #25D366;
  border: none;
  color: #fff;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
}
.whatsapp-btn-mock:hover {
  filter: brightness(1.05);
}

/* Tier and Status Badges */
.tier-badge {
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 800;
}
.tier-badge.gold { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.tier-badge.silver { background: rgba(156, 163, 175, 0.15); color: #d1d5db; }
.tier-badge.platinum { background: rgba(96, 165, 250, 0.15); color: #60a5fa; }
.status-indicator {
  font-size: 0.6rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.status-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #10b981;
  border-radius: 50%;
  display: inline-block;
}

/* Inventory Cards */
.inv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.inv-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.inv-card.alert {
  border-color: rgba(245, 158, 11, 0.25);
  background: rgba(245, 158, 11, 0.02);
}
.inv-meta {
  display: flex;
  flex-direction: column;
}
.inv-meta strong {
  font-size: 0.72rem;
  color: #fff;
  margin-bottom: 2px;
}
.inv-meta span {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.4);
}
.inv-stock {
  font-size: 0.62rem;
  font-weight: 700;
}
.inv-stock.ok { color: #10B981; }
.inv-stock.low { color: #f59e0b; }

/* Phone Mockup Frame (iPhone) */
.phone-frame {
  width: 180px;
  height: 340px;
  background: #08080a;
  border: 8px solid #1f2937;
  border-radius: 28px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  position: absolute;
  bottom: -30px;
  right: -30px;
  z-index: 10;
  overflow: hidden;
  animation: tourFloat 5s ease-in-out infinite alternate;
}
.phone-speaker {
  width: 40px;
  height: 4px;
  background: #374151;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
.phone-screen {
  background: #0c1017;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 16px 8px 8px;
  box-sizing: border-box;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.48rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
  font-weight: 700;
}
.phone-content-mock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ph-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ph-title-row h4 {
  font-size: 0.75rem;
  color: #fff;
  margin: 0;
  font-weight: 800;
}
.p-status-dot { color: #10b981; font-size: 0.8rem; }
.ph-metric-small {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.pms-lbl { font-size: 0.42rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.pms-val { font-size: 0.85rem; font-weight: 800; color: var(--teal-mid); margin-top: 2px; }

.ph-recent-actions {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ph-recent-actions h5 {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
  margin: 0 0 2px 0;
}
.ph-action-item {
  background: rgba(255,255,255,0.01);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 4px;
  padding: 4px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pai-info { display: flex; flex-direction: column; }
.pai-info strong { font-size: 0.52rem; color: #fff; }
.pai-info span { font-size: 0.42rem; color: rgba(255,255,255,0.4); }
.pai-amt { font-size: 0.55rem; font-weight: 700; color: #10B981; }

.ph-share-box {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 6px;
  padding: 6px;
  text-align: center;
  margin-top: auto;
}

/* Animations and Responsive adaptations */
@keyframes tourFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@media (max-width: 991px) {
  .tour-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .phone-frame {
    display: none; /* Hide phone overlay on smaller viewports */
  }
}
