/* =========================
   GLOBAL
========================= */

body {
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #ffffff;
}

.section {
  padding: 100px 0;
}

.section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  display: block;
}

.section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #1e293b;
  margin: 15px auto 0;
  border-radius: 3px;
}

.section p {
  margin-bottom: 20px;
}

/* =========================
   HERO
========================= */
.product-hero {
  padding: 180px 0 120px;
  position: relative;
  color: #ffffff;
  overflow: visible;

  background: linear-gradient(
    135deg,
    #0f0c29 0%,      /* very deep purple navy */
    #0f172a 40%,     /* indigo */
    #312e81 70%,     /* muted purple */
    #4338ca 100%     /* soft accent */
  );
}

/* 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;
}

/* =========================
   MOBILE VERSION
========================= */

@media (max-width: 768px) {

  .product-hero {
    padding: 120px 0 80px;
  }

  .product-hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.7;
    margin: 0 auto 18px;
    max-width: 100%;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-left p {
    text-align: center;
  }

  .hero-note {
    font-size: 11px;
    letter-spacing: 0.8px;
  }

  /* NAV CARD */

  .hero-nav-card {
    padding: 22px;
    border-radius: 16px;
  }

  .nav-header h5 {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .nav-list {
    gap: 4px;
  }

  .hero-nav-item {
    padding: 12px 14px;
    gap: 14px;
  }

  .nav-number {
    font-size: 12px;
    min-width: 22px;
  }

  .nav-text {
    font-size: 14px;
  }

}

/* EXTRA SMALL MOBILE */

@media (max-width: 480px) {

  .product-hero {
    padding: 100px 0 70px;
  }

  .product-hero h1 {
    font-size: 30px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-nav-card {
    padding: 18px;
  }

  .nav-text {
    font-size: 13px;
  }

}
/* END HERO */


/* =========================
   OVERVIEW
========================= */

.overview-text {
  max-width: 750px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* =========================
   OVERVIEW MOBILE
========================= */

@media (max-width: 768px) {

  #overview.section {
    padding: 70px 0;
  }

  #overview h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }

  .overview-text {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 15px;
    max-width: 100%;
  }

}

@media (max-width: 480px) {

  #overview.section {
    padding: 60px 0;
  }

  #overview h2 {
    font-size: 24px;
  }

  .overview-text {
    font-size: 14px;
    line-height: 1.6;
  }

}

/* END OVERVIEW */

/* =========================
   PRODUCT VISUAL
========================= */

.product-visual-section {
  padding: 100px 0;
  background: #f9fafb;
  position: relative;
  overflow: hidden;
}

.visual-wrapper {
  position: relative;
  margin-bottom: 50px;
}

.floating-product-large {
  max-width: 520px;
  animation: floatY 6s ease-in-out infinite;
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.25));
  transform: perspective(1200px) rotateY(-10deg);
  position: relative;
  z-index: 2;
}

@keyframes floatY {
  0% { transform: perspective(1200px) rotateY(-10deg) translateY(0px); }
  50% { transform: perspective(1200px) rotateY(-10deg) translateY(-25px); }
  100% { transform: perspective(1200px) rotateY(-10deg) translateY(0px); }
}

/* Soft green glow background */
.visual-wrapper::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(91, 76, 255, 0.35) 0%,
    transparent 30%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(120px);
}

.visual-headline {
  font-weight: 700;
  margin-bottom: 20px;
}

.visual-sub {
  max-width: 600px;
  margin: 0 auto;
  color: #4b5563;
}

/* =========================
   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: #231c6c;
  color: white;
  font-weight: 600;
}

.comparison-row.header div:first-child {
  background: #4338ca;
}

.comparison-row div:first-child {
  font-weight: 500;
  color: #111827;
}

/* =========================
   PRODUCT VISUAL MOBILE
========================= */

@media (max-width: 768px) {

  .product-visual-section {
    padding: 70px 0;
  }

  .floating-product-large {
    max-width: 320px;
    transform: none;
    animation: floatYMobile 6s ease-in-out infinite;
  }

  @keyframes floatYMobile {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
  }

  .visual-wrapper::before {
    width: 350px;
    height: 350px;
    filter: blur(80px);
  }

  .visual-headline {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .visual-sub {
    font-size: 15px;
    padding: 0 15px;
    max-width: 100%;
    line-height: 1.7;
  }

}

@media (max-width: 480px) {

  .product-visual-section {
    padding: 60px 0;
  }

  .floating-product-large {
    max-width: 260px;
  }

  .visual-headline {
    font-size: 22px;
  }

  .visual-sub {
    font-size: 14px;
  }

}

/* END PRODUCT VISUAL */

/* =========================
   Clinical Application & Indication
========================= */

.application-list {
  max-width: 800px;
  margin: 0 auto;
}

.app-item {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f7;
}

.app-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}



.clinical-highlight {
  background: #f8fafc;
  padding: 120px 0;
}

.clinical-reference {
  background: linear-gradient(to bottom, #f8f9ff, #ffffff);
}

.clinical-highlight h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 25px;
}

.highlight-metric {
  font-size: 36px;
  font-weight: 600;
  color: #1B9C85;
  margin-bottom: 15px;
}

.highlight-desc {
  max-width: 700px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.7;
}

/* =========================
   CLINICAL APPLICATION MOBILE
========================= */

@media (max-width: 768px) {

  .application-list {
    max-width: 100%;
    padding: 0 15px;
  }

  .app-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
  }

  .app-item strong {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .app-item p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* CLINICAL HIGHLIGHT */

  .clinical-highlight {
    padding: 80px 0;
  }

  .clinical-highlight h2 {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .highlight-metric {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .highlight-desc {
    font-size: 15px;
    padding: 0 15px;
    max-width: 100%;
  }

}

@media (max-width: 480px) {

  .clinical-highlight {
    padding: 60px 0;
  }

  .clinical-highlight h2 {
    font-size: 24px;
  }

  .highlight-metric {
    font-size: 24px;
  }

  .highlight-desc {
    font-size: 14px;
    line-height: 1.6;
  }

}

/* END CLINICAL */

/* =========================
            SPECS
========================= */

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 50px;
  max-width: 800px;
  margin: 40px auto 0;
}

.spec-table div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.spec-table strong {
  font-weight: 600;
  color: #111827;
}

.spec-table span {
  color: #475569;
  text-align: right;
}

/* =========================
   SPECS MOBILE
========================= */

@media (max-width: 768px) {

  .spec-table {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 16px;
  }

  .spec-table div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 10px;
  }

  .spec-table strong {
    font-size: 14px;
  }

  .spec-table span {
    font-size: 14px;
    text-align: left;
  }

}

/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

  .spec-table {
    gap: 16px;
  }

  .spec-table strong {
    font-size: 13px;
  }

  .spec-table span {
    font-size: 13px;
    line-height: 1.5;
  }

}

/* END SIZE */

/* SIZE CHART */
#ht-sizes {
  padding: 120px 0;
  background: #f8fafc;
}

#ht-sizes h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111827;
}

.overview-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.size-table-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 60px;
  margin-top: 50px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.05);
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 15px;
}

.size-table thead th {
  font-weight: 500;
  padding: 20px 12px;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}

.size-table tbody td {
  padding: 18px 12px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e3a8a;
  font-weight: 500;
}

.size-table tbody td:empty {
  color: #e5e7eb;
}

.size-table tbody tr:hover {
  background: #f9fafb;
  transition: 0.2s ease;
}

.size-table td:first-child {
  font-weight: 600;
  color: #1e3a8a;
}

.curve-note {
  font-size: 14px;
  color: #9ca3af;
  margin-top: 30px;
}

/* =========================
   SIZE CHART MOBILE
========================= */

@media (max-width: 768px) {

  #ht-sizes {
    padding: 80px 0;
  }

  #ht-sizes h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .overview-text {
    font-size: 14px;
    padding: 0 15px;
  }

  .size-table-wrapper {
    padding: 25px;
    margin-top: 35px;
    border-radius: 14px;
  }

  .size-table {
    font-size: 13px;
    min-width: 600px; /* supaya tetap rapi saat di-scroll */
  }

  .size-table thead th {
    padding: 14px 10px;
    font-size: 13px;
  }

  .size-table tbody td {
    padding: 14px 10px;
    font-size: 13px;
  }

  .curve-note {
    font-size: 12px;
    margin-top: 20px;
    padding: 0 10px;
  }

}

@media (max-width: 480px) {

  #ht-sizes {
    padding: 60px 0;
  }

  #ht-sizes h2 {
    font-size: 24px;
  }

  .size-table-wrapper {
    padding: 18px;
  }

  .size-table {
    font-size: 12px;
    min-width: 520px;
  }

  .size-table thead th,
  .size-table tbody td {
    padding: 12px 8px;
  }

}

/* END SIZE */


/* VISUAL CLINICAL */

.drug-curve {
  background: #ffffff;
  padding: 120px 0;
}

.drug-curve h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

.curve-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #64748b;
  line-height: 1.7;
}

.graph-box {
  position: relative;
  max-width: 700px;
  margin: 0 auto 30px;
  padding: 40px;
  border: 1px solid #eef2f7;
  border-radius: 16px;
}

.curve-svg {
  width: 100%;
  height: auto;
}

.y-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
  font-size: 13px;
  color: #94a3b8;
}

.x-label {
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  margin-top: 10px;
}

.curve-note {
  font-size: 14px;
  color: #64748b;
}

/* =========================
   VISUAL CLINICAL MOBILE
========================= */

@media (max-width: 768px) {

  .drug-curve {
    padding: 80px 0;
  }

  .drug-curve h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .curve-desc {
    font-size: 14px;
    padding: 0 15px;
    margin-bottom: 35px;
  }

  .graph-box {
    padding: 20px;
    margin: 0 15px 25px;
    border-radius: 12px;
  }

  .y-label {
    font-size: 11px;
    left: 5px;
  }

  .x-label {
    font-size: 11px;
  }

  .curve-note {
    font-size: 13px;
    padding: 0 15px;
    line-height: 1.6;
  }

}

@media (max-width: 480px) {

  .drug-curve {
    padding: 60px 0;
  }

  .drug-curve h2 {
    font-size: 24px;
  }

  .graph-box {
    padding: 16px;
  }

  .curve-desc {
    font-size: 13px;
  }

  .y-label {
    font-size: 10px;
  }

  .x-label {
    font-size: 10px;
  }

  .curve-note {
    font-size: 12px;
  }

}
/* END */

/* =========================
   CLINICAL EVALUATION
========================= */

.clinical-reference {
  background: linear-gradient(to bottom, #f8f9ff, #ffffff);
  padding: 140px 0;
}

.reference-box {
  max-width: 800px;
  padding: 60px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
}

.reference-box p {
  line-height: 1.8;
}

.reference-box small {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.7;
}

/* =========================
   CLINICAL EVALUATION MOBILE
========================= */

@media (max-width: 768px) {

  .clinical-reference {
    padding: 90px 0;
  }

  .reference-box {
    padding: 30px;
    margin: 0 15px;
    border-radius: 14px;
  }

  .reference-box p {
    font-size: 14px;
    line-height: 1.7;
  }

  .reference-box small {
    font-size: 12px;
    margin-top: 15px;
  }

}

@media (max-width: 480px) {

  .clinical-reference {
    padding: 70px 0;
  }

  .reference-box {
    padding: 22px;
  }

  .reference-box p {
    font-size: 13px;
    line-height: 1.6;
  }

  .reference-box small {
    font-size: 11px;
  }

}

/* END */

/* =========================
   CLINICAL – RESEARCH STYLE
========================= */

.clinical-intro {
  font-size: 16px;
  margin-bottom: 40px;
  color: #334155;
  line-height: 1.8;
}

/* METRICS */

.clinical-metrics {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding: 30px 0;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
}

.metric-box {
  text-align: center;
  max-width: 250px;
}

.metric-number {
  font-size: 60px;
  letter-spacing: -1px;
  font-weight: 700;
  background: linear-gradient(135deg, #1e293b, #312e81);
  background-clip: text;               /* Standard */
  -webkit-background-clip: text;       /* Chrome/Safari */
  
  color: transparent;                  /* Fallback */
  -webkit-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}

.metric-desc {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* MINI DATA TABLE */

.clinical-table {
  margin-top: 40px;
  margin-bottom: 30px;
}

.row-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  color: #475569;
}

.row-item span:first-child {
  font-weight: 500;
  color: #1e293b;
}

/* =========================
   METRICS MOBILE
========================= */

@media (max-width: 768px) {

  .clinical-metrics {
    gap: 30px;
    margin-bottom: 35px;
    padding: 20px 0;
  }

  .metric-box {
    max-width: 160px;
  }

  .metric-number {
    font-size: 42px;
  }

  .metric-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  /* MINI TABLE */

  .clinical-table {
    margin-top: 30px;
  }

  .row-item {
    font-size: 14px;
    padding: 10px 0;
  }

}

@media (max-width: 480px) {

  .clinical-metrics {
    gap: 20px;
    padding: 18px 0;
  }

  .metric-number {
    font-size: 36px;
  }

  .metric-desc {
    font-size: 13px;
  }

  .row-item {
    font-size: 13px;
    padding: 8px 0;
  }

}

/* END */


/* FOOTNOTE */

.study-note {
  display: block;
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .clinical-metrics {
    gap: 30px;
  }

  .row-item {
    flex-direction: column;
    gap: 5px;
  }
}

/* TECH */
.technology-section {
  background: #f8f9fb;
}

.tech-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.tech-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.tech-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

/* =========================
   TECHNOLOGY MOBILE
========================= */

@media (max-width: 768px) {

  .tech-grid {
    margin-top: 35px;
    gap: 25px;
    padding: 0 15px;
  }

  .tech-item strong {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .tech-item p {
    font-size: 13px;
    line-height: 1.6;
  }

}

@media (max-width: 480px) {

  .tech-grid {
    gap: 20px;
  }

  .tech-item strong {
    font-size: 14px;
  }

  .tech-item p {
    font-size: 12.5px;
  }

}
/* END TECH */

/* =========================
   LEGAL SECTION – PREMIUM LAYOUT
========================= */

.legal-section {
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.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: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.legal-row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
}

.legal-row span {
  color: #64748b;
}

.legal-row strong {
  color: #1e293b;
  font-weight: 600;
}

/* RIGHT SIDE */

.legal-download-card {
  background: #0f172a;
  color: #ffffff;
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.legal-download-card i {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ef4444;
}

.legal-download-card h5 {
  margin-bottom: 15px;
  font-weight: 600;
}

.legal-download-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* BADGE */

.legal-badge {
  display: inline-block;
  padding: 6px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #e0f2fe;
  color: #0369a1;
  border-radius: 20px;
  margin-top: 15px;
}

/* FOOTNOTE */

.legal-note {
  font-size: 13px;
  opacity: 0.6;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================
   LEGAL SECTION MOBILE
========================= */

@media (max-width: 768px) {

  .legal-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-info {
    padding: 25px;
    border-radius: 14px;
    margin: 0 15px;
  }

  .legal-row {
    font-size: 14px;
    padding: 14px 0;
  }

  .legal-download-card {
    padding: 35px 25px;
    border-radius: 16px;
    margin: 0 15px;
  }

  .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: 5px 14px;
  }

  .legal-note {
    font-size: 12px;
    padding: 0 15px;
  }

}

@media (max-width: 480px) {

  .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: 11px;
  }

}
/* END */

/* RESPONSIVE */

@media (max-width: 992px) {
  .legal-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-row {
    flex-direction: column;
    gap: 6px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .product-hero h1 {
    font-size: 36px;
  }

  .spec-table {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reference-box {
    padding: 40px;
  }

}




