/* ==========================================================================
   PRINTAK ROYAL - MAIN STYLES (ELEVIQ LAYOUT)
   ========================================================================== */

/* ------------------ NAVIGATION (Pill Island) ------------------ */
.header-island {
  position: sticky;
  top: 16px;
  z-index: 100;
  margin-bottom: 8px;
}

.nav-pill-bar {
  background: var(--bg-card);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-pill);
  border: 1px solid var(--border-subtle);
  max-width: 1440px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-symbol {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-center-menu {
  display: none;
  align-items: center;
  gap: 4px;
  background: var(--bg-card-subtle);
  padding: 4px 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  list-style: none;
  margin: 0;
}

.nav-center-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

@media (min-width: 900px) {
  .nav-center-menu {
    display: flex;
  }
}

.nav-item-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.nav-item-pill:hover {
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.04);
}

.nav-item-pill.active {
  background: var(--accent-lime);
  color: var(--accent-lime-text);
  font-weight: 700;
}

.nav-search-wrapper {
  display: none;
  align-items: center;
  background: var(--bg-card-subtle);
  border-radius: var(--radius-pill);
  padding: 4px 6px 4px 16px;
  border: 1px solid var(--border-subtle);
  max-width: 220px;
  flex: 1;
}

@media (min-width: 1100px) {
  .nav-search-wrapper {
    display: flex;
  }
}

.nav-search-input {
  border: none;
  background: transparent;
  font-size: 0.86rem;
  width: 100%;
  outline: none;
  color: var(--text-primary);
}

.nav-search-input::placeholder {
  color: var(--text-muted);
}

.nav-search-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: var(--bg-dark-pill);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 640px) {
  .nav-actions {
    gap: 12px;
  }
}

.nav-quote-desktop {
  display: none;
  background: var(--brand-blue);
  color: #ffffff;
  border: 1px solid var(--brand-blue);
  font-weight: 700;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-quote-desktop:hover {
  background: var(--brand-blue-hover);
  border-color: var(--brand-blue-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(53, 100, 173, 0.35);
}

@media (min-width: 768px) {
  .nav-quote-desktop {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

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

.mobile-nav-drawer {
  display: none;
  background: var(--bg-card);
  border-radius: var(--radius-card-sm);
  margin-top: 8px;
  padding: 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-float);
  flex-direction: column;
  gap: 12px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-nav-drawer.open {
  display: flex;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--bg-card-subtle);
  color: var(--brand-blue);
}

.toggle-switch-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

.toggle-switch {
  width: 38px;
  height: 22px;
  background: #E4E5E9;
  border-radius: var(--radius-pill);
  position: relative;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle-switch.active {
  background: var(--brand-orange);
}

.toggle-switch-thumb {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-fast);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.toggle-switch.active .toggle-switch-thumb {
  transform: translateX(16px);
}

/* ------------------ HERO SECTION (Eleviq Bento) ------------------ */
.hero-island {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .hero-island {
    gap: 24px;
  }
}

.hero-main-card {
  background: linear-gradient(135deg, #e7effb 0%, #f7eede 100%);
  border-radius: 24px;
  padding: 28px 18px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  border: 1px solid rgba(53, 100, 173, 0.12);
}

@media (min-width: 768px) {
  .hero-main-card {
    border-radius: var(--radius-card);
    padding: 44px 32px;
  }
}

@media (min-width: 960px) {
  .hero-main-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    border-radius: var(--radius-card-lg);
    padding: 64px 56px 64px;
    min-height: 520px;
    align-items: stretch;
  }
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-left-content {
    gap: 24px;
  }
}

.hero-headline-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-subtext {
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 440px;
}

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

.hero-subtext strong {
  color: var(--text-primary);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 4px;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
  }
}

/* Hero Visual Composition */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

@media (min-width: 640px) {
  .hero-visual-wrapper {
    min-height: 360px;
  }
}

@media (min-width: 960px) {
  .hero-visual-wrapper {
    min-height: 460px;
    height: 100%;
  }
}

.hero-backdrop-capsule {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 9999px 24px 24px 9999px;
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(0, 0, 0, 0.15);
  background: transparent;
  display: flex;
}

@media (min-width: 768px) {
  .hero-backdrop-capsule {
    border-radius: 9999px 40px 40px 9999px;
  }
}

.hero-backdrop-capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  opacity: 1;
  transition: transform 8s ease;
}

.hero-main-card:hover .hero-backdrop-capsule img {
  transform: scale(1.06);
}

.hero-front-mockup {
  position: relative;
  z-index: 3;
  width: 92%;
  max-width: 420px;
  transform: rotate(-2deg) translateY(-4px);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.2));
  transition: transform var(--transition-smooth);
}

@media (min-width: 768px) {
  .hero-front-mockup {
    width: 78%;
    transform: rotate(-3deg) translateY(-8px);
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.25));
  }
}

.hero-main-card:hover .hero-front-mockup {
  transform: rotate(0deg) translateY(-10px) scale(1.02);
}

.hero-front-mockup img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

/* Hero Floating Bento Bottom Row */
.hero-stats-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 700px) {
  .hero-stats-row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.stat-bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-card-sm);
  padding: 24px 28px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
}

.stat-bento-card.highlight-lime {
  background: var(--accent-lime);
  border-color: transparent;
  color: var(--accent-lime-text);
}

.trust-avatar-stack {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-group {
  display: flex;
}

.avatar-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  object-fit: cover;
  background: #ccc;
}

.avatar-chip:first-child {
  margin-left: 0;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 0.95rem;
}

.rating-badge svg {
  color: #F59E0B;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-bento-card.highlight-lime .stat-label-wrap {
  color: rgba(17, 20, 6, 0.8);
}

.badge-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(17, 18, 21, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-bento-card.highlight-lime .badge-check-icon {
  background: rgba(17, 20, 6, 0.14);
}

/* ------------------ HORIZONTAL CAROUSEL SECTION (Who Is This For) ------------------ */
.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 800px) {
  .section-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.header-text-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cards-horizontal-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.cards-horizontal-scroll::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 12px 12px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-smooth);
}

@media (min-width: 768px) {
  .showcase-card {
    flex: 0 0 360px;
  }
}

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

.showcase-card-img-wrap {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-nested);
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #f0f5fc 0%, #fdf8f2 100%);
}

.showcase-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.showcase-card:hover .showcase-card-img-wrap img {
  transform: scale(1.05);
}

.card-floating-chips {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
}

.glass-tag-chip {
  padding: 5px 12px;
  background: rgba(18, 19, 22, 0.7);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.showcase-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.showcase-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.showcase-card-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.showcase-card:hover .showcase-card-btn {
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  color: var(--accent-lime-text);
  transform: rotate(45deg);
}

/* ------------------ PROBLEMS & SOLUTIONS (Numbered Stack + Large Photo Bento) ------------------ */
.bento-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 960px) {
  .bento-split-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.numbered-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bento-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 20px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .bento-card {
    border-radius: var(--radius-card);
    padding: 32px;
  }
}

.stat-bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-card-sm);
  padding: 18px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

@media (min-width: 640px) {
  .stat-bento-card {
    padding: 24px 28px;
    min-height: 140px;
  }
}

/* ------------------ WHO WE ARE SECTION (ELEVIQ BENTO) ------------------ */
.who-we-are-island {
  position: relative;
}

.who-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 992px) {
  .who-story-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
  }
}

.who-story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-card-capsule {
  background: linear-gradient(145deg, #f7f9fd 0%, #edf2fa 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth);
}

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

.mascot-img-display {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(53, 100, 173, 0.12));
}

.mascot-brand-title {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
}

.mascot-brand-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-top: 4px;
}

/* Vision & Mission Grid */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.vm-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

@media (min-width: 640px) {
  .vm-card {
    padding: 38px 34px;
  }
}

.vm-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.vm-card.vm-vision {
  border-top: 4px solid var(--brand-blue);
}

.vm-card.vm-mission {
  border-top: 4px solid var(--brand-orange);
}

.vm-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--bg-card-subtle);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.vm-card.vm-mission .vm-icon-bubble {
  color: var(--brand-orange);
}

/* Why Us 4 Pillars Grid */
.why-pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .why-pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .why-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.pillar-card {
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card-sm);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.pillar-card:hover {
  background: white;
  border-color: rgba(53, 100, 173, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.pillar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.pillar-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.numbered-row-card {
  background: var(--bg-card);
  border-radius: var(--radius-card-sm);
  padding: 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

@media (min-width: 640px) {
  .numbered-row-card {
    padding: 24px 28px;
    gap: 24px;
    align-items: center;
  }
}

.num-display {
  font-size: 2.2rem;
  font-weight: 800;
  color: #D6D8DE;
  line-height: 1;
  letter-spacing: -0.04em;
  min-width: 44px;
  transition: color var(--transition-fast);
}

@media (min-width: 640px) {
  .num-display {
    font-size: 3rem;
    min-width: 65px;
  }
}

.numbered-row-card:hover .num-display {
  color: var(--text-primary);
}

.num-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.num-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.num-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.photo-feature-bento {
  background: #252830;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: white;
}

.photo-feature-bento img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.photo-feature-bento::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.photo-feature-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-feature-content h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.floating-pill-badge-box {
  position: absolute;
  bottom: 28px;
  right: 28px;
  z-index: 3;
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: var(--radius-card-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow-float);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-pill-badge-box .badge-time {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

/* ------------------ CAPABILITIES & PRODUCTS GRID ------------------ */
.filter-tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 32px;
}

.filter-pill-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.filter-pill-btn:hover {
  color: var(--text-primary);
  background: var(--bg-card-subtle);
}

.filter-pill-btn.active {
  background: var(--accent-lime);
  color: var(--accent-lime-text);
  font-weight: 700;
  border-color: transparent;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

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

.product-bento-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 16px 16px 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform var(--transition-smooth);
}

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

.product-visual-stage {
  background: linear-gradient(180deg, #f0f5fc 0%, #fdf9f4 100%);
  border-radius: var(--radius-nested);
  height: 240px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid rgba(53, 100, 173, 0.06);
}

.product-visual-stage img {
  max-height: 100%;
  object-fit: contain;
  transition: transform var(--transition-smooth);
}

.product-bento-card:hover .product-visual-stage img {
  transform: scale(1.08);
}

.stage-badge-chips {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-micro-pill {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.product-specs {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.product-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.product-lead-time {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.product-action-pill-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.product-bento-card:hover .product-action-pill-btn {
  background: var(--accent-lime);
  border-color: var(--accent-lime);
  color: var(--accent-lime-text);
  transform: scale(1.06);
}

/* ------------------ WHY PRINTAK ROYAL BENTO (4 Cards) ------------------ */
.why-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .why-bento-grid {
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
  }
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 24px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

@media (min-width: 640px) {
  .why-card {
    padding: 36px;
    min-height: 260px;
  }
}

.why-card.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .why-card.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.highlight-card-text {
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .highlight-card-text {
    padding: 36px;
  }
}

.highlight-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .highlight-card-img {
    height: 100%;
    min-height: 240px;
  }
}

.why-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-pill);
  background: var(--bg-card-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* ------------------ CONTACT US SECTION (ELEVIQ BENTO) ------------------ */
.contact-island {
  position: relative;
  margin-bottom: 32px;
}

.contact-bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .contact-bento-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: start;
  }
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-card-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

@media (min-width: 640px) {
  .contact-card {
    padding: 36px 32px;
  }
}

.contact-card.info-card {
  background: linear-gradient(175deg, #ffffff 0%, #f4f6fa 100%);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(53, 100, 173, 0.08);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.contact-detail-item:hover .contact-icon-bubble {
  transform: scale(1.08);
  background: rgba(53, 100, 173, 0.16);
}

.contact-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.contact-detail-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-link {
  color: var(--brand-blue);
  font-weight: 700;
  transition: color var(--transition-fast);
}

.contact-link:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

.contact-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-blue-surface);
  color: var(--brand-blue);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(53, 100, 173, 0.2);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.contact-map-btn:hover {
  background: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(53, 100, 173, 0.25);
}

/* Google Maps Bento Preview Box */
.contact-map-preview-wrapper {
  margin: 10px 0 0 0;
  border-radius: var(--radius-card-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  background: #eef2f7;
}

.contact-map-preview-wrapper iframe {
  display: block;
  border: 0;
  filter: saturate(1.1) contrast(1.02);
}

.contact-map-overlay-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.82rem;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-map-overlay-bar .map-tag {
  font-weight: 700;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-map-overlay-bar .map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  color: var(--brand-blue);
  background: var(--brand-blue-surface);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.78rem;
  transition: all var(--transition-fast);
}

.contact-map-overlay-bar .map-link-btn:hover {
  background: var(--brand-blue);
  color: #ffffff;
}

.contact-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.contact-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226, 137, 37, 0.1);
  color: var(--brand-orange);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-trust-badge .trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-orange);
}

/* Contact Form */
.form-card-header {
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field-label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 6px;
}

.contact-textarea {
  border-radius: 20px !important;
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.contact-form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

@media (min-width: 520px) {
  .contact-form-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-form-actions button {
  width: 100%;
  justify-content: center;
}

@media (min-width: 520px) {
  .contact-form-actions button {
    width: auto;
  }
}

/* ------------------ INTERACTIVE RFQ / QUOTE CALCULATOR MODAL ------------------ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 18, 21, 0.6);
  backdrop-filter: blur(8px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.modal-capsule {
  background: var(--bg-card);
  width: 100%;
  max-width: 680px;
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: var(--shadow-float);
  border: 1px solid var(--border-light);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

@media (min-width: 640px) {
  .modal-capsule {
    border-radius: var(--radius-card-lg);
    padding: 36px;
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

@media (min-width: 640px) {
  .modal-close-btn {
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
  }
}

.modal-close-btn:hover {
  background: var(--bg-dark-pill);
  color: white;
}

.rfq-step-indicator {
  display: flex;
  gap: 8px;
  margin: 16px 0 24px;
}

.rfq-step-bar {
  flex: 1;
  height: 4px;
  border-radius: var(--radius-pill);
  background: #E2E4E8;
}

.rfq-step-bar.active {
  background: var(--brand-orange);
}

.input-pill-field {
  width: 100%;
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 10px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

@media (min-width: 640px) {
  .input-pill-field {
    padding: 12px 20px;
    font-size: 0.92rem;
  }
}

.input-pill-field:focus {
  border-color: var(--text-primary);
  background: white;
}

.choice-chip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 480px) {
  .choice-chip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.choice-chip {
  padding: 10px 14px;
  border-radius: var(--radius-card-sm);
  background: var(--bg-card-subtle);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

@media (min-width: 640px) {
  .choice-chip {
    padding: 12px 16px;
    font-size: 0.88rem;
  }
}

.choice-chip.selected {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #FFFFFF;
  font-weight: 700;
}

.form-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 520px) {
  .form-dual-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-island .brand-symbol {
  width: 44px;
  height: 44px;
}

.footer-island .brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-island {
  background: var(--bg-card);
  border-radius: var(--radius-card-lg);
  padding: 48px 40px 36px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-link-pill {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-card-subtle);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-link-pill:hover {
  background: var(--bg-dark-pill);
  color: white;
}

.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  font-size: 0.84rem;
  color: var(--text-muted);
}

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

/* ==========================================================================
   MOBILE & SMALL SCREEN RESPONSIVENESS ENHANCEMENTS
   ========================================================================== */
@media (max-width: 767px) {
  /* Hero section adjustments */
  .heading-hero {
    font-size: clamp(1.85rem, 7.5vw, 2.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .hero-main-card {
    padding: 22px 16px 24px;
    gap: 22px;
  }

  .hero-subtext {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-visual-wrapper {
    min-height: 220px;
    max-height: 300px;
  }

  .hero-backdrop-capsule {
    border-radius: 20px;
  }

  .hero-cta-group {
    width: 100%;
  }

  .hero-cta-group .btn-pill-dark,
  .hero-cta-group .btn-pill-lime {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-cta-group .btn-pill-dark {
    position: relative;
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-cta-group .btn-pill-dark span {
    flex: 1;
    text-align: center;
  }

  .hero-cta-group .btn-pill-dark .icon-badge {
    position: absolute;
    right: 8px;
  }

  /* Section Headings */
  .heading-section {
    font-size: clamp(1.6rem, 6.2vw, 2.2rem);
  }

  /* Showcase / Products Horizontal Scroll */
  .showcase-card {
    flex: 0 0 280px;
  }

  .showcase-card-img-wrap {
    height: 300px;
  }

  /* Mascot & Who We Are */
  .mascot-card-capsule {
    padding: 28px 20px;
  }

  .mascot-img-display {
    max-width: 220px;
  }

  /* Vision & Mission Grid - Compact Sideways Scroll on Mobile */
  .vision-mission-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 4px 14px;
    margin: 0 -8px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .vision-mission-grid::-webkit-scrollbar {
    display: none;
  }

  .vm-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: center;
    padding: 22px 18px;
  }

  .vm-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }

  .vm-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Numbered Rows (Brand Development) - Clean Compact Cards */
  .numbered-stack {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 4px 14px;
    margin: 0 -8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .numbered-stack::-webkit-scrollbar {
    display: none;
  }

  .numbered-row-card {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: center;
    padding: 18px 16px;
    gap: 12px;
    align-items: flex-start;
  }

  .num-display {
    font-size: 1.8rem;
    min-width: 34px;
  }

  .num-title {
    font-size: 1rem;
  }

  .num-desc {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  /* Filter Pills */
  .filter-tabs-wrapper {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 4px 8px 12px;
    margin: 12px -8px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filter-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }

  .filter-pill-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 0.84rem;
  }

  /* Services / Products Section - Sideways Scrollable Catalogue */
  .products-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 6px 20px;
    margin: 0 -10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-bento-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
    margin-bottom: 0;
  }

  .product-visual-stage {
    height: 210px;
  }

  /* Capabilities Highlight Card */
  .highlight-card-text {
    padding: 22px 18px;
  }

  .highlight-card-text .btn-pill-dark {
    width: 100%;
    justify-content: space-between;
  }

  /* Contact Us Bento & Map */
  .contact-card {
    padding: 22px 16px;
    gap: 16px;
  }

  .contact-details-list {
    gap: 14px;
  }

  .contact-detail-item {
    gap: 12px;
  }

  .contact-icon-bubble {
    width: 36px;
    height: 36px;
  }

  .contact-detail-val {
    font-size: 0.88rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .contact-map-preview-wrapper {
    margin-top: 6px;
  }

  .contact-map-preview-wrapper iframe {
    height: 160px;
  }

  .contact-map-overlay-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    gap: 6px;
  }

  .contact-map-overlay-bar .map-tag {
    font-size: 0.76rem;
  }

  .contact-map-overlay-bar .map-link-btn {
    width: auto;
    padding: 4px 10px;
  }

  /* Footer */
  .footer-island {
    padding: 32px 20px 24px;
    gap: 28px;
  }

  .footer-links-group {
    gap: 10px;
  }

  .footer-link-pill {
    padding: 7px 14px;
    font-size: 0.84rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom-row div {
    flex-direction: column;
    gap: 8px !important;
  }

  /* Modal Capsule on Mobile */
  .modal-capsule {
    padding: 22px 16px;
    max-height: 94vh;
  }
}

@media (max-width: 420px) {
  .nav-brand {
    font-size: 0.98rem;
    gap: 8px;
    padding-left: 4px;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .showcase-card {
    flex: 0 0 86vw;
  }
}

