*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Satoshi', 'Inter', sans-serif;
  color: #1a1a2e;
  overflow-x: hidden;
}

/* ================================
   Hero Section
   ================================ */
.hero-section {
  background: linear-gradient(180deg, #0b0f1a 0%, #111827 100%);
  padding: 60px 0 80px;
  color: #fff;
}

.badge-introducing {
  display: inline-block;
  background: #0078D4;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Satoshi', 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 680px;
}

/* ================================
   CoE Cards
   ================================ */
.coe-card {
  background: #1a2035;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.coe-card-seasia {
  border-top: 3px solid #00c2ff;
}

.coe-card-coggle {
  border-top: 3px solid #ff6b35;
}

.coe-card-header {
  margin-bottom: 24px;
}

.coe-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seasia-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.coe-brand-name {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
}

.coe-card-seasia .coe-brand-name {
  color: #00c2ff;
}

.coe-card-coggle .coe-brand-name {
  color: #ff6b35;
}

.coe-brand-tagline {
  display: block;
  font-size: 10px;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.coe-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.coe-description {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 20px;
}

.coe-capabilities-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.coe-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 10px;
  align-items: start;
}

.coe-capability-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #cbd5e1;
  /* background: rgba(255, 255, 255, 0.04); */
  /* border: 1px solid rgba(255, 255, 255, 0.08); */
  border-radius: 8px;
  /* padding: 8px 14px; */
  justify-self: start;
  width: fit-content;
}

/* Diamond Icons */
.diamond-icon {
  width: 10px;
  height: 10px;
  display: inline-block;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.diamond-icon.teal {
  background: #00c2ff;
}

.diamond-icon.purple {
  background: #a855f7;
}

/* ================================
   Solutions Section
   ================================ */
.solutions-section {
  background: #fff;
  padding: 70px 0 80px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Satoshi', 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #111827;
}

/* Product Tabs */
.product-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.product-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #e5e7eb;
  min-width: max-content;
}

.product-tabs li {
  flex-shrink: 0;
}

.product-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 22px 36px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.product-tabs a:hover {
  color: #3b82f6;
}

.product-tabs a.active {
  color: #3b82f6;
  border-bottom-color: #3b82f6;
  font-weight: 600;
}

.tab-diamond {
  width: 8px;
  height: 8px;
  display: inline-block;
  transform: rotate(45deg);
  background: #d1d5db;
  flex-shrink: 0;
}

.product-tabs a.active .tab-diamond {
  background: #3b82f6;
}

.product-tabs a:hover .tab-diamond {
  background: #3b82f6;
}

.teal-diamond {
  background: #3b82f6 !important;
}

/* Product Content */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  margin-bottom: 12px;
}

.product-heading {
  font-family: 'Satoshi', 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.product-description {
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 24px;
}

.problem-heading {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.problem-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 18px;
  height: 100%;
}

.problem-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.4;
}

.problem-card-text {
  font-size: 12px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 0;
}

.solution-heading {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.solution-text {
  font-size: 13px;
  line-height: 1.7;
  color: #6b7280;
}

/* ================================
   Dashboard Mockup
   ================================ */
.product-dashboard {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-top: 20px;
  position: relative;
}

.product-tab-image{
  width: 100%;
  /* max-width: 520px; */
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
  display: none;
}

.overflow-hidden{
  overflow: hidden;
}

.product-tab-image.md{
  display: inline-block;
  position: absolute;
  max-width: 80%;
  top: 0;
  right: -35%;

}

@media (max-width: 991.98px) {
  .product-tab-image{
    display: inline-block;
  }
  
  .product-tab-image.md{
    display: none;
  }
}

.relative{
  position: relative;
}

.dashboard-mockup {
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.dashboard-sidebar {
  width: 160px;
  background: #1e293b;
  padding: 16px 0;
  flex-shrink: 0;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 8px;
}

.sidebar-icon {
  font-size: 18px;
}

.sidebar-item {
  padding: 8px 16px;
  font-size: 12px;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
}

.sidebar-item:hover,
.sidebar-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-main {
  flex: 1;
  padding: 20px;
  min-width: 0;
}

.dashboard-header h6 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.chart-area {
  background: #fff;
}

.chart-title-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}

.chart-label {
  font-size: 11px;
  color: #6b7280;
}

.chart-container {
  width: 100%;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  padding: 8px;
}

.line-chart {
  width: 100%;
  height: auto;
}

.chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #6b7280;
}

.legend-line {
  display: inline-block;
  width: 16px;
  height: 3px;
  border-radius: 2px;
}

.legend-line.blue {
  background: #3B82F6;
}

.legend-line.orange {
  background: #F97316;
}

.chart-footer {
  margin-top: 12px;
  text-align: right;
}

.chart-label-sm {
  font-size: 10px;
  color: #9ca3af;
}

/* ================================
   Responsive Styles
   ================================ */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 44px;
  }

  .section-title {
    font-size: 34px;
  }

  .product-heading {
    font-size: 26px;
  }
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 50px 0 60px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .coe-card {
    padding: 24px;
  }

  .solutions-section {
    padding: 50px 0 60px;
  }

  .section-title {
    font-size: 30px;
  }

  .product-heading {
    font-size: 24px;
  }

  .product-dashboard {
    padding-top: 30px;
  }

  .dashboard-sidebar {
    width: 130px;
  }
}

/* ================================
   Mobile: stacked product sections
   ================================ */
.mobile-product-section {
  padding: 32px 20px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-product-section:nth-child(even) {
  background: #f3f4f6;
  border-radius: 12px;
}

.mobile-product-section:last-child {
  border-bottom: none;
}

.mobile-product-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 8px;
  margin: 16px 0 20px;
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 40px 0 50px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .coe-card {
    padding: 20px;
  }

  .coe-brand-name {
    font-size: 18px;
  }

  .coe-title {
    font-size: 16px;
  }

  .solutions-section {
    padding: 40px 0 50px;
  }

  .section-title {
    font-size: 26px;
  }

  .product-tabs {
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-heading {
    font-size: 22px;
  }

  .dashboard-mockup {
    flex-direction: column;
  }

  .dashboard-sidebar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 12px;
    gap: 4px;
  }

  .sidebar-logo {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
    padding-bottom: 8px;
  }

  .sidebar-item {
    padding: 6px 12px;
    border-radius: 6px;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 28px;
  }

  .coe-capabilities {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }

  .product-tabs a {
    padding: 10px 12px;
    font-size: 12px;
  }

  .product-heading {
    font-size: 20px;
  }

  .problem-card {
    padding: 14px;
  }
}
