/* ==========================================================================
   HERJUNO SOLUSI BISNIS PERKASA (HSBP) - OFFICIAL DESIGN SYSTEM
   Color System: Deep Corporate Navy, Emerald Growth Green, Prestige Gold, Crisp White
   Art Direction: Katie (VP Design) & Tony (Lead Dev)
   ========================================================================== */

:root {
  /* HSBP Brand Palette */
  --hsbp-navy-deep: #050B14;
  --hsbp-navy-dark: #0B192C;
  --hsbp-navy-surface: #0E1E38;
  --hsbp-navy-card: #13274A;
  --hsbp-navy-card-hover: #17325F;
  --hsbp-navy-border: rgba(255, 255, 255, 0.08);
  --hsbp-navy-border-hover: rgba(212, 175, 55, 0.4);

  /* Emerald Growth Green */
  --hsbp-green: #10B981;
  --hsbp-green-hover: #059669;
  --hsbp-green-glow: rgba(16, 185, 129, 0.25);

  /* Prestige Gold */
  --hsbp-gold: #D4AF37;
  --hsbp-gold-light: #F3C64F;
  --hsbp-gold-hover: #B89225;
  --hsbp-gold-glow: rgba(212, 175, 55, 0.25);

  /* Crisp White & Neutrals */
  --hsbp-white: #FFFFFF;
  --hsbp-white-muted: #F8FAFC;
  --hsbp-text-main: #F1F5F9;
  --hsbp-text-muted: #94A3B8;
  --hsbp-text-subtle: #64748B;
  
  /* Utilities */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
  --shadow-green: 0 10px 25px -5px rgba(16, 185, 129, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--hsbp-navy-deep);
  color: var(--hsbp-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* Top Announcement Bar */
.top-bar {
  background: linear-gradient(90deg, #071326 0%, #0d2242 50%, #071326 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.top-bar-link {
  color: var(--hsbp-gold-light);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.top-bar-link:hover {
  text-decoration: underline;
  color: var(--hsbp-white);
}

/* Site Navigation Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--hsbp-navy-border);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.4rem;
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.nav-brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--hsbp-white);
  letter-spacing: 0.05em;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.15rem;
}

.nav-link {
  color: var(--hsbp-text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: var(--transition);
  padding: 0.4rem 0;
  position: relative;
}

.nav-link:hover {
  color: var(--hsbp-white);
}

.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--hsbp-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  margin-left: 1.25rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--hsbp-white);
  cursor: pointer;
  padding: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-primary-green {
  background: var(--hsbp-green);
  color: #042f1a;
  box-shadow: var(--shadow-green);
}

.btn-primary-green:hover {
  background: #059669;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--hsbp-gold-light);
  border-color: var(--hsbp-gold);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--hsbp-white);
  border-color: var(--hsbp-gold-light);
}

.btn-hero-gold {
  background: linear-gradient(135deg, #F3C64F 0%, #D4AF37 50%, #B89225 100%);
  color: #1a1202;
  box-shadow: var(--shadow-gold);
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
}

.btn-hero-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--hsbp-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
  backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--hsbp-white);
  transform: translateY(-2px);
}

.btn-wa-direct {
  background: #25D366;
  color: #063116;
  font-weight: 700;
  width: 100%;
  margin-top: 1rem;
}

.btn-wa-direct:hover {
  background: #1eb956;
  color: #ffffff;
}

.btn-block {
  width: 100%;
}

/* Badges & Tags */
.badge-gold {
  background: rgba(212, 175, 55, 0.15);
  color: var(--hsbp-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--hsbp-green);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.tag-gold {
  color: var(--hsbp-gold);
}

.tag-green {
  color: var(--hsbp-green);
}

/* Section Header Typography */
.section-header {
  margin-bottom: 3.5rem;
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hsbp-white);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--hsbp-text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 6rem 0 5rem;
  text-align: center;
  overflow: hidden;
}

.hero-backdrop-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(212, 175, 55, 0.08) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-full-crest {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-crest-img {
  max-width: 240px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.35)) drop-shadow(0 4px 18px rgba(16, 185, 129, 0.2));
  transition: var(--transition);
}

.hero-crest-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.5));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(14, 30, 56, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hsbp-text-main);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dot-green {
  width: 8px;
  height: 8px;
  background-color: var(--hsbp-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--hsbp-green);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--hsbp-white);
  max-width: 950px;
  margin: 0 auto 1.5rem;
}

.highlight-gold {
  color: var(--hsbp-gold-light);
  background: linear-gradient(135deg, #FFF0B8 0%, #D4AF37 50%, #E8B93D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--hsbp-text-muted);
  max-width: 760px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

/* Trust Metrics Grid */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: rgba(14, 30, 56, 0.6);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  border-right: 1px solid var(--hsbp-navy-border);
}

.trust-item:last-child {
  border-right: none;
}

.trust-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--hsbp-gold-light);
}

.trust-label {
  font-size: 0.85rem;
  color: var(--hsbp-text-muted);
  font-weight: 500;
}

/* Problem vs Solution Section */
.problem-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--hsbp-navy-deep) 0%, #071224 100%);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comparison-card {
  background: var(--hsbp-navy-surface);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card-problem {
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.card-solution {
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: linear-gradient(180deg, #0f2445 0%, #0c1c36 100%);
  box-shadow: 0 15px 35px -10px rgba(16, 185, 129, 0.15);
}

.card-header-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.problem-icon {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.solution-icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--hsbp-green);
}

.comparison-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hsbp-white);
  margin-bottom: 1.5rem;
}

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

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.list-icon-red {
  color: #ef4444;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.list-icon-green {
  color: var(--hsbp-green);
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.comparison-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--hsbp-white);
  margin-bottom: 0.2rem;
}

.comparison-list p {
  font-size: 0.9rem;
  color: var(--hsbp-text-muted);
}

/* Core Suite Section */
.suite-section {
  padding: 6rem 0;
  background: var(--hsbp-navy-deep);
}

.suite-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.suite-tab-btn {
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.tab-icon-img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.15);
  flex-shrink: 0;
  transition: var(--transition);
}

.suite-tab-btn strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hsbp-white);
  margin-bottom: 0.25rem;
}

.suite-tab-btn span {
  font-size: 0.92rem;
  color: var(--hsbp-text-muted);
}

.suite-tab-btn:hover {
  background: var(--hsbp-navy-card);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-3px);
}

.suite-tab-btn:hover .tab-icon-img {
  transform: scale(1.05);
  border-color: var(--hsbp-gold-light);
}

.suite-tab-btn.active {
  background: linear-gradient(135deg, #13274A 0%, #17325F 100%);
  border-color: var(--hsbp-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
}

.suite-tab-btn.active .tab-icon-img {
  border-color: var(--hsbp-gold-light);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.4), 0 0 18px rgba(16, 185, 129, 0.25);
}

.suite-tab-btn.active strong {
  color: var(--hsbp-gold-light);
}

/* Tab Panes */
.suite-content-container {
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-card);
}

.suite-tab-pane {
  display: none;
}

.suite-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

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

.pane-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.pane-info .pane-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.pane-info h3 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--hsbp-white);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.pane-info > p {
  color: var(--hsbp-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.bullet-check {
  color: var(--hsbp-green);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.bullet-item strong {
  color: var(--hsbp-white);
  font-size: 0.95rem;
}

.bullet-item div {
  font-size: 0.9rem;
  color: var(--hsbp-text-muted);
}

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

.subtext-note {
  font-size: 0.85rem;
  color: var(--hsbp-gold-light);
  font-weight: 600;
}

/* Mockup Windows in Panes */
.mockup-window {
  background: #08111e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.mockup-header {
  background: #050b14;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #10b981; }

.mockup-title {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  color: var(--hsbp-text-subtle);
  font-family: monospace;
}

.mockup-body {
  padding: 1.5rem;
}

.code-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--hsbp-green);
  margin-bottom: 0.4rem;
}

.code-tag.gold {
  color: var(--hsbp-gold-light);
  margin-top: 1.25rem;
}

.mockup-snippet {
  background: rgba(255, 255, 255, 0.03);
  border-left: 2px solid var(--hsbp-green);
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--hsbp-text-main);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.5;
}

.mockup-result {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sop-step {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--hsbp-white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sop-step.highlight {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--hsbp-gold-light);
}

.step-num {
  background: var(--hsbp-navy-card);
  color: var(--hsbp-gold);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

/* DACI Mockup Table */
.daci-table {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.daci-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.daci-row.header {
  font-weight: 700;
  color: var(--hsbp-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.badge-role {
  background: rgba(16, 185, 129, 0.15);
  color: var(--hsbp-green);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  width: fit-content;
}

.badge-role.ceo {
  background: rgba(212, 175, 55, 0.15);
  color: var(--hsbp-gold-light);
}

/* Metric KPI Mockup */
.kpi-metric-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.kpi-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.kpi-val.green { color: var(--hsbp-green); font-weight: 800; }
.kpi-val.gold { color: var(--hsbp-gold-light); font-weight: 800; }

.progress-bar-bg {
  background: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill.green { background: var(--hsbp-green); height: 100%; }
.progress-fill.gold { background: var(--hsbp-gold); height: 100%; }

/* Compliance Hub Section */
.compliance-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #071224 0%, var(--hsbp-navy-deep) 100%);
}

.compliance-box {
  background: linear-gradient(135deg, #0e203c 0%, #081426 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-card);
}

.compliance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.compliance-title-group h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hsbp-white);
  margin: 0.5rem 0 0.75rem;
}

.compliance-title-group p {
  color: var(--hsbp-text-muted);
  max-width: 650px;
  font-size: 1.05rem;
}

.compliance-3d-img {
  width: 130px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.comp-card {
  background: rgba(14, 30, 56, 0.7);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: var(--transition);
}

.comp-card:hover {
  border-color: var(--hsbp-gold);
  transform: translateY(-4px);
  background: var(--hsbp-navy-card);
}

.comp-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--hsbp-gold-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.comp-card h4 {
  font-size: 1.1rem;
  color: var(--hsbp-white);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.comp-card p {
  font-size: 0.85rem;
  color: var(--hsbp-text-muted);
  line-height: 1.5;
}

.compliance-frameworks-bar {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--hsbp-navy-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.frameworks-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--hsbp-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 0.5rem;
}

.frameworks-label i {
  width: 16px;
  height: 16px;
  color: var(--hsbp-green);
}

.framework-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hsbp-white-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hsbp-navy-border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  transition: var(--transition);
}

.framework-tag:hover {
  border-color: var(--hsbp-green);
  color: var(--hsbp-white);
  background: rgba(16, 185, 129, 0.12);
  transform: translateY(-2px);
}

/* Bespoke Custom Software Development Section */
.custom-solutions-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--hsbp-navy-deep) 0%, #0A1728 100%);
  position: relative;
  border-top: 1px solid var(--hsbp-navy-border);
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.custom-card {
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.custom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--hsbp-green), transparent);
  opacity: 0;
  transition: var(--transition);
}

.custom-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 35px -10px rgba(16, 185, 129, 0.2);
}

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

.custom-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.icon-ai {
  background: rgba(16, 185, 129, 0.15);
  color: var(--hsbp-green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.icon-erp {
  background: rgba(212, 175, 55, 0.15);
  color: var(--hsbp-gold-light);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.icon-integration {
  background: rgba(59, 130, 246, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.icon-security {
  background: rgba(168, 85, 247, 0.15);
  color: #C084FC;
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.custom-card h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--hsbp-white);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.custom-card p {
  font-size: 0.9rem;
  color: var(--hsbp-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.custom-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid var(--hsbp-navy-border);
  padding-top: 1.25rem;
}

.custom-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--hsbp-white-muted);
  font-weight: 600;
}

.custom-features li i {
  width: 16px;
  height: 16px;
  color: var(--hsbp-green);
  flex-shrink: 0;
}

/* Custom CTA Callout Box */
.custom-cta-box {
  background: linear-gradient(135deg, #0e2347 0%, #07152b 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
}

.cta-box-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--hsbp-gold-light);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 0.75rem;
}

.cta-box-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--hsbp-white);
  margin-bottom: 0.6rem;
}

.cta-box-content p {
  font-size: 0.95rem;
  color: var(--hsbp-text-muted);
  max-width: 650px;
  line-height: 1.6;
}

.cta-box-action {
  flex-shrink: 0;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Calculator Section */
.calculator-section {
  padding: 6rem 0;
  background: var(--hsbp-navy-deep);
}

.calc-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  box-shadow: var(--shadow-card);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.input-group label {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hsbp-white);
  margin-bottom: 0.75rem;
}

.slider-val {
  color: var(--hsbp-gold-light);
  font-weight: 800;
}

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

.calc-results {
  background: linear-gradient(135deg, #09172e 0%, #060e1d 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.result-highlight .res-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--hsbp-text-muted);
  letter-spacing: 0.05em;
}

.res-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--hsbp-green);
  margin: 0.5rem 0;
  letter-spacing: -0.02em;
}

.res-sub {
  font-size: 0.8rem;
  color: var(--hsbp-text-subtle);
  display: block;
  margin-bottom: 1.5rem;
}

.result-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mini-res {
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-title {
  font-size: 0.75rem;
  color: var(--hsbp-text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.mini-res strong {
  font-size: 1.05rem;
  color: var(--hsbp-white);
}

.green-text {
  color: var(--hsbp-green) !important;
}

/* Security Section */
.security-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--hsbp-navy-deep) 0%, #061120 100%);
}

.security-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.security-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hsbp-white);
  margin: 0.5rem 0 1.25rem;
}

.security-text > p {
  color: var(--hsbp-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.sec-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sec-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.sec-icon {
  width: 24px;
  height: 24px;
  color: var(--hsbp-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.sec-item strong {
  display: block;
  font-size: 1rem;
  color: var(--hsbp-white);
  margin-bottom: 0.2rem;
}

.sec-item p {
  font-size: 0.9rem;
  color: var(--hsbp-text-muted);
}

.shield-card {
  background: linear-gradient(135deg, #0e203c 0%, #081426 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.shield-icon-wrap {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.shield-center-icon {
  width: 42px;
  height: 42px;
  color: var(--hsbp-green);
}

.shield-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--hsbp-white);
  margin-bottom: 0.5rem;
}

.shield-card p {
  font-size: 0.85rem;
  color: var(--hsbp-text-muted);
  margin-bottom: 1.5rem;
}

.shield-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--hsbp-green);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: var(--hsbp-green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--hsbp-green);
}

/* Leadership Section */
.leadership-section {
  padding: 6rem 0;
  background: var(--hsbp-navy-deep);
}

.ceo-solo-card {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.csuite-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.csuite-single {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

/* Collapsible Team Container */
.team-collapsible-wrap {
  margin-top: 1rem;
}

.team-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.06) 100%);
  border: 1.5px solid rgba(59, 130, 246, 0.25);
  border-radius: var(--radius-lg);
  color: var(--hsbp-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
}

.team-toggle-btn:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
  border-color: #3B82F6;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
  transform: translateY(-2px);
}

.team-toggle-btn.active {
  border-color: rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(16, 185, 129, 0.08) 100%);
}

.team-toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.team-toggle-btn.active .team-toggle-icon {
  transform: rotate(180deg);
}

.team-collapsible-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.team-collapsible-content.expanded {
  max-height: 3000px;
  opacity: 1;
  margin-top: 2.5rem;
}

.leader-card {
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.leader-card:hover {
  transform: translateY(-4px);
}

.ceo-spotlight {
  border: 1.5px solid rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #0e2347 0%, #07152b 100%);
  box-shadow: 0 12px 35px -10px rgba(29, 78, 216, 0.3);
  transition: var(--transition);
}

.ceo-spotlight:hover {
  border-color: #3B82F6;
  box-shadow: 0 16px 45px -5px rgba(37, 99, 235, 0.5), 0 0 30px rgba(59, 130, 246, 0.45);
  transform: translateY(-5px);
}

.ceo-spotlight:hover .leader-avatar-wrap {
  border-color: #3B82F6;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.evp-spotlight {
  border-color: rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #0d273f 0%, #071929 100%);
  box-shadow: 0 12px 35px -10px rgba(16, 185, 129, 0.2);
}

.evp-spotlight:hover {
  border-color: var(--hsbp-green);
  box-shadow: 0 15px 40px -10px rgba(16, 185, 129, 0.35);
}

.leader-avatar-wrap {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--hsbp-gold);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background: #08111e;
}

.evp-spotlight .leader-avatar-wrap {
  border-color: var(--hsbp-green);
}

.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ceo-img {
  object-position: 50% 15%; /* Perfect framing for portrait */
}

.leader-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.leader-details h3 {
  font-size: 1.45rem;
  color: var(--hsbp-white);
  font-weight: 800;
  margin-top: 0.2rem;
}

.leader-bio {
  font-size: 0.88rem;
  color: var(--hsbp-text-muted);
  line-height: 1.6;
}

/* VP Team Heading & Grid */
.vp-section-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hsbp-gold-light);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.vp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vp-card {
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.vp-card:hover {
  border-color: var(--hsbp-gold);
  transform: translateY(-5px);
  background: var(--hsbp-navy-card);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.vp-avatar-wrap {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.4);
  margin-bottom: 1.1rem;
  background: #08111e;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.vp-card:hover .vp-avatar-wrap {
  border-color: var(--hsbp-gold);
  transform: scale(1.05);
  transition: var(--transition);
}

.vp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.vp-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.vp-role {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--hsbp-gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vp-info h4 {
  font-size: 1.15rem;
  color: var(--hsbp-white);
  font-weight: 700;
}

.vp-info p {
  font-size: 0.8rem;
  color: var(--hsbp-text-muted);
  line-height: 1.45;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: var(--hsbp-navy-deep);
}

.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.faq-item.active {
  border-color: var(--hsbp-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--hsbp-white);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--hsbp-gold-light);
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--hsbp-gold-light);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.75rem 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--hsbp-text-muted);
  line-height: 1.7;
}

/* Floating WhatsApp Quick-Chat Widget */
.floating-wa-wrap {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-direction: row-reverse;
}

.floating-wa-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  position: relative;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.55);
}

.floating-wa-icon {
  width: 32px;
  height: 32px;
}

.floating-wa-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2s infinite ease-out;
  pointer-events: none;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.floating-wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #EF4444;
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  border: 2px solid var(--hsbp-navy-deep);
  letter-spacing: 0.03em;
}

.floating-wa-tooltip {
  background: var(--hsbp-navy-surface);
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.floating-wa-tooltip strong {
  font-size: 0.85rem;
  color: var(--hsbp-white);
  display: block;
}

.floating-wa-tooltip span {
  font-size: 0.75rem;
  color: var(--hsbp-text-muted);
}

.floating-wa-wrap:hover .floating-wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Contact / Lead Section */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #061120 0%, var(--hsbp-navy-deep) 100%);
}

.contact-card {
  background: var(--hsbp-navy-surface);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-card);
}

.contact-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--hsbp-white);
  margin: 0.75rem 0;
}

.contact-header p {
  color: var(--hsbp-text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 3rem;
}

.contact-split {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3.5rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hsbp-white);
  margin-bottom: 0.4rem;
}

.form-ctrl {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #08111e;
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-md);
  color: var(--hsbp-white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-ctrl:focus {
  outline: none;
  border-color: var(--hsbp-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-success-msg {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--hsbp-green);
  color: var(--hsbp-green);
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* Direct Contact Box */
.direct-contact-box {
  background: #081324;
  border: 1px solid var(--hsbp-navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.direct-contact-box h4 {
  font-size: 1.15rem;
  color: var(--hsbp-white);
  margin-bottom: 0.4rem;
}

.direct-contact-box > p {
  font-size: 0.85rem;
  color: var(--hsbp-text-muted);
  margin-bottom: 1.5rem;
}

.direct-agent {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.agent-avatar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.direct-agent strong {
  display: block;
  font-size: 0.95rem;
  color: var(--hsbp-white);
}

.direct-agent span {
  font-size: 0.75rem;
  color: var(--hsbp-gold-light);
}

.office-info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--hsbp-navy-border);
  padding-top: 1.5rem;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--hsbp-text-muted);
}

.info-line i {
  width: 16px;
  height: 16px;
  color: var(--hsbp-gold-light);
}

/* Site Footer */
.site-footer {
  background: #03060c;
  border-top: 1px solid var(--hsbp-navy-border);
  padding: 4rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 125px;
  width: auto;
  max-width: 310px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 6px 20px rgba(212, 175, 55, 0.3));
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--hsbp-text-muted);
  line-height: 1.6;
}

.footer-links-col h5 {
  font-size: 0.95rem;
  color: var(--hsbp-white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a {
  color: var(--hsbp-text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links-col a:hover {
  color: var(--hsbp-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--hsbp-text-subtle);
}

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

.powered-text {
  color: var(--hsbp-gold-light);
  font-weight: 600;
}

/* Project Black Coffee - Executive Diagnostic Audit Modal */
.black-coffee-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 7, 18, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.black-coffee-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.black-coffee-modal-card {
  background: linear-gradient(145deg, #0d1e38 0%, #071224 100%);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2.5rem 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.2);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.black-coffee-modal-overlay.active .black-coffee-modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--hsbp-text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border-color: #ef4444;
}

.modal-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.badge-coffee-gold {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--hsbp-gold);
  color: var(--hsbp-gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge-coffee-gold i {
  width: 14px;
  height: 14px;
}

.badge-coffee-live {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #F87171;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.modal-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--hsbp-white);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.modal-desc {
  font-size: 0.92rem;
  color: var(--hsbp-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.modal-offer-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.offer-price-tag {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-label {
  font-size: 0.75rem;
  color: var(--hsbp-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.price-flex {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.price-strike {
  font-size: 0.95rem;
  color: var(--hsbp-text-subtle);
  text-decoration: line-through;
}

.price-main {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--hsbp-green);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.price-tagline {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--hsbp-gold-light);
  background: rgba(212, 175, 55, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

.offer-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.offer-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--hsbp-text-main);
  line-height: 1.45;
}

.perk-icon {
  width: 16px;
  height: 16px;
  color: var(--hsbp-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.btn-coffee-cta {
  width: 100%;
  box-sizing: border-box;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #FFFFFF !important;
  border: none;
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: normal !important;
  text-align: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
  transition: var(--transition);
}

.btn-coffee-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.55);
}

.btn-text-dismiss {
  background: transparent;
  border: none;
  color: var(--hsbp-text-subtle);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: underline;
  padding: 0.25rem 0.5rem;
}

.btn-text-dismiss:hover {
  color: var(--hsbp-text-muted);
}

/* Live Corporate Visitor Counter Widget */
.visitor-counter-wrap {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 9998;
  background: rgba(14, 30, 56, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  user-select: none;
}

.visitor-counter-wrap:hover {
  transform: translateY(-2px);
  border-color: var(--hsbp-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.25);
}

.counter-dot {
  width: 8px;
  height: 8px;
  background: var(--hsbp-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--hsbp-green);
  animation: counterPulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes counterPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.5; }
}

.counter-text {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.counter-count {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--hsbp-gold-light);
  letter-spacing: 0.02em;
}

.counter-label {
  font-size: 0.72rem;
  color: var(--hsbp-text-muted);
  font-weight: 600;
}

/* Global Responsive Protection */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

/* Responsive Media Queries */
@media (max-width: 1120px) {
  .nav-list { gap: 0.85rem; }
  .nav-link { font-size: 0.82rem; }
  .nav-actions { margin-left: 0.75rem; gap: 0.5rem; }
  .btn-outline-gold, .btn-primary-green { padding: 0.55rem 0.85rem; font-size: 0.82rem; }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  .site-header { padding: 0.75rem 0; }
  .nav-container { padding: 0 1rem; }
  
  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(5, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--hsbp-navy-border);
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
    z-index: 999;
  }
  
  .nav-list.active {
    transform: translateY(0);
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-section { padding: 5rem 0 3.5rem; }
  .hero-title { font-size: 2.35rem; }
  .hero-crest-img { max-width: 260px; }
  
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .trust-item:nth-child(2) { border-right: none; }
  
  .pane-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .compliance-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: 1fr; }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .calc-card { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .csuite-top-grid { grid-template-columns: 1fr; }
  .vp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  
  /* Section Spacing */
  .hero-section { padding: 4rem 0 2.5rem; }
  .trust-bar { padding: 1.5rem 0; margin-top: -1.5rem; }
  .problem-section, .suite-section, .compliance-section, .custom-section, .calc-section, .security-section, .leadership-section, .faq-section, .contact-section {
    padding: 3.5rem 0;
  }

  /* Hero */
  .hero-crest-img { max-width: 210px; }
  .hero-title { font-size: 1.85rem; line-height: 1.25; }
  .hero-desc { font-size: 0.95rem; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 0.75rem; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.25rem 1rem; }
  .trust-item { border-right: none !important; }
  .trust-number { font-size: 1.8rem; }
  .trust-label { font-size: 0.75rem; }

  /* Business Suite */
  .suite-tabs { grid-template-columns: 1fr; gap: 0.75rem; }
  .suite-tab-btn { padding: 1rem; width: 100%; }
  .tab-icon-img { width: 64px; height: 64px; }
  .suite-tab-pane { padding: 1.5rem 1.25rem; }
  .pane-content h3 { font-size: 1.35rem; }
  .pane-action { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .pane-action .btn { width: 100%; justify-content: center; }
  
  /* Mockup windows overflow fix */
  .mockup-window { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .mockup-body { padding: 1rem; }
  
  /* Compliance Hub */
  .compliance-box { padding: 1.75rem 1.25rem; }
  .compliance-header { flex-direction: column; text-align: center; gap: 1.25rem; }
  .compliance-pillars-grid { grid-template-columns: 1fr; gap: 1rem; }
  .compliance-frameworks-bar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .framework-pills { flex-wrap: wrap; gap: 0.4rem; }
  
  /* Bespoke App */
  .custom-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .custom-cta-box { flex-direction: column; text-align: center; padding: 2rem 1.25rem; gap: 1.5rem; }
  .custom-cta-box .btn { width: 100%; justify-content: center; }

  /* ROI Calculator */
  .calc-card { padding: 1.75rem 1.25rem; gap: 2rem; }
  .calc-controls h3 { font-size: 1.3rem; }
  .result-highlight { padding: 1.5rem 1.25rem; }
  .res-number { font-size: 1.9rem; }
  .res-meta { flex-direction: column; gap: 0.75rem; }

  /* Leadership & Team */
  .ceo-solo-card { width: 100%; }
  .leader-card { flex-direction: column; text-align: center; padding: 1.75rem 1.25rem; gap: 1.25rem; }
  .leader-avatar-wrap { width: 100px; height: 100px; margin: 0 auto; }
  .leader-details { align-items: center; }
  .leader-details h3 { font-size: 1.3rem; }
  .vp-grid { grid-template-columns: 1fr; gap: 1rem; }
  .vp-card { padding: 1.5rem 1rem; }
  .team-toggle-btn { width: 100%; justify-content: center; font-size: 0.9rem; }

  /* FAQ */
  .faq-question { padding: 1.25rem 1rem; font-size: 0.95rem; }
  .faq-answer { padding: 0 1rem; }
  .faq-item.active .faq-answer { padding: 0 1rem 1.25rem; }

  /* Contact / Lead */
  .contact-card { padding: 2rem 1.25rem; }
  .contact-header h2 { font-size: 1.65rem; }
  .form-row { grid-template-columns: 1fr; gap: 1rem; }
  .direct-contact-box { padding: 1.5rem 1.25rem; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo { height: 90px; }
  .bottom-flex { flex-direction: column; text-align: center; gap: 0.75rem; }

  /* Floating Widgets on Mobile */
  .floating-wa-wrap {
    bottom: 1.25rem;
    right: 1.25rem;
  }
  .floating-wa-btn {
    width: 54px;
    height: 54px;
  }
  .floating-wa-icon {
    width: 28px;
    height: 28px;
  }
  .floating-wa-tooltip {
    display: none; /* Hide hover tooltip on touch devices to prevent clutter */
  }

  .visitor-counter-wrap {
    bottom: 5.4rem;
    right: 1.25rem;
    padding: 0.35rem 0.75rem;
  }
  .counter-count { font-size: 0.82rem; }
  .counter-label { font-size: 0.65rem; }

  /* Modal Responsive on Mobile */
  .black-coffee-modal-overlay {
    padding: 0.85rem;
    align-items: center;
  }
  .black-coffee-modal-card {
    padding: 1.6rem 1.15rem 1.25rem;
    max-height: 88vh;
    border-radius: var(--radius-lg);
  }
  .modal-close-btn {
    top: 0.75rem;
    right: 0.75rem;
    width: 30px;
    height: 30px;
    font-size: 1.15rem;
  }
  .modal-badge-row {
    margin-bottom: 0.6rem;
    gap: 0.35rem;
  }
  .badge-coffee-gold, .badge-coffee-live {
    font-size: 0.62rem;
    padding: 0.2rem 0.5rem;
  }
  .modal-title {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }
  .modal-desc {
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 0.75rem;
  }
  .modal-offer-box {
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.85rem;
  }
  .offer-price-tag {
    margin-bottom: 0.6rem;
    padding-bottom: 0.5rem;
  }
  .offer-label {
    font-size: 0.68rem;
  }
  .price-flex {
    gap: 0.5rem;
  }
  .price-main {
    font-size: 1.35rem;
  }
  .price-tagline {
    font-size: 0.72rem;
    padding: 0.1rem 0.4rem;
  }
  .offer-perks {
    gap: 0.45rem;
  }
  .offer-perks li {
    font-size: 0.74rem;
    gap: 0.45rem;
    line-height: 1.35;
  }
  .perk-icon {
    width: 14px;
    height: 14px;
  }
  .modal-actions {
    gap: 0.5rem;
  }
  .btn-coffee-cta {
    padding: 0.75rem 0.85rem;
    font-size: 0.82rem;
    width: 100%;
    box-sizing: border-box;
    white-space: normal !important;
  }
  .btn-text-dismiss {
    font-size: 0.72rem;
    padding: 0.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.6rem; }
  .trust-grid { grid-template-columns: 1fr; text-align: center; }
  .trust-item { border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 0.75rem; }
  .trust-item:last-child { border-bottom: none; }
  .top-bar-content { flex-direction: column; gap: 0.25rem; text-align: center; }
  .top-bar p { font-size: 0.75rem; }
}

