/* ==========================================================================
   DIGITAL BEE — ENTERPRISE PRODUCT & ENGINEERING DESIGN SYSTEM
   "Build • Brand • Grow" | digitalbee.tech
   Signature Amber: #FFB800 | Slate Dark: #0F172A | Clean Light Surfaces
   ========================================================================== */

:root {
  /* Brand Yellows / Ambers */
  --amber-primary: #FFB800;
  --amber-hover: #E5A600;
  --amber-dark: #D97706;
  --amber-subtle: #FFFBEB;
  --amber-glow: rgba(255, 184, 0, 0.22);
  --amber-border: #FDE68A;

  /* Neutrals & Surfaces */
  --bg-body: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-card-alt: #F1F5F9;
  --bg-dark: #0F172A;
  --bg-dark-surface: #1E293B;
  --bg-dark-card: #1E293B;
  --bg-dark-border: #334155;

  /* Typography Colors */
  --text-dark: #0F172A;
  --text-sub: #1E293B;
  --text-body: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #FFFFFF;

  /* Borders */
  --border-light: #E2E8F0;
  --border-subtle: #EDF2F7;
  --border-focus: #FFB800;

  /* Accents */
  --success: #10B981;
  --success-light: #ECFDF5;
  --info: #3B82F6;
  --info-light: #EFF6FF;
  --whatsapp: #25D366;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 16px 36px -8px rgba(15, 23, 42, 0.1);
  --shadow-amber: 0 8px 24px rgba(255, 184, 0, 0.25);

  /* Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1240px;
  --nav-height: 74px;
  --transition: all 0.24s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1.5rem);
  font-size: 16px;
}

section[id], .section[id], .hero-section[id] {
  scroll-margin-top: calc(var(--nav-height) + 1.5rem);
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   TYPOGRAPHY & UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.amber-text {
  color: var(--amber-primary);
}

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

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-dark);
  background: var(--amber-subtle);
  border: 1px solid var(--amber-border);
  border-radius: var(--radius-full);
}

.eyebrow-badge.dark {
  background: rgba(255, 184, 0, 0.12);
  border-color: rgba(255, 184, 0, 0.3);
  color: #FCD34D;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--amber-primary);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.6rem;
  }
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 0;
  line-height: 1.6;
}

.section-header {
  margin-bottom: 2.75rem;
}

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

.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber-primary);
  color: #0F172A;
  box-shadow: 0 2px 8px rgba(255, 184, 0, 0.28);
}

.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 184, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--amber-primary);
  color: var(--amber-dark);
  background: var(--amber-subtle);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  border-color: var(--amber-primary);
  color: var(--amber-primary);
  background: rgba(255, 184, 0, 0.08);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #20BA5C;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.95rem 1.8rem;
  font-size: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* --------------------------------------------------------------------------
   STICKY HEADER & NAV
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.98);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-badge {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  background: var(--bg-card-alt);
  color: var(--text-muted);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-light);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
  }
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: -0.01em;
}

.nav-link:hover, .nav-link.active {
  color: var(--amber-dark);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber-primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-whatsapp-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.btn-whatsapp-icon:hover {
  background: #20BA5C;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.mobile-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .mobile-toggle-btn {
    display: none;
  }
}

.mobile-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   HERO / COVER SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--nav-height) + 3.5rem);
  padding-bottom: 5rem;
  background: radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero-h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

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

.hero-p {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.65;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--amber-dark);
  font-size: 0.95rem;
}

/* Featured Project Card in Hero */
.hero-visual {
  position: relative;
}

.featured-project-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.featured-project-card:hover {
  box-shadow: 0 22px 48px -10px rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
}

.fpc-header {
  padding: 1.25rem 1.5rem;
  background: var(--bg-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fpc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fpc-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 184, 0, 0.2);
  color: var(--amber-primary);
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255, 184, 0, 0.35);
  font-weight: 600;
}

.fpc-image-wrap {
  background: #0B1120;
  padding: 1rem;
  position: relative;
  cursor: pointer;
}

.fpc-img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.fpc-image-wrap:hover .fpc-img {
  transform: scale(1.02);
}

.zoom-hint {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.fpc-footer {
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.fpc-stat-item {
  display: flex;
  flex-direction: column;
}

.fpc-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fpc-stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   SECTION WRAPPERS
   -------------------------------------------------------------------------- */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section.alt-bg {
  background-color: #FFFFFF;
}

.section.dark-bg {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section.dark-bg h2,
.section.dark-bg h3,
.section.dark-bg h4 {
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   ABOUT DIGITAL BEE SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-intro-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 600px) {
  .capabilities-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (min-width: 640px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.capability-card {
  background: #FFFFFF;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.capability-card:hover {
  border-color: var(--amber-border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.capability-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-subtle);
  color: var(--amber-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.capability-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

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

/* --------------------------------------------------------------------------
   PROJECT OVERVIEW SPEC BAR
   -------------------------------------------------------------------------- */
.spec-bar {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 1.8rem;
  box-shadow: var(--shadow-xs);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.spec-cell {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber-dark);
  margin-bottom: 0.35rem;
}

.spec-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.spec-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Deliverable Pill List */
.badge-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--bg-card-alt);
  color: var(--text-sub);
  border: 1px solid var(--border-light);
}

.pill-badge.highlight {
  background: var(--amber-subtle);
  color: var(--amber-dark);
  border-color: var(--amber-border);
}

/* --------------------------------------------------------------------------
   BUSINESS CHALLENGE VS SOLUTION
   -------------------------------------------------------------------------- */
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .challenge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.challenge-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

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

.challenge-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: #EF4444;
  background: #FEF2F2;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  margin-bottom: 1rem;
}

.challenge-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.challenge-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* Solution Progression Pipeline */
.pipeline-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}

@media (min-width: 600px) and (max-width: 991px) {
  .pipeline-track {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .pipeline-track {
    grid-template-columns: repeat(6, 1fr);
  }
}

.pipeline-step {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-xs);
}

.pipeline-step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--amber-dark);
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
  display: none;
}

@media (min-width: 992px) {
  .pipeline-step:not(:last-child)::after {
    display: block;
  }
}

.pipeline-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--amber-subtle);
  color: var(--amber-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1rem;
}

.pipeline-step h5 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pipeline-step p {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   COMPLETE DIGITAL ECOSYSTEM (ARCHITECTURE DIAGRAM)
   -------------------------------------------------------------------------- */
.ecosystem-diagram-wrap {
  background: #0B1120;
  border-radius: var(--radius-lg);
  border: 1px solid #1E293B;
  padding: 2.5rem 2rem;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}

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

@media (min-width: 992px) {
  .eco-grid {
    grid-template-columns: 1fr auto 1.3fr auto 1fr;
  }
}

.eco-card {
  background: #1E293B;
  border: 1px solid #334155;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.eco-card:hover {
  border-color: var(--amber-primary);
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.15);
}

.eco-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid #334155;
}

.eco-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 184, 0, 0.15);
  color: var(--amber-primary);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.eco-card h4 {
  font-size: 1rem;
  color: #FFFFFF;
}

.eco-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.eco-list li {
  font-size: 0.8rem;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.eco-list li i {
  color: var(--amber-primary);
  font-size: 0.65rem;
}

.eco-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-primary);
  font-size: 1.4rem;
}

@media (max-width: 991px) {
  .eco-arrow-col {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }
}

/* --------------------------------------------------------------------------
   USER JOURNEY (HORIZONTAL WORKFLOW)
   -------------------------------------------------------------------------- */
.journey-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}

.journey-step-card {
  flex: 0 0 240px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-xs);
  position: relative;
}

.journey-step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--amber-dark);
  background: var(--amber-subtle);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-xs);
  display: inline-block;
  margin-bottom: 0.75rem;
}

.journey-step-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.journey-step-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   MOBILE APP EXPERIENCE SHOWCASE
   -------------------------------------------------------------------------- */
.screens-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.screen-tab-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  color: var(--text-body);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.screen-tab-btn:hover {
  border-color: var(--amber-primary);
  color: var(--amber-dark);
}

.screen-tab-btn.active {
  background: var(--amber-primary);
  color: #0F172A;
  border-color: var(--amber-primary);
  box-shadow: var(--shadow-amber);
}

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

@media (min-width: 768px) {
  .screens-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Smartphone Mockup Frame */
.phone-mockup {
  background: #000000;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.25), 0 0 0 1px #334155;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.phone-mockup:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 60px -12px rgba(15, 23, 42, 0.35), 0 0 0 2px var(--amber-primary);
}

.phone-speaker {
  width: 60px;
  height: 4px;
  background: #2D3748;
  border-radius: 4px;
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #FFFFFF;
  position: relative;
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.phone-caption {
  margin-top: 1.25rem;
  text-align: center;
}

.phone-caption h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.phone-caption p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   WEB ADMIN DASHBOARD SHOWCASE
   -------------------------------------------------------------------------- */
.browser-mockup {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.browser-mockup:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--amber-primary);
}

.browser-bar {
  background: #F1F5F9;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-light);
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot.red { background: #EF4444; }
.browser-dot.yellow { background: #F59E0B; }
.browser-dot.green { background: #10B981; }

.browser-url {
  flex: 1;
  background: #FFFFFF;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}

.browser-viewport {
  background: #0B1120;
  position: relative;
  overflow: hidden;
}

.browser-viewport img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   TECHNOLOGY STACK
   -------------------------------------------------------------------------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.tech-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.tech-card:hover {
  transform: translateY(-3px);
  border-color: var(--amber-primary);
  box-shadow: var(--shadow-sm);
}

.tech-card-cat {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--amber-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tech-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.tech-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   SECURITY & RELIABILITY PILLARS
   -------------------------------------------------------------------------- */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.security-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.security-card:hover {
  border-color: var(--amber-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.security-icon {
  width: 44px;
  height: 44px;
  background: #ECFDF5;
  color: #059669;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.security-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

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

/* --------------------------------------------------------------------------
   INTEGRATIONS SECTION
   -------------------------------------------------------------------------- */
.integrations-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.integration-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.integration-card:hover {
  border-color: var(--amber-primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.integration-icon {
  font-size: 2rem;
  color: var(--amber-dark);
}

.integration-card h4 {
  font-size: 0.95rem;
}

.integration-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   DEVELOPMENT PROCESS (7 STAGES)
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .process-card:last-child {
    grid-column: span 2;
  }
}

.process-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  border-color: var(--amber-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--amber-dark);
  margin-bottom: 0.5rem;
}

.process-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.process-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   CASE STUDY 02: ORDERMYCOSTUME
   -------------------------------------------------------------------------- */
.case-study-hero-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

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

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

.omc-screens-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .omc-screens-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.omc-screen-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.omc-screen-card:hover {
  border-color: var(--amber-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.omc-screen-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1px solid var(--border-light);
  display: block;
}

.omc-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.omc-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.omc-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   WHY DIGITAL BEE & CREDIBILITY
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  border-color: var(--amber-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--amber-subtle);
  color: var(--amber-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.cta-box {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  border-radius: var(--radius-xl);
  padding: 4.5rem 2.5rem;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid #334155;
  max-width: 1060px;
  margin: 0 auto;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .cta-h2 {
    font-size: 3rem;
  }
}

.cta-p {
  font-size: 1.1rem;
  color: #94A3B8;
  margin-bottom: 2.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cta-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .cta-contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.contact-pill:hover {
  background: rgba(255, 184, 0, 0.1);
  border-color: var(--amber-primary);
  transform: translateY(-2px);
}

.contact-pill i {
  font-size: 1.25rem;
  color: var(--amber-primary);
}

.contact-pill .label {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.contact-pill .value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Corporate Credentials & Address Cards */
.corporate-credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: left;
}

@media (min-width: 768px) {
  .corporate-credentials-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.corporate-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.corporate-card:hover {
  border-color: var(--amber-primary);
  background: rgba(255, 184, 0, 0.06);
}

.corporate-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.corporate-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  background: rgba(255, 184, 0, 0.18);
  color: var(--amber-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.corporate-card h4 {
  color: #FFFFFF;
  font-size: 1rem;
  margin: 0;
}

.corporate-card p {
  color: #CBD5E1;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.gst-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-xs);
  letter-spacing: 0.05em;
}

.gst-badge i {
  font-size: 0.8rem;
}

.footer-credentials-grid {
  padding: 1.8rem 0;
  border-top: 1px solid #1E293B;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: #94A3B8;
}

@media (min-width: 768px) {
  .footer-credentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0B1120;
  border-top: 1px solid #1E293B;
  padding: 3.5rem 0 2rem;
  color: #94A3B8;
  font-size: 0.85rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
  }
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.footer-nav a:hover {
  color: var(--amber-primary);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1E293B;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   IMAGE LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-caption {
  color: #FFFFFF;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  background: rgba(15, 23, 42, 0.8);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
}

.lightbox-close-btn {
  position: absolute;
  top: -45px;
  right: 0;
  color: #FFFFFF;
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close-btn:hover {
  background: var(--amber-primary);
  color: #0F172A;
}

/* --------------------------------------------------------------------------
   PRINT STYLES FOR PDF EXPORT
   -------------------------------------------------------------------------- */
@media print {
  @page {
    size: A4 portrait;
    margin: 12mm 10mm 12mm 10mm;
  }

  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    color-adjust: exact !important;
  }

  html, body {
    background-color: #FFFFFF !important;
    font-size: 14px;
    width: 100% !important;
    overflow: visible !important;
  }

  .site-header {
    position: relative !important;
    top: 0 !important;
    box-shadow: none !important;
    border-bottom: 1px solid #E2E8F0 !important;
    height: auto !important;
    padding: 0.8rem 0 !important;
    background: #FFFFFF !important;
  }

  .hero-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .desktop-nav, .header-actions, .mobile-toggle-btn, .mobile-drawer, .mobile-backdrop, .lightbox-modal {
    display: none !important;
  }

  .section {
    padding: 2.5rem 0 !important;
    page-break-inside: auto;
  }

  .section.alt-bg {
    background-color: #F8FAFC !important;
  }

  .featured-project-card, .spec-bar, .challenge-card, .capability-card, .eco-card, .security-card, .process-card, .why-card, .case-study-hero-card, .cta-box {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    box-shadow: none !important;
    border: 1px solid #CBD5E1 !important;
  }

  .screens-tab-nav {
    display: none !important;
  }

  .screen-card-item {
    display: block !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
    margin-bottom: 1.5rem;
  }

  .phone-mockup {
    box-shadow: none !important;
    border: 1px solid #334155 !important;
  }

  .browser-mockup {
    box-shadow: none !important;
    border: 1px solid #CBD5E1 !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .omc-screen-card {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .journey-scroller {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
    overflow: visible !important;
  }

  .journey-step-card {
    flex: none !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .cta-box {
    background: #0F172A !important;
    color: #FFFFFF !important;
  }

  .cta-box * {
    color: #FFFFFF !important;
  }

  .cta-contact-cards, .corporate-credentials-grid {
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }

  .site-footer {
    padding: 2rem 0 !important;
    background: #0B1120 !important;
    page-break-inside: avoid !important;
    break-inside: avoid !important;
  }
}

