/* ============================================
   Peptxis - Traditional Static Website Styles
   ============================================ */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f0f0f; background: #ffffff; line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Container */
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 80px; background: #fff; border-bottom: 1px solid #eaeaea;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }
.header-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
@media (min-width: 1024px) { .header-inner { padding: 0 40px; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { width: 32px; height: 32px; }
.logo-text { font-size: 20px; font-weight: 700; color: #0f0f0f; }

/* Desktop Nav */
.nav-desktop { display: none; align-items: center; gap: 4px; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link {
  position: relative; padding: 8px 16px; font-size: 15px; font-weight: 500;
  color: #292929; transition: all 0.3s ease;
}
.nav-link:hover { color: #6927DA; transform: translateY(-2px); }
.nav-link.active { color: #6927DA; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: #6927DA;
}

/* WhatsApp CTA */
.whatsapp-btn {
  display: none; align-items: center; gap: 8px;
  background: #22c55e; color: #fff; padding: 10px 20px;
  border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: all 0.25s ease;
}
.whatsapp-btn:hover { transform: scale(1.02); background: #16a34a; }
.whatsapp-btn svg { width: 16px; height: 16px; }
@media (min-width: 768px) { .whatsapp-btn { display: inline-flex; } }

/* Mobile Menu Button */
.mobile-menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px; background: #0f0f0f;
  transition: all 0.3s ease;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 40; background: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
  padding-top: 80px; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-size: 24px; font-weight: 600; color: #0f0f0f; transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: #6927DA; }
.mobile-menu .whatsapp-btn { display: inline-flex; margin-top: 16px; }

/* ============================================
   Hero Section (Carousel)
   ============================================ */
.hero { position: relative; width: 100%; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay-light {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,60,110,0.55) 0%, rgba(15,60,110,0.30) 40%, rgba(15,60,110,0) 70%);
}
.hero-overlay-dark {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
}
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 1024px) { .hero-content { padding: 0 40px; } }
.hero-title {
  font-size: clamp(40px, 5vw, 72px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.03em; color: #fff;
}
.hero-desc {
  margin-top: 24px; max-width: 480px; font-size: 18px; color: rgba(255,255,255,0.85);
}
.hero-buttons { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }
.btn-primary {
  display: inline-block; background: #6927DA; color: #fff;
  padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: all 0.25s ease;
}
.btn-primary:hover { transform: scale(1.02); background: #5a20c0; }
.btn-outline {
  display: inline-block; border: 1px solid rgba(255,255,255,0.3); color: #fff;
  padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Hero Navigation */
.hero-nav {
  position: absolute; bottom: 40px; left: 24px; right: 24px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .hero-nav { left: 40px; right: 40px; } }
.hero-nav-btns { display: flex; gap: 12px; }
.hero-nav-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.hero-nav-btn:hover { background: rgba(255,255,255,0.2); }
.hero-nav-btn svg { width: 20px; height: 20px; }
.hero-dots { display: flex; gap: 8px; }
.hero-dot {
  height: 10px; border-radius: 5px; background: rgba(255,255,255,0.4);
  transition: all 0.3s ease; cursor: pointer; border: none;
}
.hero-dot.active { width: 32px; background: #fff; }
.hero-dot:not(.active) { width: 10px; }
.hero-dot:not(.active):hover { background: rgba(255,255,255,0.7); }
.hero-counter {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7);
}
.hero-counter span { color: #fff; }

/* ============================================
   Section Headers
   ============================================ */
.section-header { margin-bottom: 48px; }
.section-header-flex {
  display: flex; flex-direction: column; gap: 16px;
  justify-content: space-between; align-items: flex-start;
}
@media (min-width: 640px) { .section-header-flex { flex-direction: row; align-items: center; } }
.section-title {
  font-size: clamp(32px, 3.5vw, 56px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.02em;
}
.section-title span { color: #6927DA; }
.section-subtitle { font-size: 16px; color: #737373; max-width: 360px; }
.section-desc { font-size: 16px; color: #737373; max-width: 560px; margin: 16px auto 0; }
.section-header-center { text-align: center; }

/* ============================================
   Product Cards
   ============================================ */
.products-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid.grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid.grid-4 { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  display: block; background: #fff; border: 1px solid #eaeaea;
  border-radius: 16px; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0, 0.4, 1);
}
.product-card:hover {
  transform: translateY(-6px); box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.product-card-img {
  aspect-ratio: 3/4; background: #f8f8f8;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  overflow: hidden;
}
.product-card-img img {
  max-height: 100%; max-width: 100%; object-fit: contain;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 24px; }
.product-card-tag {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: #6927DA;
}
.product-card-title { font-size: 18px; font-weight: 600; color: #0f0f0f; margin-top: 8px; }
.product-card-desc { font-size: 14px; color: #737373; margin-top: 4px; }
.product-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 12px; font-size: 14px; font-weight: 500; color: #6927DA;
}
.product-card-link svg { width: 16px; height: 16px; transition: transform 0.25s; }
.product-card:hover .product-card-link svg { transform: translateX(4px); }

/* ============================================
   Service Cards
   ============================================ */
.services-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: #fff; border: 1px solid #eaeaea; border-radius: 16px;
  padding: 40px; transition: all 0.3s ease;
}
.service-card:hover { border-color: #6927DA; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.service-card-icon { width: 48px; height: 48px; color: #6927DA; }
.service-card-title { font-size: 20px; font-weight: 600; color: #0f0f0f; margin-top: 24px; }
.service-card-desc { font-size: 14px; color: #737373; margin-top: 8px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; font-size: 14px; font-weight: 500; color: #6927DA;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section { background: #0f0f0f; padding: 96px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
}
@media (min-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 0 40px; gap: 48px; }
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: #6927DA;
}
.stat-label { font-size: 14px; color: #737373; margin-top: 8px; }

/* ============================================
   Contact CTA Cards
   ============================================ */
.contact-cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .contact-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  border: 1px solid #eaeaea; border-radius: 16px; padding: 40px;
  transition: all 0.3s ease;
}
.contact-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.contact-card-icon { width: 40px; height: 40px; color: #6927DA; }
.contact-card-title { font-size: 20px; font-weight: 600; color: #0f0f0f; margin-top: 24px; }
.contact-card-desc { font-size: 14px; color: #737373; margin-top: 8px; }
.contact-card-info { font-size: 14px; font-weight: 500; color: #6927DA; margin-top: 12px; }

/* ============================================
   Testimonial
   ============================================ */
.testimonial-card {
  max-width: 800px; margin: 0 auto; background: #fff;
  border-radius: 16px; padding: 48px; box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.testimonial-text { font-size: 22px; font-weight: 400; font-style: italic; line-height: 1.6; }
.testimonial-author { margin-top: 32px; }
.testimonial-author-name { font-size: 16px; font-weight: 600; }
.testimonial-author-role { font-size: 14px; color: #737373; }

/* ============================================
   News Cards
   ============================================ */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }

.news-card {
  display: flex; flex-direction: column; border: 1px solid #eaeaea;
  border-radius: 16px; overflow: hidden; transition: all 0.3s ease;
}
.news-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
@media (min-width: 640px) { .news-card { flex-direction: row; } }
.news-card-img {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
}
@media (min-width: 640px) { .news-card-img { width: 40%; aspect-ratio: auto; } }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card-img img { transform: scale(1.03); }
.news-card-body {
  flex: 1; padding: 24px; display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 1024px) { .news-card-body { padding: 32px; } }
.news-card-title { font-size: 18px; font-weight: 600; line-height: 1.4; color: #0f0f0f; }
.news-card:hover .news-card-title { color: #6927DA; }
.news-card-excerpt { font-size: 14px; color: #737373; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-meta { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.news-tag { font-size: 12px; font-weight: 500; color: #6927DA; background: #f4f0fe; padding: 4px 12px; border-radius: 999px; }
.news-date { font-size: 12px; color: #a3a3a3; }

/* ============================================
   Filter Pills
   ============================================ */
.filter-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.filter-pill {
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 500;
  transition: all 0.25s ease; cursor: pointer;
}
.filter-pill { background: #f8f8f8; color: #737373; }
.filter-pill:hover { background: #eaeaea; }
.filter-pill.active { background: #6927DA; color: #fff; }

/* ============================================
   Search Input
   ============================================ */
.search-box { position: relative; max-width: 560px; margin: 0 auto; }
.search-box svg { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: #a3a3a3; }
.search-box input {
  width: 100%; padding: 16px 20px 16px 52px; border-radius: 12px;
  border: none; font-size: 16px; color: #0f0f0f; outline: none;
}
.search-box input::placeholder { color: #a3a3a3; }

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb { font-size: 14px; color: #a3a3a3; margin-bottom: 24px; }
.breadcrumb a { transition: color 0.3s; }
.breadcrumb a:hover { color: #6927DA; }

/* ============================================
   Pagination
   ============================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.3s;
}
.pagination a { border: 1px solid #eaeaea; color: #737373; }
.pagination a:hover { background: #f8f8f8; }
.pagination span.active { background: #6927DA; color: #fff; }

/* ============================================
   Sidebar
   ============================================ */
.content-layout { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 1024px) { .content-layout { flex-direction: row; } }
.content-main { flex: 1; }
.content-sidebar { width: 100%; }
@media (min-width: 1024px) { .content-sidebar { width: 30%; } }

.sidebar-widget { margin-bottom: 32px; }
.sidebar-widget-title { font-size: 16px; font-weight: 600; color: #0f0f0f; margin-bottom: 16px; }
.sidebar-search { position: relative; }
.sidebar-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: #a3a3a3; }
.sidebar-search input {
  width: 100%; padding: 12px 16px 12px 48px; border: 1px solid #eaeaea;
  border-radius: 8px; font-size: 14px; outline: none; transition: border-color 0.3s;
}
.sidebar-search input:focus { border-color: #6927DA; }
.sidebar-cat-list li { margin-bottom: 4px; }
.sidebar-cat-list a {
  display: block; padding: 10px 16px; border-radius: 8px;
  font-size: 14px; color: #737373; transition: all 0.3s;
}
.sidebar-cat-list a:hover, .sidebar-cat-list a.active { color: #6927DA; background: #f4f0fe; font-weight: 500; border-left: 2px solid #6927DA; }
.sidebar-post { display: flex; gap: 12px; margin-bottom: 16px; }
.sidebar-post img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.sidebar-post-title { font-size: 13px; font-weight: 500; line-height: 1.4; color: #0f0f0f; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ============================================
   Product Detail
   ============================================ */
.product-detail-layout { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 1024px) { .product-detail-layout { flex-direction: row; gap: 64px; } }
.product-detail-img { width: 100%; }
@media (min-width: 1024px) { .product-detail-img { width: 45%; } }
.product-detail-img-inner { background: #fff; border-radius: 16px; padding: 32px; overflow: hidden; }
.product-detail-img-inner img { width: 100%; height: auto; object-fit: contain; }
.product-detail-info { flex: 1; }
.detail-category-tag {
  display: inline-block; background: #f4f0fe; color: #6927DA;
  padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
.detail-title { font-size: clamp(32px, 4vw, 56px); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; margin-top: 16px; }
.detail-desc { font-size: 16px; line-height: 1.7; color: #737373; margin-top: 16px; }
.detail-specs { margin-top: 24px; }
.detail-spec { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 14px; color: #737373; }
.detail-spec svg { width: 16px; height: 16px; color: #a3a3a3; flex-shrink: 0; }
.detail-spec strong { color: #0f0f0f; }
.detail-btns { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #22c55e; color: #fff; padding: 14px 28px;
  border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: all 0.25s ease;
}
.btn-whatsapp:hover { transform: scale(1.02); background: #16a34a; }

/* Tabs */
.tabs-nav { display: flex; border-bottom: 1px solid #eaeaea; margin-bottom: 32px; }
.tab-btn {
  padding: 16px 24px; font-size: 14px; font-weight: 500;
  color: #a3a3a3; border-bottom: 2px solid transparent;
  transition: all 0.25s; cursor: pointer; background: none;
}
.tab-btn:hover { color: #737373; }
.tab-btn.active { color: #0f0f0f; border-bottom-color: #6927DA; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-content { max-width: 800px; }
.tab-content p { font-size: 16px; line-height: 1.7; color: #292929; }
.tab-content ul { margin-top: 24px; }
.tab-content ul li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #737373; margin-bottom: 8px; }
.tab-content ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #6927DA; flex-shrink: 0; }

/* Specs Table */
.specs-table { width: 100%; max-width: 600px; }
.specs-table tr:nth-child(odd) { background: #f8f8f8; }
.specs-table td { padding: 12px 16px; font-size: 14px; }
.specs-table td:first-child { font-weight: 500; color: #0f0f0f; }
.specs-table td:last-child { color: #737373; }

/* App Grid */
.apps-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .apps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .apps-grid { grid-template-columns: repeat(4, 1fr); } }
.app-card { border: 1px solid #eaeaea; border-radius: 16px; padding: 24px; }
.app-card svg { width: 32px; height: 32px; color: #6927DA; }
.app-card-title { font-size: 16px; font-weight: 600; margin-top: 16px; }
.app-card-desc { font-size: 14px; color: #737373; margin-top: 4px; }

/* ============================================
   Services Page - OEM/ODM
   ============================================ */
.service-row-card {
  border: 1px solid #eaeaea; border-radius: 16px; overflow: hidden;
  transition: all 0.3s ease; margin-bottom: 32px;
}
.service-row-card:hover { border-color: #6927DA; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.service-row-inner { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .service-row-inner { flex-direction: row; } }
.service-row-left {
  display: flex; align-items: center; gap: 24px;
  padding: 32px; background: #f8f8f8; border-bottom: 1px solid #eaeaea;
}
@media (min-width: 1024px) {
  .service-row-left { width: 320px; flex-direction: column; align-items: flex-start; justify-content: center; border-bottom: none; border-right: 1px solid #eaeaea; padding: 40px; }
}
.service-row-num { font-size: 48px; font-weight: 800; color: rgba(105,39,218,0.15); }
@media (min-width: 1024px) { .service-row-num { font-size: 60px; } }
.service-row-icon { width: 48px; height: 48px; color: #6927DA; transition: transform 0.3s; }
.service-row-card:hover .service-row-icon { transform: scale(1.1); }
.service-row-right { flex: 1; padding: 32px; }
@media (min-width: 1024px) { .service-row-right { padding: 40px; } }
.service-row-title { font-size: clamp(20px, 1.8vw, 28px); font-weight: 700; line-height: 1.3; }
.service-row-desc { font-size: 16px; line-height: 1.7; color: #737373; margin-top: 16px; }
.service-row-highlights { display: grid; grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
@media (min-width: 640px) { .service-row-highlights { grid-template-columns: repeat(2, 1fr); } }
.highlight-item { display: flex; align-items: center; gap: 12px; }
.highlight-dot { width: 24px; height: 24px; border-radius: 50%; background: #f4f0fe; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.highlight-dot svg { width: 12px; height: 12px; color: #6927DA; }
.highlight-text { font-size: 14px; font-weight: 500; color: #292929; }

/* Quality Steps */
.quality-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .quality-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .quality-grid { grid-template-columns: repeat(4, 1fr); } }
.quality-card { background: #fff; border: 1px solid #eaeaea; border-radius: 16px; padding: 32px; transition: all 0.3s; }
.quality-card:hover { transform: translateY(-4px); box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.quality-step-num { font-size: 14px; font-weight: 700; color: rgba(105,39,218,0.3); margin-bottom: 8px; }
.quality-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: #f4f0fe; display: flex; align-items: center; justify-content: center; }
.quality-icon-wrap svg { width: 24px; height: 24px; color: #6927DA; }
.quality-card-title { font-size: 18px; font-weight: 600; margin-top: 20px; }
.quality-card-desc { font-size: 14px; color: #737373; line-height: 1.6; margin-top: 8px; }

/* ============================================
   About Page
   ============================================ */
.about-layout { display: flex; flex-direction: column; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-layout { flex-direction: row; gap: 80px; } }
.about-img { width: 100%; }
@media (min-width: 1024px) { .about-img { width: 45%; } }
.about-img img { border-radius: 16px; width: 100%; }
.about-text { flex: 1; }
.about-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #a3a3a3; }
.about-label-vi { color: #6927DA; }
.about-text p { font-size: 16px; line-height: 1.7; color: #292929; margin-top: 16px; }

/* Timeline */
.timeline { position: relative; max-width: 800px; margin: 0 auto; padding-left: 48px; }
@media (min-width: 1024px) { .timeline { padding-left: 0; } }
.timeline::before {
  content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: #eaeaea;
}
@media (min-width: 1024px) { .timeline::before { left: 50%; transform: translateX(-1px); } }
.timeline-entry { position: relative; margin-bottom: 48px; }
@media (min-width: 1024px) {
  .timeline-entry { display: flex; }
  .timeline-entry:nth-child(odd) { padding-right: calc(50% + 40px); text-align: right; }
  .timeline-entry:nth-child(even) { padding-left: calc(50% + 40px); }
}
.timeline-dot {
  position: absolute; left: -40px; top: 4px; width: 12px; height: 12px;
  border-radius: 50%; background: #6927DA; border: 3px solid #fff;
  box-shadow: 0 0 0 2px #eaeaea; z-index: 2;
}
@media (min-width: 1024px) { .timeline-dot { left: 50%; transform: translateX(-6px); } }
.timeline-year { font-size: 20px; font-weight: 700; color: #6927DA; }
.timeline-title { font-size: 18px; font-weight: 600; color: #0f0f0f; margin-top: 4px; }
.timeline-desc { font-size: 14px; color: #737373; margin-top: 4px; }

/* Marquee */
.marquee { overflow: hidden; padding: 40px 0; }
.marquee-track { display: flex; gap: 16px; animation: marquee 30s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-item { width: 200px; height: 140px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }

/* Advantages Grid */
.adv-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .adv-grid { grid-template-columns: repeat(2, 1fr); } }
.adv-card {
  border: 1px solid #eaeaea; border-radius: 16px; padding: 40px;
  transition: all 0.3s;
}
.adv-card:hover { border-color: #6927DA; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.adv-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: #f4f0fe; display: flex; align-items: center; justify-content: center; }
.adv-icon-wrap svg { width: 24px; height: 24px; color: #6927DA; }
.adv-card-title { font-size: 20px; font-weight: 600; margin-top: 24px; }
.adv-card-desc { font-size: 14px; color: #737373; line-height: 1.6; margin-top: 12px; }

/* Commitments */
.commitments-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .commitments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .commitments-grid { grid-template-columns: repeat(4, 1fr); } }
.commit-card {
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  padding: 32px; background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px); transition: all 0.3s;
}
.commit-card:hover { border-color: rgba(105,39,218,0.5); background: rgba(255,255,255,0.1); }
.commit-card svg { width: 32px; height: 32px; color: #6927DA; }
.commit-card-title { font-size: 18px; font-weight: 600; color: #fff; margin-top: 20px; }
.commit-card-desc { font-size: 14px; color: #a3a3a3; line-height: 1.6; margin-top: 8px; }

/* ============================================
   Contact Page
   ============================================ */
.contact-layout { display: flex; flex-direction: column; gap: 48px; }
@media (min-width: 1024px) { .contact-layout { flex-direction: row; gap: 64px; } }
.contact-form-wrap { width: 100%; }
@media (min-width: 1024px) { .contact-form-wrap { width: 60%; } }
.contact-form-card { border: 1px solid #eaeaea; border-radius: 16px; padding: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: #0f0f0f; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #eaeaea;
  border-radius: 8px; font-size: 14px; color: #0f0f0f; outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #6927DA; }
.form-group textarea { resize: none; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #a3a3a3; }
.btn-submit {
  width: 100%; padding: 16px; background: #6927DA; color: #fff;
  border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: all 0.25s ease;
}
.btn-submit:hover { background: #5a20c0; }

.contact-info-wrap { width: 100%; }
@media (min-width: 1024px) { .contact-info-wrap { width: 40%; } }
.info-block { display: flex; gap: 16px; margin-bottom: 32px; }
.info-icon-wrap { width: 48px; height: 48px; border-radius: 12px; background: #f4f0fe; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-icon-wrap svg { width: 22px; height: 22px; color: #6927DA; }
.info-title { font-size: 18px; font-weight: 600; }
.info-text { font-size: 14px; color: #737373; margin-top: 4px; }
.info-text a { color: #737373; transition: color 0.3s; }
.info-text a:hover { color: #6927DA; }

.social-links { display: flex; gap: 12px; margin-top: 40px; }
.social-link {
  width: 44px; height: 44px; border-radius: 50%; background: #f8f8f8;
  display: flex; align-items: center; justify-content: center;
  color: #737373; transition: all 0.3s;
}
.social-link:hover { background: #6927DA; color: #fff; }
.social-link svg { width: 18px; height: 18px; }

/* Map */
.map-wrap { position: relative; height: 400px; border-top: 1px solid #eaeaea; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.map-card {
  position: absolute; bottom: 24px; left: 24px;
  background: #fff; border-radius: 12px; padding: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.map-card-title { font-size: 16px; font-weight: 600; }
.map-card-desc { font-size: 14px; color: #737373; margin-top: 4px; }
.map-card-link { font-size: 14px; font-weight: 500; color: #6927DA; margin-top: 8px; display: inline-block; }

/* ============================================
   Footer
   ============================================ */
.footer { background: #0f0f0f; color: #fff; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; } }
.footer-logo-text { font-size: 18px; font-weight: 700; }
.footer-desc { font-size: 14px; color: #a3a3a3; line-height: 1.6; margin-top: 16px; }
.footer-socials { display: flex; gap: 16px; margin-top: 24px; }
.footer-socials a { color: #a3a3a3; transition: color 0.3s; }
.footer-socials a:hover { color: #fff; }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col-title { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #a3a3a3; margin-bottom: 16px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #a3a3a3; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; font-size: 14px; color: #a3a3a3; }
.footer-contact svg { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }

.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-copyright { font-size: 13px; color: #737373; }
.footer-legal { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #737373; }
.footer-legal a { color: #737373; transition: color 0.3s; }
.footer-legal a:hover { color: #fff; }

/* Disclaimer */
.footer-disclaimer { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-disclaimer p { font-size: 12px; line-height: 1.6; color: rgba(115,115,115,0.6); }

/* ============================================
   Page Hero (for inner pages)
   ============================================ */
.page-hero { padding: 120px 0 80px; }
.page-hero-gradient { background: linear-gradient(135deg, #6927DA 0%, #4c1fad 100%); }
.page-hero-light { background: #f8f8f8; }
.page-hero-white { background: #fff; }
.page-hero .breadcrumb { margin-bottom: 16px; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.9); }
.page-hero-light .breadcrumb, .page-hero-light .breadcrumb a { color: #a3a3a3; }
.page-hero-light .breadcrumb span { color: #737373; }
.page-hero-title { font-size: clamp(40px, 5vw, 72px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.page-hero-title-white { color: #fff; }
.page-hero-title-dark { color: #0f0f0f; }
.page-hero-subtitle { font-size: 18px; margin-top: 16px; max-width: 600px; }
.page-hero-subtitle-white { color: rgba(255,255,255,0.8); }
.page-hero-subtitle-gray { color: #737373; }
.page-hero-center { text-align: center; }
.page-hero-center .page-hero-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================
   Common Utilities
   ============================================ */
.section { padding: 80px 0; }
@media (min-width: 1024px) { .section { padding: 100px 0; } }
.section-gray { background: #f8f8f8; }
.section-dark { background: #0f0f0f; }

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25, 0, 0.4, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Line clamp */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Success message */
.success-message { text-align: center; padding: 64px 0; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: #f4f0fe; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.success-icon svg { width: 28px; height: 28px; color: #6927DA; }
.success-title { font-size: 24px; font-weight: 700; margin-top: 24px; }
.success-desc { font-size: 16px; color: #737373; margin-top: 8px; }

/* Related products */
.related-section { background: #f8f8f8; padding: 80px 0; }

/* Scroll to top */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 100;
  width: 48px; height: 48px; border-radius: 50%;
  background: #6927DA; color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(105,39,218,0.3);
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #5a20c0; transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================
   NEW SECTIONS - Liora-style additions
   ============================================ */

/* ---------- Our Core Advantages ---------- */
.core-adv-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .core-adv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .core-adv-grid { grid-template-columns: repeat(4, 1fr); } }

.core-adv-card {
  background: #fff; border: 1px solid #eaeaea; border-radius: 16px;
  padding: 32px; transition: all 0.3s ease;
}
.core-adv-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); border-color: #6927DA; }
.core-adv-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid #eaeaea; margin-bottom: 16px;
}
.core-adv-title { font-size: 18px; font-weight: 600; color: #0f0f0f; }
.core-adv-icon {
  width: 40px; height: 40px; border-radius: 10px; background: #f4f0fe;
  display: flex; align-items: center; justify-content: center;
}
.core-adv-icon svg { width: 20px; height: 20px; color: #6927DA; }
.core-adv-desc { font-size: 14px; color: #737373; line-height: 1.6; }

/* ---------- Risk Comparison ---------- */
.risk-section { background: #f8f8f8; }
.risk-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 1024px) { .risk-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.risk-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.risk-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.risk-card-img img { width: 100%; height: 100%; object-fit: cover; }
.risk-card-body { padding: 32px; }
.risk-card-title { font-size: 20px; font-weight: 700; color: #6927DA; margin-bottom: 20px; }
.risk-item { margin-bottom: 20px; }
.risk-item:last-child { margin-bottom: 0; }
.risk-item h4 { font-size: 15px; font-weight: 600; color: #0f0f0f; margin-bottom: 6px; }
.risk-item p { font-size: 14px; color: #737373; line-height: 1.5; }
.risk-cta {
  text-align: center; margin-top: 40px;
}
.risk-cta-text {
  font-size: 18px; font-weight: 600; color: #0f0f0f; margin-bottom: 20px;
}
.btn-outline-dark {
  display: inline-block; border: 1px solid #6927DA; color: #6927DA;
  padding: 14px 28px; border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover { background: #6927DA; color: #fff; }

/* ---------- Testing Reports ---------- */
.coas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 640px) { .coas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .coas-grid { grid-template-columns: repeat(5, 1fr); } }

.coa-item {
  border: 1px solid #eaeaea; border-radius: 12px; overflow: hidden;
  transition: all 0.3s ease; background: #fff;
}
.coa-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-4px); }
.coa-item img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* ---------- Production Environment ---------- */
.production-section { background: #f8f8f8; }
.production-row {
  display: flex; flex-direction: column; gap: 32px; align-items: center;
  margin-bottom: 64px;
}
.production-row:last-child { margin-bottom: 0; }
@media (min-width: 1024px) {
  .production-row { flex-direction: row; gap: 64px; }
  .production-row.reverse { flex-direction: row-reverse; }
}
.production-img { width: 100%; }
@media (min-width: 1024px) { .production-img { width: 50%; } }
.production-img img { width: 100%; border-radius: 16px; }
.production-text { flex: 1; }
.production-text h3 { font-size: 24px; font-weight: 700; color: #0f0f0f; margin-bottom: 16px; }
.production-text p { font-size: 15px; color: #737373; line-height: 1.7; }
.prod-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px;
}
.prod-feature {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: #292929;
}
.prod-feature svg { width: 18px; height: 18px; color: #6927DA; flex-shrink: 0; }

/* ---------- Commitment to Quality ---------- */
.commitment-section { background: #fff; }
.commitment-imgs {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px;
}
@media (min-width: 640px) { .commitment-imgs { grid-template-columns: repeat(3, 1fr); } }
.commitment-imgs img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 16px;
}
.commitment-statement {
  text-align: center; margin-top: 40px;
  font-size: 18px; font-weight: 600; color: #0f0f0f;
}

/* ---------- Service Team ---------- */
.team-section { background: #f8f8f8; }
.team-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; margin-top: 48px;
}
.team-member { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 12px; background: #eaeaea;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 15px; font-weight: 600; color: #0f0f0f; }

/* ---------- Customer Testimonials ---------- */
.testimonials-section { background: #f8f8f8; }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px;
}
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial-chat {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: all 0.3s;
}
.testimonial-chat:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.testimonial-chat img { width: 100%; aspect-ratio: 1/1.2; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-section { background: #fff; }
.faq-layout {
  display: flex; flex-direction: column; gap: 48px;
}
@media (min-width: 1024px) { .faq-layout { flex-direction: row; gap: 64px; } }
.faq-left { width: 100%; }
@media (min-width: 1024px) { .faq-left { width: 40%; } }
.faq-left img { width: 100%; border-radius: 16px; }
.faq-right { flex: 1; }

.faq-item { border-bottom: 1px solid #eaeaea; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 16px; font-weight: 500; color: #0f0f0f;
  background: none; border: none; cursor: pointer; text-align: left;
}
.faq-question svg { width: 20px; height: 20px; color: #6927DA; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.active svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px; padding-bottom: 20px;
}
.faq-answer p { font-size: 14px; color: #737373; line-height: 1.6; }

/* ---------- Floating Buttons ---------- */
.float-buttons {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 90; display: flex; gap: 12px;
}
.float-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 600;
  color: #fff; transition: all 0.25s ease; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.float-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.float-btn-whatsapp { background: linear-gradient(135deg, #22c55e, #16a34a); }
.float-btn-whatsapp:hover { background: linear-gradient(135deg, #16a34a, #15803d); }
.float-btn-email { background: linear-gradient(135deg, #6927DA, #5a20c0); }
.float-btn-email:hover { background: linear-gradient(135deg, #5a20c0, #4c1fad); }
.float-btn svg { width: 18px; height: 18px; }

@media (max-width: 640px) {
  .float-buttons { bottom: 16px; gap: 8px; }
  .float-btn { padding: 10px 18px; font-size: 13px; }
  .float-btn svg { width: 16px; height: 16px; }
}
