/* ========================================
   PRODUK PAGE - Modern Product Showcase
   GL++ Software Akuntansi
   ======================================== */

/* Mobile Touch Optimization */
@media (hover: none) and (pointer: coarse) {
  .tab-btn,
  .cta-btn-primary,
  .cta-btn-secondary,
  .screenshot-item,
  .diagram-card {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .tab-btn:active {
    transform: scale(0.98);
  }
  
  .screenshot-item:active,
  .diagram-card:active {
    transform: scale(0.99);
  }
}

/* Hero Section */
.produk-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.produk-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.produk-hero-content {
  text-align: center;
  color: #fff;
}

.produk-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.produk-hero h1 span {
  color: var(--accent-orange);
}

.produk-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #fff;
}

.hero-badge i {
  color: var(--accent-orange);
}

/* ========================================
   INTERACTIVE FEATURE TABS
   ======================================== */
.feature-tabs-section {
  padding: 100px 0;
  background: #f8fafc;
}

.feature-tabs-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.feature-tabs-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-tabs-section .section-header p {
  color: #64748b;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Tab Navigation */
.feature-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding: 10px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  padding: 15px 30px;
  border: none;
  background: transparent;
  border-radius: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn i {
  font-size: 1.2rem;
}

.tab-btn:hover {
  color: var(--primary-color);
  background: #f1f5f9;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  box-shadow: 0 5px 20px rgba(var(--primary-color-rgb), 0.3);
}

/* Tab Content */
.feature-tabs-content {
  position: relative;
}

.tab-pane {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.tab-pane.active {
  display: block;
}

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

/* Feature Card Layout */
.feature-card-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.feature-card-wrapper.reverse {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1;
  position: relative;
}

.feature-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.feature-image-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 5px 20px var(--secondary-color);
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-content > p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list li span {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list li strong {
  color: var(--primary-color);
}

/* ========================================
   SCREENSHOT GALLERY
   ======================================== */
.screenshot-section {
  padding: 50px 0 100px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  overflow: hidden;
}

.screenshot-section .container {
  max-width: 1200px;
  padding: 0 20px;
  overflow: hidden;
}

.screenshot-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.screenshot-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.screenshot-section .section-header p {
  color: #64748b;
  font-size: 1.1rem;
}

/* Screenshot Grid */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  grid-auto-rows: auto;
}

.screenshot-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  aspect-ratio: 16 / 9;
}

.screenshot-item a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.screenshot-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.screenshot-item:hover img {
  transform: scale(1.08);
}

.screenshot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(1, 78, 154, 0) 0%, rgba(1, 78, 154, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.screenshot-item:hover .screenshot-overlay {
  opacity: 1;
}

.screenshot-overlay h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
  line-height: 1.2;
}

.screenshot-overlay p {
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  margin: 0;
  line-height: 1.2;
}

.screenshot-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #014e9a;
  font-size: 1.1rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(1, 78, 154, 0.35);
}

.screenshot-item:hover .screenshot-zoom {
  transform: translate(-50%, -50%) scale(1);
}

/* Featured Screenshot */
.screenshot-item.featured {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 16 / 9;
}

.screenshot-item.featured .screenshot-overlay {
  padding: 18px;
}

.screenshot-item.featured .screenshot-overlay h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.screenshot-item.featured .screenshot-overlay p {
  font-size: 0.75rem;
}

.screenshot-item.featured .screenshot-zoom {
  width: 60px;
  height: 60px;
  font-size: 1.3rem;
}

/* ========================================
   BEFORE & AFTER COMPARISON
   ======================================== */
.comparison-section {
  padding: 100px 0;
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.comparison-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

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

.comparison-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.comparison-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.comparison-section .section-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

/* Comparison Cards */
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: stretch;
}

.comparison-card {
  background: #fff;
  border-radius: 25px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.comparison-card.before {
  border-top: 5px solid #ef4444;
}

.comparison-card.after {
  border-top: 5px solid var(--primary-color);
}

.comparison-card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 15px;
}

.comparison-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.comparison-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.comparison-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.before .comparison-icon {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #ef4444;
}

.after .comparison-icon {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: var(--primary-color);
}

.comparison-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}

.comparison-card-header span {
  font-size: 0.9rem;
  color: #64748b;
}

/* Comparison List */
.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f1f5f9;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.before .comparison-item-icon {
  background: #fef2f2;
  color: #ef4444;
}

.after .comparison-item-icon {
  background: #f0fdf4;
  color: var(--primary-color);
}

.comparison-item-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.comparison-item-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.comparison-list li span {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* VS Divider */
.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #e55a2b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* ========================================
   SOFTWARE DIAGRAM SECTION
   ======================================== */
.diagram-section {
  padding: 100px 0;
  background: #f8fafc;
}

.diagram-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.diagram-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.diagram-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.diagram-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.diagram-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.diagram-card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 20px 25px;
  color: #fff;
}

.diagram-card-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.diagram-card-body {
  padding: 20px;
}

.diagram-card-body img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.diagram-card-body img:hover {
  transform: scale(1.02);
}

/* ========================================
   CTA SECTION
   ======================================== */
.produk-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.produk-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.produk-cta-section .container {
  position: relative;
  z-index: 1;
}

.produk-cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.produk-cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: #fff;
  color: var(--primary-color);
  padding: 18px 40px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  color: var(--primary-color);
}

.cta-btn-secondary {
  background: transparent;
  color: #fff;
  padding: 18px 40px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
  .feature-card-wrapper {
    gap: 40px;
    padding: 40px;
  }
  
  .feature-tabs-section {
    padding: 80px 0;
  }
  
  .screenshot-section,
  .diagram-section {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .feature-card-wrapper,
  .feature-card-wrapper.reverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 35px;
  }
  
  .feature-image {
    order: -1;
  }
  
  .feature-image img {
    max-width: 100%;
  }
  
  .feature-list li {
    justify-content: flex-start;
    text-align: left;
  }
  
  .screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .screenshot-item.featured {
    grid-column: span 2;
  }
  
  .screenshot-item img {
    height: 220px;
  }
  
  .screenshot-item.featured img {
    height: 280px;
  }
  
  .comparison-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .comparison-vs {
    order: 2;
    margin: 10px 0;
  }
  
  .comparison-card.before {
    order: 1;
  }
  
  .comparison-card.after {
    order: 3;
  }
  
  .vs-circle {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .diagram-wrapper {
    grid-template-columns: 1fr;
  }
  
  .feature-tabs-section,
  .screenshot-section,
  .comparison-section,
  .diagram-section,
  .produk-cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .produk-hero {
    padding: 100px 0 50px;
  }
  
  .produk-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .produk-hero p {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  /* Section Titles */
  .ly-title-center h1,
  .section-header h2 {
    font-size: 1.75rem !important;
  }
  
  .ly-title-center h5 {
    font-size: 0.85rem;
  }
  
  .ly-title-center p,
  .section-header p {
    font-size: 0.95rem;
  }
  
  /* Feature Tabs - Mobile: Hide tabs, show all content */
  .feature-tabs-nav {
    display: none; /* Hide tab navigation on mobile */
  }
  
  /* Show all tab panes on mobile */
  .tab-pane {
    display: block !important;
    animation: none;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
  }

  .tab-pane:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  /* Add section title for each tab content */
  .tab-pane::before {
    content: attr(id);
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    border-radius: 6px;
    text-transform: capitalize;
  }
  
  .tab-btn {
    display: none; /* Hide individual tab buttons */
  }
  
  /* Feature Cards */
  .feature-card-wrapper {
    padding: 20px;
    border-radius: 20px;
  }
  
  .feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  
  .feature-content > p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 8px;
    border: none;
  }

  .feature-list li:last-child {
    border-bottom: none;
  }

  .feature-list li i {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
    flex-shrink: 0;
    margin-top: 0;
  }

  .feature-list li span {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .feature-image-badge {
    font-size: 0.75rem;
    padding: 8px 15px;
    top: -10px;
    right: -10px;
  }
  
  /* Screenshots */
  .screenshot-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .screenshot-item {
    border-radius: 15px;
  }
  
  .screenshot-item.featured {
    grid-column: span 1;
  }
  
  .screenshot-item.featured img {
    height: 200px;
  }
  
  .screenshot-item img {
    height: 200px;
  }
  
  .screenshot-overlay {
    padding: 15px;
  }
  
  .screenshot-overlay h4 {
    font-size: 1rem;
  }
  
  .screenshot-overlay p {
    font-size: 0.8rem;
  }
  
  .screenshot-zoom {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  /* Always show overlay on mobile for better UX */
  .screenshot-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(1, 78, 154, 0.85) 100%);
  }
  
  .screenshot-zoom {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }
  
  /* Comparison Cards */
  .comparison-card {
    padding: 20px;
    border-radius: 20px;
  }
  
  .comparison-card-image {
    height: 150px;
    margin-bottom: 20px;
  }
  
  .comparison-card-header {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .comparison-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .comparison-card-header h3 {
    font-size: 1.3rem;
  }
  
  .comparison-card-header span {
    font-size: 0.85rem;
  }
  
  .comparison-list li {
    padding: 12px 0;
    gap: 12px;
  }
  
  .comparison-item-icon {
    width: 22px;
    height: 22px;
    font-size: 0.65rem;
  }
  
  .comparison-item-img {
    width: 28px;
    height: 28px;
  }
  
  .comparison-list li span {
    font-size: 0.9rem;
  }
  
  /* Diagram Cards */
  .diagram-card-header {
    padding: 15px 20px;
  }
  
  .diagram-card-header h4 {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .diagram-card-header i {
    font-size: 0.9rem;
  }
  
  .diagram-card-body {
    padding: 15px;
  }
  
  /* CTA Section */
  .produk-cta-section h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
  
  .produk-cta-section p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    gap: 15px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 15px 30px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  /* Hero Section */
  .produk-hero {
    padding: 90px 0 40px;
  }
  
  .produk-hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .produk-hero p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .hero-badge {
    width: 100%;
    max-width: 250px;
    justify-content: center;
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  /* Section Spacing */
  .feature-tabs-section,
  .screenshot-section,
  .comparison-section,
  .diagram-section,
  .produk-cta-section {
    padding: 50px 0;
  }
  
  /* Section Titles */
  .ly-title-center,
  .section-header {
    margin-bottom: 30px;
  }
  
  .ly-title-center h1,
  .section-header h2 {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }
  
  .ly-title-center h5 {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  /* Feature Tabs */
  .feature-tabs-nav {
    margin-bottom: 30px;
  }
  
  .tab-btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  /* Feature Cards */
  .feature-card-wrapper {
    padding: 15px;
    gap: 20px;
  }
  
  .feature-content h3 {
    font-size: 1.25rem;
  }
  
  .feature-content > p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .feature-list li {
    padding: 8px 0;
  }
  
  .feature-list li span {
    font-size: 0.85rem;
  }
  
  .feature-image-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  /* Screenshots */
  .screenshot-item img {
    height: 180px;
  }
  
  .screenshot-item.featured img {
    height: 180px;
  }
  
  .screenshot-overlay {
    padding: 12px;
  }
  
  .screenshot-overlay h4 {
    font-size: 0.95rem;
  }
  
  .screenshot-overlay p {
    font-size: 0.75rem;
  }
  
  .screenshot-zoom {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  /* Comparison */
  .comparison-card {
    padding: 15px;
  }
  
  .comparison-card-image {
    height: 120px;
    margin-bottom: 15px;
  }
  
  .comparison-card-header h3 {
    font-size: 1.15rem;
  }
  
  .comparison-list li span {
    font-size: 0.85rem;
  }
  
  /* Diagram */
  .diagram-card-header h4 {
    font-size: 0.85rem;
  }
  
  /* CTA Section */
  .produk-cta-section {
    padding: 60px 0;
  }
  
  .produk-cta-section h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .produk-cta-section p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .produk-hero h1 {
    font-size: 1.3rem;
  }
  
  .ly-title-center h1,
  .section-header h2 {
    font-size: 1.3rem !important;
  }
  
  .feature-content h3 {
    font-size: 1.15rem;
  }
  
  .tab-btn {
    font-size: 0.8rem;
    padding: 10px;
  }
  
  .comparison-card-header {
    flex-direction: column;
    text-align: center;
  }
  
  .screenshot-item img {
    height: 160px;
  }
  
  .screenshot-item.featured img {
    height: 160px;
  }
  
  .screenshot-overlay h4 {
    font-size: 0.9rem;
  }
  
  .screenshot-overlay p {
    font-size: 0.7rem;
  }
}

/* Pre-Header Mobile Optimization */
@media (max-width: 991px) {
  .pre-header {
    padding: 10px 0;
  }
  
  .pre-header .left-info ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  
  .pre-header .left-info ul li {
    font-size: 0.85rem;
  }
  
  .pre-header .social-icons ul {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .pre-header .left-info ul li {
    font-size: 0.8rem;
  }
  
  .pre-header .left-info ul li a {
    padding: 5px 8px;
  }
  
  .pre-header .social-icons ul li a {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .pre-header {
    display: none; /* Hide pre-header on very small screens for cleaner look */
  }
}

/* About Hero Compact Mobile Optimization */
@media (max-width: 768px) {
  .about-hero-compact {
    min-height: 300px;
  }
  
  .hero-banner-compact {
    min-height: 300px;
  }
  
  .hero-content-compact {
    padding: 40px 0;
  }
  
  /* Override hero title size for produk page - tablet */
  .about-hero-compact .hero-title-compact {
    font-size: 1.75rem;
  }
  
  .hero-desc-compact {
    font-size: 0.95rem;
  }
  
  .hero-breadcrumb .breadcrumb {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
}

@media (max-width: 576px) {
  .about-hero-compact {
    min-height: 250px;
  }
  
  .hero-banner-compact {
    min-height: 250px;
  }
  
  .hero-content-compact {
    padding: 30px 0;
  }
  
  /* Override hero title size for produk page - mobile */
  .about-hero-compact .hero-title-compact {
    font-size: 1.5rem;
  }
  
  .hero-desc-compact {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .hero-breadcrumb .breadcrumb {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  
  .hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 5px;
  }
}

/* Footer Mobile Optimization */
@media (max-width: 768px) {
  footer .footer-content .row > div {
    margin-bottom: 30px;
  }
  
  footer .footer-content .row > div:last-child {
    margin-bottom: 0;
  }
  
  footer .footer-item h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  footer .footer-links li a,
  footer .newsletter-text {
    font-size: 0.9rem;
  }
  
  footer .instagram-grid {
    gap: 8px;
  }
  
  footer .footer-copyright {
    padding: 20px 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  footer {
    padding: 40px 0 0;
  }
  
  footer .footer-item h4 {
    font-size: 1rem;
  }
  
  footer .social-links {
    justify-content: center;
  }
  
  footer .newsletter-form {
    max-width: 100%;
  }
  
  footer .footer-copyright p {
    font-size: 0.8rem;
    line-height: 1.6;
  }
}
