/* GLOBAL THEME */
body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #ffffff;
}

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  display: block;
}


/* HERO */
.product-hero {
  padding: 180px 0 120px;
  position: relative;
  color: #ffffff;
  overflow: visible;

  background: linear-gradient(
    135deg,
    #071a2f 0%,
    #0A4C8B 50%,
    #1e3a8a 100%
  );
}
/* Soft glow layer */


.product-hero .container {
  position: relative;
  z-index: 2;
}

.product-hero h1 {
  font-size: 56px;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  margin-bottom: 22px;
  max-width: 500px;
  word-break: normal;
  overflow-wrap: break-word;
}

.hero-left {
  max-width: 620px;
}

.hero-left p {
  text-align: left;
}

.hero-note {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 1;
}

.hero-image {
  max-width: 420px;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.4));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* HERO NAV – PREMIUM VERSION */

.hero-nav-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 28px;
}

.hero-nav-card a {
  color: #fff;
}

.nav-header span {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.6;
}

.nav-header h5 {
  font-weight: 700;
  margin-bottom: 20px;
}

.nav-list {
  display: flex;
  flex-direction: column;
}

.hero-nav-item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  padding: 14px 18px;
  color: #ffffff;
  transition: all 0.35s cubic-bezier(.4,0,.2,1);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.nav-number {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.5;
  min-width: 28px;
}

.nav-text {
  font-size: 16px;
  font-weight: 500;
}

.hero-nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: rgba(255,255,255,0.4);
  transition: width 0.3s ease;
}

.hero-nav-item:hover {
  opacity: 0.7;
  transform: translateX(8px);
}

.hero-nav-item:hover::after {
  width: 100%;
}

/* STICKY HERO NAV */

.hero-right {
  position: relative;
}

/* =========================
   HERO MOBILE
========================= */

@media (max-width: 768px) {

  .product-hero {
    padding: 120px 0 80px;
    text-align: center;
  }

  .product-hero h1 {
    font-size: 36px;
    margin-bottom: 18px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-left p {
    text-align: center;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 18px;
    max-width: 100%;
    padding: 0 15px;
  }

  .hero-note {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  .hero-image {
    max-width: 280px;
    margin-top: 30px;
  }

  /* NAV CARD */

  .hero-nav-card {
    margin-top: 35px;
    padding: 20px;
    border-radius: 16px;
  }

  .nav-header h5 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .hero-nav-item {
    padding: 12px 14px;
    gap: 14px;
  }

  .nav-number {
    font-size: 12px;
    min-width: 22px;
  }

  .nav-text {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .product-hero {
    padding: 100px 0 70px;
  }

  .product-hero h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-image {
    max-width: 240px;
  }

  .hero-nav-card {
    padding: 18px;
  }

  .nav-text {
    font-size: 13px;
  }

}
/* END HERO */



/* SECTIONS */
.section {
  padding: 100px 0;
  background: white;
  color: #111;
}

.section-light {
  background: #f4f7fb;
}

.section h2 {
  margin-bottom: 20px;
  font-weight: 700;
}

.btn-download {
  margin-top: 20px;
  background: #0A4C8B;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-download:hover {
  background: #08386b;
}

/* =========================
   OVERVIEW
========================= */

  .overview-text {
    max-width: 750px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
  }

  @media (max-width: 768px) {

  /* OVERVIEW */

  .overview-text {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 16px;
    max-width: 100%;
  }

}

/* =========================
   SPECS
========================= */

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 50px;
  max-width: 800px;
  margin: 40px auto 0;
}

.spec-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5e7eb;
}

.spec-table strong {
  font-weight: 600;
  color: #111827;
}

.spec-table span {
  color: #475569;
  text-align: right;
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px){

  .spec-table {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 18px;
  }

  .spec-table div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .spec-table span {
    text-align: left;
  }

  .spec-table strong,
  .spec-table span {
    font-size: 14px;
  }

}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px){

  .spec-table {
    gap: 16px;
  }

  .spec-table strong,
  .spec-table span {
    font-size: 13px;
    line-height: 1.5;
  }

}


/* =========================
   PRODUCT COMPARISON
========================= */

.comparison-table {
  margin-top: 50px;
  border-radius: 16px;
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 18px 25px;
  border-bottom: 1px solid #eef2f7;
  align-items: center;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row.header {
  background: #0A4C8B;
  color: white;
  font-weight: 600;
}

.comparison-row.header div:first-child {
  background: #0A4C8B;
}

.comparison-row div:first-child {
  font-weight: 500;
  color: #111827;
}

/* =========================
   PRODUCT COMPARISON MOBILE
========================= */

@media (max-width: 768px) {

  .comparison-table {
    overflow-x: auto;
    margin-top: 35px;
  }

  .comparison-row {
    grid-template-columns: 1.4fr 1fr 1fr;
    padding: 14px 18px;
    font-size: 14px;
    min-width: 520px; /* supaya bisa discroll */
  }

  .comparison-row div:first-child {
    font-size: 14px;
  }

}

@media (max-width: 480px) {

  .comparison-row {
    padding: 12px 14px;
    font-size: 13px;
    min-width: 480px;
  }

  .comparison-row div:first-child {
    font-size: 13px;
  }

}

/* END COMPARISON */

/* ============================= */
/* DRUG RELEASE SCIENTIFIC VISUAL */
/* ============================= */

.drug-curve {
  background: #ffffff;
  padding: 120px 0;
}

.drug-curve h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 20px;
  color: #0A4C8B; /* Primary Blue */
}

.curve-desc {
  max-width: 720px;
  margin: 0 auto 50px;
  color: #64748b;
  line-height: 1.7;
  font-size: 16px;
}

.graph-box {
  position: relative;
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 50px 40px;
  border: 1px solid #e6edf5;
  border-radius: 18px;
  background: linear-gradient(to bottom, #f8fbff, #ffffff);
}

/* SVG Curve */
.curve-svg {
  width: 100%;
  height: auto;
}

/* Axis Labels */
.y-label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.x-label {
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: #94a3b8;
  margin-top: 15px;
}

/* Small Note */
.curve-note {
  font-size: 14px;
  color: #64748b;
  margin-top: 10px;
}

/* Optional subtle hover effect */
.graph-box:hover {
  box-shadow: 0 10px 30px rgba(10, 76, 139, 0.08);
  transition: 0.3s ease;
}

/* =========================
   DRUG CURVE MOBILE
========================= */

@media (max-width: 768px) {

  .drug-curve {
    padding: 80px 0;
  }

  .drug-curve h2 {
    font-size: 26px;
    margin-bottom: 16px;
    padding: 0 16px;
  }

  .curve-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 35px;
    padding: 0 16px;
  }

  .graph-box {
    padding: 25px 20px;
    margin: 0 16px 25px;
    border-radius: 14px;
  }

  .y-label {
    font-size: 11px;
    left: 5px;
  }

  .x-label {
    font-size: 11px;
  }

  .curve-note {
    font-size: 13px;
    padding: 0 16px;
  }

}

@media (max-width: 480px) {

  .drug-curve {
    padding: 60px 0;
  }

  .drug-curve h2 {
    font-size: 22px;
  }

  .curve-desc {
    font-size: 13px;
  }

  .graph-box {
    padding: 18px 14px;
  }

  .y-label {
    font-size: 10px;
  }

  .x-label {
    font-size: 10px;
  }

  .curve-note {
    font-size: 12px;
  }

}

/* END */

/* =========================
   CLINICAL – CLEAN FIXED
========================= */

.clinical-reference {
  background: #f8fbff;
  padding: 120px 0;
}

.clinical-reference h2 {
  color: #0A4C8B;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Wrapper biar center & rapi */
.reference-box {
  max-width: 900px;
  margin: 0 auto;
}

/* Intro */
.clinical-intro {
  font-size: 16px;
  margin-bottom: 50px;
  color: #334155;
  line-height: 1.8;
  text-align: center;
}

/* =========================
   CLINICAL REFERENCE MOBILE
========================= */

@media (max-width: 768px) {

  .clinical-reference {
    padding: 80px 0;
  }

  .clinical-reference h2 {
    font-size: 26px;
    margin-bottom: 30px;
    padding: 0 16px;
  }

  .reference-box {
    max-width: 100%;
    padding: 0 16px;
  }

  .clinical-intro {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 35px;
  }

}

@media (max-width: 480px) {

  .clinical-reference {
    padding: 60px 0;
  }

  .clinical-reference h2 {
    font-size: 22px;
  }

  .clinical-intro {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

}

/* ======================
   METRICS SECTION
====================== */

.clinical-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 40px 0;
  margin-bottom: 60px;
  border-top: 1px solid #e6edf5;
  border-bottom: 1px solid #e6edf5;
}

.metric-box {
  text-align: center;
  padding: 10px 20px;
}

.metric-number {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, #0A4C8B, #1e3a8a);
  background-clip: text;               /* Standard */
  -webkit-background-clip: text;       /* Chrome/Safari */
  color: transparent;                  /* Fallback */
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}


.metric-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* ======================
   METRICS MOBILE
====================== */

@media (max-width: 768px) {

  .clinical-metrics {
    gap: 25px;
    padding: 25px 0;
    margin-bottom: 40px;
  }

  .metric-box {
    padding: 10px 15px;
  }

  .metric-number {
    font-size: 34px;
    margin-bottom: 8px;
  }

  .metric-desc {
    font-size: 13px;
    line-height: 1.5;
  }

}

@media (max-width: 480px) {

  .clinical-metrics {
    gap: 20px;
    padding: 20px 0;
  }

  .metric-number {
    font-size: 30px;
  }

  .metric-desc {
    font-size: 12.5px;
  }

}

/* ======================
   MINI DATA TABLE
====================== */

.clinical-table {
  max-width: 700px;
  margin: 0 auto;
}

.row-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e6edf5;
  font-size: 15px;
}

.row-item span:first-child {
  font-weight: 600;
  color: #0f172a;
}

.row-item span:last-child {
  color: #475569;
  text-align: right;
}

/* ======================
   RESPONSIVE FIX
====================== */

@media (max-width: 768px) {

  .clinical-metrics {
    gap: 30px;
  }

  .row-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .row-item span:last-child {
    text-align: left;
  }

}


/* =========================
   LEGAL SECTION – BuMA BLUE
========================= */

.legal-section {
  background: linear-gradient(to bottom, #ffffff, #f1f7ff);
  padding: 120px 0;
}

.legal-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

/* LEFT SIDE */

.legal-info {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(10, 76, 139, 0.05);
  border: 1px solid #e6edf5;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #e6edf5;
  font-size: 15px;
}

.legal-row span {
  color: #64748b;
}

.legal-row strong {
  color: #0f172a;
  font-weight: 600;
}

/* RIGHT SIDE */

.legal-download-card {
  background: linear-gradient(135deg, #0A4C8B, #1e3a8a);
  color: #ffffff;
  padding: 55px 40px;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(10, 76, 139, 0.25);
}

.legal-download-card i {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ffffff;
}

.legal-download-card h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-download-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* BADGE */

.legal-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #e0f2fe;
  color: #0A4C8B;
  border-radius: 30px;
  margin-top: 15px;
  font-weight: 500;
}

/* NOTE */

.legal-note {
  font-size: 14px;
  color: #64748b;
}

/* =========================
   LEGAL SECTION MOBILE
========================= */

@media (max-width: 768px) {

  .legal-section {
    padding: 80px 0;
  }

  .legal-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  /* LEFT CARD */

  .legal-info {
    padding: 25px;
    border-radius: 16px;
    margin: 0 16px;
  }

  .legal-row {
    font-size: 14px;
    padding: 14px 0;
  }

  /* RIGHT CARD */

  .legal-download-card {
    padding: 35px 25px;
    border-radius: 18px;
    margin: 0 16px;
  }

  .legal-download-card i {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .legal-download-card h5 {
    font-size: 18px;
  }

  .legal-download-card p {
    font-size: 13px;
  }

  .legal-badge {
    font-size: 11px;
    padding: 6px 16px;
  }

  .legal-note {
    font-size: 13px;
    padding: 0 16px;
  }

}

@media (max-width: 480px) {

  .legal-section {
    padding: 60px 0;
  }

  .legal-info {
    padding: 20px;
  }

  .legal-row {
    font-size: 13px;
  }

  .legal-download-card {
    padding: 28px 20px;
  }

  .legal-download-card i {
    font-size: 32px;
  }

  .legal-download-card h5 {
    font-size: 16px;
  }

  .legal-download-card p {
    font-size: 12px;
  }

  .legal-note {
    font-size: 12px;
  }

}

/* RESPONSIVE */

@media (max-width: 992px) {
  .legal-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}