/* ============================================================
   INNER PAGES — about, products, detail, contact
   ============================================================ */

/* ══════════ WHO WE ARE ══════════ */

.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}
.founder-img-side {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.founder-img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.founder-img-side:hover img { transform: scale(1.04); }
.founder-img-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, #fff 100%);
}
.founder-text-side {
  padding: 88px 5vw 88px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.founder-text-side .section-desc { max-width: 100%; }
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.exp-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 3px;
  background: var(--ice);
  color: var(--navy);
  border: 1px solid var(--border);
  transition: all .2s;
}
.exp-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Pillars */
.pillars-section { padding: 96px 5vw; background: var(--ice); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 4px;
}
.pillar-card {
  background: #fff;
  overflow: hidden;
  transition: all .4s var(--ease-out-expo);
  position: relative;
}
.pillar-card:hover { background: var(--navy); }
.pillar-card-img {
  height: 190px;
  overflow: hidden;
}
.pillar-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
/* .pillar-card:hover .pillar-card-img img { transform: scale(1.08) brightness(.4); filter: brightness(.3); } */
.pillar-card-body { padding: 32px 30px 36px; position: relative; }
.pillar-num {
  position: absolute;
  top: 20px; right: 22px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--ice);
  line-height: 1;
  transition: color .3s;
}
.pillar-card:hover .pillar-num { color: rgba(255,255,255,.05); }
.pillar-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-bottom: 16px;
}
.pillar-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color .3s;
}
.pillar-card:hover .pillar-card-body h3 { color: #fff; }
.pillar-card-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.72;
  transition: color .3s;
}
.pillar-card:hover .pillar-card-body p { color: rgba(255,255,255,.6); }

/* Values / approach */
.approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.approach-img-side {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.approach-img-side img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.approach-img-side:hover img { transform: scale(1.04); }
.approach-img-side::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 70%, var(--offwhite) 100%);
  z-index: 1;
}
.approach-text-side {
  padding: 88px 5vw 88px 56px;
  background: var(--offwhite);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.approach-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; }
.ap-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: all .2s;
}
.ap-item:first-child { padding-top: 0; }
.ap-item:hover { padding-left: 8px; }
.ap-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--teal2);
  opacity: .35;
  flex-shrink: 0;
  width: 38px;
  line-height: 1.1;
  transition: opacity .2s;
}
.ap-item:hover .ap-num { opacity: .7; }
.ap-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.ap-text p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ══════════ WHAT WE DO ══════════ */

.products-list-section { padding: 88px 5vw; }
.po-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 68px;
}
.product-rows { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.product-row {
  display: grid;
  grid-template-columns: 260px 1fr 60px;
  gap: 0;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all .3s var(--ease-out-expo);
  overflow: hidden;
}
.product-row:hover { background: var(--ice); }
.product-row:hover .pr-arrow { background: var(--teal); color: #fff; border-color: var(--teal); transform: rotate(-45deg); }
.product-row:hover .pr-num { color: var(--teal); }
.pr-img { overflow: hidden; }
.pr-img img {
  width: 100%; height: 150px;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-row:hover .pr-img img { transform: scale(1.1); }
.pr-content { padding: 28px 40px; }
.pr-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: rgba(0,0,0,.15);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  transition: color .3s;
}
.pr-content h3 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.25;
}
.pr-content p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.pr-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pr-tag {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--ice);
  color: var(--muted);
  border-radius: 2px;
  border: 1px solid var(--border);
}
.pr-arrow-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 28px;
}
.pr-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 16px;
  flex-shrink: 0;
  transition: all .3s var(--ease-out-expo);
}

/* ══════════ PRODUCT DETAIL ══════════ */

.detail-banner {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.detail-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: bannerZoom 10s ease-in-out infinite alternate;
}
@keyframes bannerZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.detail-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,22,39,.96) 0%, rgba(2,22,39,.3) 100%);
}
.detail-banner-inner {
  position: relative;
  z-index: 2;
  padding: 0 5vw 60px;
  width: 100%;
  animation: slideUp .7s var(--ease-out-expo) both;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 26px;
  transition: color .2s;
}
.back-btn:hover { color: #fff; }
.detail-banner-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.detail-banner-inner p {
  font-size: 15px;
  color: rgba(255,255,255,.58);
  max-width: 600px;
  line-height: 1.75;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: start;
}
.detail-main { padding: 72px 56px 72px 5vw; }
.detail-main h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 18px;
}
.detail-main p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 14px;
}
.detail-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.detail-img-row img {
  width: 100%; height: 185px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform .4s ease;
}
.detail-img-row img:hover { transform: scale(1.02); }
.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.feat-box {
  background: var(--ice);
  border-left: 3px solid var(--teal);
  padding: 20px 22px;
  border-radius: 0 5px 5px 0;
  transition: all .25s;
}
.feat-box:hover { background: var(--white); box-shadow: 0 4px 16px rgba(10,110,138,.1); transform: translateX(4px); }
.feat-box h4 { font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.feat-box p { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0; }

.detail-sidebar {
  background: var(--ice);
  border-left: 1px solid var(--border);
  padding: 48px 32px;
  position: sticky;
  top: 71px;
  min-height: 80vh;
}
.sb-group { margin-bottom: 34px; }
.sb-group h4 {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,.3);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.sb-list { display: flex; flex-direction: column; gap: 10px; }
.sb-list li {
  font-size: 13.5px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sb-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}
.sb-cta {
  background: var(--navy);
  border-radius: 6px;
  padding: 28px;
}
.sb-cta h4 { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: 9px; border: none; padding: 0; letter-spacing: 0; text-transform: none; }
.sb-cta p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 20px; }
.sb-cta .btn-primary { width: 100%; justify-content: center; }

/* ══════════ CONTACT ══════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.contact-info-panel {
  background: var(--navy);
  padding: 80px 5vw;
  display: flex;
  flex-direction: column;
}
.contact-info-panel .section-eyebrow { color: rgba(255,255,255,.38); }
.contact-info-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-top: 10px;
}
.contact-info-panel h2 em { font-style: italic; color: #8dd8f0; }
.contact-info-panel > p {
  font-size: 14.5px;
  color: rgba(255,255,255,.52);
  line-height: 1.78;
  margin-top: 14px;
  margin-bottom: 44px;
}
.contact-details { display: flex; flex-direction: column; gap: 0; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: padding-left .2s;
}
.contact-detail:first-child { padding-top: 0; }
.contact-detail:hover { padding-left: 6px; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.07);
  border-radius: 5px;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.08);
}
.contact-detail h5 {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 4px;
}
.contact-detail p {
  font-size: 14px;
  color: rgba(255,255,255,.68);
  font-weight: 500;
  margin: 0;
}
.contact-info-img {
  margin-top: auto;
  padding-top: 40px;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
}
.contact-info-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.contact-info-img:hover img { transform: scale(1.06); }

.contact-form-panel {
  padding: 80px 5vw;
  background: #fff;
}
.contact-form-panel h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form-panel > p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,110,138,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-submit:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,.3); }

/* ══════════════════════════════════════════
   PAGES RESPONSIVE
══════════════════════════════════════════ */

/* Tablet landscape (≤ 1024px) */
@media (max-width: 1024px) {
  /* About */
  .founder-section { grid-template-columns: 1fr; }
  .founder-img-side { min-height: 360px; }
  .founder-img-side::after { background: linear-gradient(to top, transparent 70%, #fff 100%); }
  .founder-text-side { padding: 56px 5vw; }

  .pillars-grid { grid-template-columns: 1fr 1fr; }

  .approach-section { grid-template-columns: 1fr; }
  .approach-img-side { min-height: 320px; order: -1; }
  .approach-img-side::before { display: none; }
  .approach-text-side { padding: 56px 5vw; }

  /* Products */
  .po-intro { grid-template-columns: 1fr; gap: 28px; }
  .product-row { grid-template-columns: 180px 1fr 50px; }

  /* Detail */
  .detail-layout { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; border-left: none; border-top: 1px solid var(--border); min-height: unset; padding: 36px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
  .detail-main { padding: 56px 5vw 48px; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-panel { padding: 56px 5vw 48px; }
  .contact-info-img { height: 180px; }
  .contact-form-panel { padding: 56px 5vw; }
}

/* Tablet portrait (≤ 768px) */
@media (max-width: 768px) {
  /* Banner */
  .page-banner { height: 300px; }
  .page-banner-content { padding: 0 5vw 44px; }

  /* About */
  .pillars-section { padding: 64px 5vw; }
  .pillars-grid { gap: 3px; }
  .pillar-card-img { height: 150px; }
  .pillar-card-body { padding: 24px 22px 28px; }
  .pillar-num { font-size: 52px; }

  .exp-tags { gap: 6px; }
  .exp-tag { font-size: 11px; padding: 5px 11px; }

  .approach-list { margin-top: 24px; }
  .ap-item { gap: 16px; }
  .ap-num { font-size: 24px; width: 32px; }

  /* Products */
  .products-list-section { padding: 56px 5vw; }
  .product-row { grid-template-columns: 130px 1fr; }
  .pr-arrow-wrap { display: none; }
  .pr-img img { height: 130px; }
  .pr-content { padding: 20px 24px; }
  .pr-content h3 { font-size: 18px; }
  .pr-tags { display: none; }

  /* Detail */
  .detail-banner { height: 340px; }
  .detail-banner-inner { padding: 0 5vw 44px; }
  .detail-sidebar { grid-template-columns: 1fr; gap: 20px; }
  .detail-img-row img { height: 160px; }
  .detail-features { grid-template-columns: 1fr; }

  /* Contact */
  .contact-detail-list { gap: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .btn-submit { width: 100%; justify-content: center; }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  /* Banner */
  .page-banner { height: 240px; }
  .page-banner-content { padding: 0 18px 32px; }
  .page-banner-content h1 { font-size: clamp(26px, 8vw, 38px); }
  .breadcrumb { display: none; }

  /* About */
  .founder-section,
  .pillars-section,
  .approach-section { padding-left: 18px; padding-right: 18px; }

  .founder-text-side,
  .approach-text-side { padding: 44px 18px; }

  .pillars-grid { grid-template-columns: 1fr; }
  .pillars-section { padding: 52px 18px; }
  .pillar-num { font-size: 44px; top: 12px; right: 14px; }

  /* Products */
  .products-list-section { padding: 48px 18px; }
  .product-row { grid-template-columns: 1fr; }
  .pr-img { display: none; }
  .pr-content { padding: 22px 18px; }
  .pr-content h3 { font-size: 17px; }
  .pr-tags { display: flex; }

  /* Detail */
  .detail-main { padding: 44px 18px; }
  .detail-sidebar { padding: 32px 18px; }
  .detail-img-row { grid-template-columns: 1fr; }
  .detail-img-row img { height: 180px; }
  .feat-box { padding: 16px 16px; }

  /* Contact */
  .contact-info-panel { padding: 44px 18px; }
  .contact-form-panel { padding: 44px 18px; }
  .contact-info-img { display: none; }
  .contact-detail { padding: 16px 0; }
  .contact-detail-icon { width: 36px; height: 36px; font-size: 15px; }

  /* Footer */
  .footer-grid { gap: 22px; }
  footer { padding: 44px 18px 22px; }
}

/* ══════════════════════════════════════
   Transdermal deliver patch
══════════════════════════════════════ */
.delivery-section {
  background: #f8fbff;
  padding: 80px 0 90px;
  font-family: inherit;
}

.delivery-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.delivery-section .section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #2a9db0;
  margin-bottom: 12px;
  display: block;
}

.delivery-section .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4vw, 42px);
  color: #1a2e40;
  margin-bottom: 36px;
  line-height: 1.2;
}
.delivery-section .section-title span { color: #2a9db0; }

/* Definition bar */
.delivery-def-bar {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #e2eaf2;
  border-radius: 16px;
  padding: 20px 28px;
  margin-bottom: 28px;
  box-shadow: 0 2px 16px rgba(42,157,176,0.07);
  flex-wrap: wrap;
}
.delivery-def-bar .def-item {
  font-size: 13.5px; color: #4a5a6e; line-height: 1.7; flex: 1; min-width: 220px;
}
.delivery-def-bar .def-item strong { color: #2a9db0; font-weight: 600; }
.delivery-def-bar .def-divider { width: 1px; background: #dde8f0; align-self: stretch; flex-shrink: 0; }
@media (max-width: 680px) {
  .delivery-def-bar .def-divider { display: none; }
  .delivery-cards { grid-template-columns: 1fr !important; }
}

/* Distinction banner */
.delivery-distinction {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(120deg, #edf8fb 0%, #f0eeff 100%);
  border: 1px solid #c4e8f0;
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 32px;
}
.delivery-distinction .badge-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #2a9db0, #7c6fa0);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.delivery-distinction p { font-size: 13.5px; color: #4a5a6e; line-height: 1.65; margin: 0; }
.delivery-distinction p strong { color: #1a7a8a; font-weight: 600; }

/* Cards */
.delivery-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.dcard {
  background: #fff;
  border: 1px solid #e2eaf2;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.dcard:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.dcard-header {
  padding: 20px 24px 16px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid #f0f4f8;
}
.dcard-icon { width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.dcard-topical .dcard-icon    { background: #fff0f0; }
.dcard-transdermal .dcard-icon { background: #edf8fb; }
.dcard-title { font-family: 'Playfair Display', Georgia, serif; font-size: 19px; color: #1a2e40; }
.dcard-sub { font-size: 12px; font-weight: 500; margin-top: 2px; }
.dcard-topical .dcard-sub    { color: #e05c5c; }
.dcard-transdermal .dcard-sub { color: #2a9db0; }

/* ── Diagram box ── */
.skin-diagram {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-top: 1px solid #f0f4f8;
}
.skin-diagram svg { width: 100%; height: 100%; display: block; }

/* Card info */
.dcard-info { padding: 18px 24px 22px; }
.info-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.dcard-topical .info-tag    { background: #fff0f0; color: #c94040; }
.dcard-transdermal .info-tag { background: #edf8fb; color: #1a7a8a; }
.info-points { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.info-points li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: #4a5a6e; line-height: 1.55; }
.info-points li::before { content:''; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.dcard-topical .info-points li::before    { background: #e88080; }
.dcard-transdermal .info-points li::before { background: #2a9db0; }

/* ══════════════════════════
   SVG ANIMATIONS
══════════════════════════ */
.arrow-fan { animation: fanPulse 2.2s ease-in-out infinite; transform-origin: 200px 30px; }
.arrow-fan.a1 { animation-delay: 0s; }   .arrow-fan.a2 { animation-delay: 0.15s; }
.arrow-fan.a3 { animation-delay: 0.3s; } .arrow-fan.a4 { animation-delay: 0.45s; }
.arrow-fan.a5 { animation-delay: 0.6s; } .arrow-fan.a6 { animation-delay: 0.75s; }
.arrow-fan.a7 { animation-delay: 0.9s; }
@keyframes fanPulse { 0% { opacity:0.2; } 40% { opacity:1; } 100% { opacity:0.2; } }

.cream-drip { animation: drip 3s ease-in-out infinite; }
@keyframes drip { 0%,100% { transform:scaleY(1); } 50% { transform:scaleY(1.06); } }

.barrier-line { animation: barrierPulse 2s ease-in-out infinite; }
@keyframes barrierPulse { 0%,100% { stroke-opacity:0.4; } 50% { stroke-opacity:0.9; } }

.blood-vessel { animation: bloodPulse 1.4s ease-in-out infinite; }
.blood-vessel.v2 { animation-delay: 0.2s; }
.blood-vessel.v3 { animation-delay: 0.4s; }
@keyframes bloodPulse { 0%,100% { opacity:0.55; } 50% { opacity:0.9; } }

.patch-glow { animation: patchGlow 2s ease-in-out infinite; }
@keyframes patchGlow { 0%,100% { opacity:0.3; } 50% { opacity:0.6; } }

.tdds-shaft {
  stroke-dasharray: 200; stroke-dashoffset: 200;
  animation: drawShaft 1.2s ease forwards, shaftPulse 2s ease-in-out 1.2s infinite;
}
@keyframes drawShaft { to { stroke-dashoffset:0; } }
@keyframes shaftPulse { 0%,100% { stroke-opacity:0.7; } 50% { stroke-opacity:1; } }

.lbl { animation: lblFade 0.6s ease both; }
.lbl.l2 { animation-delay:0.1s; } .lbl.l3 { animation-delay:0.2s; } .lbl.l4 { animation-delay:0.3s; }
@keyframes lblFade { from { opacity:0; transform:translateX(-6px); } to { opacity:1; transform:translateX(0); } }

/* ══════════════════════════════════════
   THE COMPLETED JOURNEY SECTION
══════════════════════════════════════ */
.journey-section {
  background: linear-gradient(160deg, #fdf8f2 0%, #f5ede0 55%, #ede4d8 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.journey-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(42,157,176,0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(200,100,80,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.j-container {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px; position: relative; z-index: 1;
}
.j-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: #2a9db0;
  margin-bottom: 10px; display: block;
}
.j-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700; color: #2a1f14;
  line-height: 1.15; margin-bottom: 48px;
}
.j-title em { color: #2a9db0; font-style: italic; }
.j-body {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
@media (max-width: 760px) {
  .j-body { grid-template-columns: 1fr; gap: 32px; }
  .j-container { padding: 0 20px; }
}
.j-skin-svg {
  width: 100%; height: auto;
  filter: drop-shadow(0 16px 40px rgba(80,40,20,0.15));
  border-radius: 16px;
}
.j-content-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(42,157,176,0.1); border: 1px solid rgba(42,157,176,0.25);
  border-radius: 20px; padding: 5px 14px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: #2a9db0; margin-bottom: 20px;
}
.j-content-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #2a9db0; animation: jDot 1.6s ease-in-out infinite;
}
@keyframes jDot {
  0%,100% { opacity:0.4; transform:scale(1); }
  50%      { opacity:1;   transform:scale(1.3); }
}
.j-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: #2a1f14; line-height: 1.35; margin-bottom: 18px;
}
.j-content h3 em { color: #2a9db0; font-style: italic; }
.j-content > p { font-size: 15px; color: #5a4a3a; line-height: 1.78; margin-bottom: 30px; }
.j-stats { display: flex; flex-direction: column; gap: 12px; }
.j-stat {
  display: flex; align-items: center; gap: 14px;
  background: white; border-radius: 14px; padding: 14px 18px;
  box-shadow: 0 2px 12px rgba(80,40,20,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: jStatIn 0.7s ease both;
}
.j-stat:nth-child(1) { animation-delay: 0.2s; }
.j-stat:nth-child(2) { animation-delay: 0.35s; }
.j-stat:nth-child(3) { animation-delay: 0.5s; }
@keyframes jStatIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
.j-stat:hover { transform: translateX(6px); box-shadow: 0 6px 24px rgba(42,157,176,0.15); }
.j-stat-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.j-stat-icon.teal  { background: rgba(42,157,176,0.12); }
.j-stat-icon.coral { background: rgba(200,80,60,0.1); }
.j-stat-icon.gold  { background: rgba(200,150,40,0.12); }
.j-stat-label { font-size: 10.5px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: #9a8a78; }
.j-stat-value { font-size: 13.5px; color: #3a2e22; line-height: 1.45; margin-top: 2px; }

/* Journey SVG animations */
@keyframes jBloodFlow  { from { stroke-dashoffset:0; } to { stroke-dashoffset:-60; } }
@keyframes jGlowPulse  { 0%,100% { opacity:0.1; } 50% { opacity:0.48; } }
@keyframes jPatchPulse { 0%,100% { opacity:0.45; } 50% { opacity:0.82; } }
.j-blood-a { stroke-dasharray:40 20; animation: jBloodFlow 2s linear infinite; }
.j-blood-b { stroke-dasharray:40 20; animation: jBloodFlow 2s linear infinite 0.5s; }
.j-blood-c { stroke-dasharray:40 20; animation: jBloodFlow 2s linear infinite 1s; }
.j-patch-aura { animation: jPatchPulse 2.2s ease-in-out infinite; }
.j-glow-trail { animation: jGlowPulse 1.8s ease-in-out infinite; }

  /* ── Pen Devices ── */
  .pen-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin: 48px 0 56px;
  }
  .pen-hero-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
  }
  .pen-hero-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
  }
  .pen-hero-content h2 {
    font-size: 1.75rem;
    color: #0a2540;
    margin: 0 0 16px;
    line-height: 1.25;
  }
  .pen-hero-content p {
    color: #444;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.97rem;
  }
  .pen-hero-bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
  }
  .pen-hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333;
    font-size: 0.93rem;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .pen-hero-bullets li::before {
    content: "✦";
    color: #0d9e8a;
    font-size: 0.75rem;
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* ── Section divider ── */
  .section-divider {
    border: none;
    border-top: 2px solid #e8f0f5;
    margin: 48px 0;
  }

  /* ── Two Types Grid ── */
  .pen-types-heading {
    font-size: 1.5rem;
    color: #0a2540;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .pen-types-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
  }
  .pen-type-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid #e4eef5;
    background: #fff;
    box-shadow: 0 4px 24px rgba(10,37,64,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .pen-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(10,37,64,0.13);
  }
  .pen-type-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
  }
  .pen-type-card-body {
    padding: 24px 26px 28px;
  }
  .pen-type-badge {
    display: inline-block;
    background: #e6f7f4;
    color: #0d9e8a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
  }
  .pen-type-card-body h3 {
    font-size: 1.2rem;
    color: #0a2540;
    margin: 0 0 10px;
    font-weight: 700;
  }
  .pen-type-card-body p {
    color: #555;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 16px;
  }
  .pen-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eef3f7;
    padding-top: 14px;
  }
  .pen-type-features li {
    font-size: 0.88rem;
    color: #444;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .pen-type-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #0d9e8a;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .syringes-section { margin-bottom: 48px; }

  @media (max-width: 768px) {
    .pen-hero { grid-template-columns: 1fr; }
    .pen-types-grid { grid-template-columns: 1fr; }
  }
  
  /* ── syringe-cartridges ── */
  .product-tech-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:28px;
margin-top:30px;
}

.product-tech-card{
background:#fff;
border-radius:14px;
padding:18px;
box-shadow:0 8px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.product-tech-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.product-tech-image{
border-radius:10px;
overflow:hidden;
margin-bottom:14px;
}

.product-tech-image img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}

.product-tech-card h4{
font-size:18px;
color:#143c6b;
margin-bottom:8px;
}

.product-tech-card p{
font-size:14px;
line-height:1.6;
color:#555;
}

@media(max-width:900px){
.product-tech-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.product-tech-grid{
grid-template-columns:1fr;
}
}
