:root {
  --ink: #07162c;
  --text: #28384c;
  --muted: #65758a;
  --line: #dfe9f2;
  --soft: #eef6fc;
  --white: #ffffff;
  --blue: #0057c8;
  --cyan: #1fb7d8;
  --green: #12a989;
  --purple: #5a1bb3;
  --orange: #f28a00;
  --shadow: 0 22px 55px rgba(7, 22, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 10px clamp(18px, 5vw, 84px);
  background: rgba(5, 20, 45, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(4, 13, 28, 0.18);
  backdrop-filter: blur(14px);
}

.logo img {
  width: 210px;
}

.logo {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  color: var(--white);
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 800;
  text-transform: uppercase;
  flex-wrap: wrap;
  max-width: 880px;
}

.nav a {
  position: relative;
  opacity: 0.9;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav a:hover {
  opacity: 1;
  color: #9ee9ff;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: #9ee9ff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero,
.detail-hero {
  display: grid;
  align-items: center;
  min-height: 720px;
  padding: 140px clamp(20px, 6vw, 92px) 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.92), rgba(6, 38, 92, 0.65)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.page-hero {
  padding: 150px clamp(20px, 6vw, 92px) 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(7, 38, 92, 0.72)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/header-1.jpg") center/cover;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.hero-inner {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn,
.product-link,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn.primary,
.product-link,
.contact-form button {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(0, 87, 200, 0.24);
}

.btn.secondary {
  color: var(--ink);
  background: var(--white);
}

.btn:hover,
.product-link:hover,
.contact-form button:hover,
.hr-form button:hover {
  transform: translateY(-3px);
}

.btn.primary:hover,
.product-link:hover,
.contact-form button:hover,
.hr-form button:hover {
  background: #0044a8;
  box-shadow: 0 18px 40px rgba(0, 87, 200, 0.34);
}

.btn.secondary:hover {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.24);
}

.btn:focus-visible,
.product-link:focus-visible,
.contact-form button:focus-visible,
.hr-form button:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(31, 183, 216, 0.55);
  outline-offset: 4px;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 92px);
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  background: var(--ink);
}

.intro h2,
.intro p {
  color: var(--white);
}

.intro > p {
  align-self: end;
  color: #c8d7e7;
  font-size: 20px;
}

.section-title {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-title.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

.products-section {
  background: linear-gradient(180deg, #f4f9fe, #ffffff);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  grid-template-rows: 250px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
  transition:
    transform 190ms ease,
    border-color 190ms ease,
    box-shadow 190ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 87, 200, 0.34);
  box-shadow: 0 24px 52px rgba(7, 22, 44, 0.16);
}

.product-image {
  display: grid;
  place-items: center;
  padding: 22px;
  background: #f7fbff;
  transition: background-color 190ms ease;
}

.product-image img {
  width: 100%;
  height: 206px;
  object-fit: contain;
  transition: transform 190ms ease;
}

.product-card:hover .product-image {
  background: #edf7ff;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  text-align: center;
}

.product-content span {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-content p {
  color: var(--muted);
}

.product-link {
  width: fit-content;
  margin-top: 12px;
}

.quality {
  background: var(--white);
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.quality-grid article {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 22, 44, 0.06);
}

.quality-grid p {
  color: var(--muted);
}

.partners {
  background: var(--soft);
}

.partners-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  max-width: 1180px;
  margin: 0 auto;
}

.partners-info {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 420px;
  text-align: left;
}

.partners-main-logo {
  width: 230px;
  padding: 14px 16px;
  background: #07162c;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.16);
}

.partners-info h2 {
  margin-bottom: 10px;
}

.partners-info p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.partners-contact {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 15px;
}

.partners-contact strong {
  color: var(--ink);
  font-size: 17px;
}

.partners-contact a {
  width: fit-content;
  color: var(--blue);
  font-weight: 800;
}

.partners-panel {
  display: grid;
  gap: 24px;
}

.partners-panel h2 {
  margin-bottom: 0;
  text-align: left;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.partner-row img {
  display: grid;
  width: 100%;
  height: 138px;
  object-fit: contain;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(7, 22, 44, 0.06);
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 6vw, 92px);
  background: linear-gradient(180deg, #f4f9fe, #ffffff);
}

.contact-panel,
.hours-panel,
.map-panel,
.hr-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.contact-panel {
  padding: 34px;
}

.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.hours-panel {
  padding: 34px;
}

.hours-panel strong {
  display: block;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.hr-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 34px;
}

.form-heading {
  grid-column: 1 / -1;
  max-width: 760px;
}

.form-heading p {
  color: var(--muted);
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 7px;
  font-weight: 800;
}

.form-status.success,
.form-status.error {
  display: block;
}

.form-status.success {
  color: #075a31;
  background: #e7f8ef;
  border: 1px solid #b8e6cb;
}

.form-status.error {
  color: #8a1f1f;
  background: #fff0f0;
  border: 1px solid #f0c0c0;
}

.hr-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hr-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd8e5;
  border-radius: 6px;
  font: inherit;
}

.hr-form button {
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 48px;
  padding: 0 24px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
}

.contact-list.dark a {
  color: var(--blue);
  border-bottom-color: rgba(0, 87, 200, 0.28);
  font-weight: 800;
}

.map-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
}

.map-heading {
  padding: 34px;
}

.map-heading p {
  color: var(--muted);
}

.map-heading strong {
  color: var(--blue);
}

.map-panel iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(64px, 8vw, 116px) clamp(20px, 6vw, 92px);
  color: var(--white);
  background: var(--ink);
}

.contact h2 {
  color: var(--white);
}

.contact p {
  color: #c9d8e7;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-list a {
  width: fit-content;
  color: #eaf6ff;
  border-bottom: 1px solid rgba(234, 246, 255, 0.45);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cbd8e5;
  border-radius: 6px;
  font: inherit;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 92px);
  color: #dce9f5;
  background: #040c18;
  font-size: 14px;
}

.detail-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
}

.detail-hero.compact {
  grid-template-columns: 1fr;
}

.detail-hero img {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-content {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 5vw, 70px);
}

.detail-content p {
  color: var(--muted);
  font-size: 20px;
}

.metrics {
  background: #f5f7fa;
}

.metrics-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 54px 36px;
  text-align: center;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.metrics-card h2 {
  color: #7a4a33;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.metric-row div {
  padding: 16px;
  border-right: 1px solid #d3c0b7;
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  color: #7a4a33;
  font-size: 34px;
  line-height: 1;
}

.metric-row span {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
}

.detail-quality {
  background: var(--white);
}

.bmac-hero img {
  background: rgba(255, 255, 255, 0.96);
}

.bmac-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(28px, 5vw, 70px);
}

.copy-block {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 19px;
}

.bmac-usage {
  background: linear-gradient(180deg, #f4f9fe, #ffffff);
}

.usage-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto 42px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.usage-row:last-child {
  margin-bottom: 0;
}

.usage-row.reverse img {
  order: 2;
}

.usage-row img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.usage-row p {
  color: var(--muted);
  font-size: 18px;
}

.lipanova-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(68, 35, 58, 0.62)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.lipanova-hero img {
  background: linear-gradient(145deg, #ffffff, #fff4f7);
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-badges span {
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.lipanova-section {
  background: linear-gradient(180deg, #fff8fa, #ffffff);
}

.lipanova-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  max-width: 1180px;
  margin: 0 auto;
}

.lipanova-showcase p {
  color: var(--muted);
  font-size: 19px;
}

.lipanova-showcase img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
}

.lipanova-flow {
  background: #ffffff;
}

.lipanova-advantage {
  background: linear-gradient(180deg, #f5f7fa, #ffffff);
}

.lipanova-table-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.lipanova-table-card img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.lipanova-table-card p {
  color: var(--muted);
  font-size: 18px;
}

.lipanova-note {
  margin-top: 18px;
  font-size: 14px !important;
  font-style: italic;
}

.prp-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(122, 74, 51, 0.52)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.prp-hero img {
  background: linear-gradient(145deg, #ffffff, #fff6e8);
}

.prp-proof {
  background: linear-gradient(180deg, #fffaf2, #ffffff);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.proof-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid #eaded2;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(122, 74, 51, 0.08);
}

.proof-grid h3 {
  color: #7a4a33;
}

.proof-grid p {
  color: var(--muted);
  font-size: 16px;
}

.prp-metrics {
  background: #f6f2ef;
}

.protocol-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 8px;
}

.protocol-row span {
  padding: 12px 22px;
  color: #7a4a33;
  background: #d5b6a6;
  border-radius: 999px;
  font-weight: 900;
}

.metric-note {
  margin-top: 24px;
  color: #7a4a33;
  font-size: 14px;
}

.prp-score {
  background: var(--white);
}

.score-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff, #f7f3ef);
  border: 1px solid #eaded2;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.score-card h2 {
  color: #7a4a33;
}

.score-card p {
  color: var(--muted);
  font-size: 18px;
}

.score-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.tubes-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(158, 68, 43, 0.5)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.tubes-hero img {
  background: linear-gradient(145deg, #ffffff, #fff1eb);
}

.tubes-tech {
  background: linear-gradient(180deg, #fff5f0, #ffffff);
}

.tubes-tech-card,
.literature-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #efd9ce;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.tubes-tech-card img,
.literature-card img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 8px;
}

.tubes-tech-card p,
.literature-card p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.14em;
  content: "";
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px #fff3e3;
}

.proof-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.tubes-proof {
  background: #ffffff;
}

.tubes-literature {
  background: linear-gradient(180deg, #f4f9fe, #ffffff);
}

.syringe-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(22, 108, 96, 0.52)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.syringe-hero img {
  background: linear-gradient(145deg, #ffffff, #eefbf7);
}

.syringe-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #f4fffb, #ffffff);
}

.syringe-steps-section {
  background: #ffffff;
}

.syringe-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.syringe-steps article {
  display: grid;
  align-content: start;
  min-height: 520px;
  padding: 28px;
  background: var(--white);
  border: 1px solid #d6eee8;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.08);
}

.syringe-steps img {
  width: 100%;
  height: 270px;
  object-fit: contain;
  margin-bottom: 22px;
}

.syringe-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.syringe-steps h3 {
  color: #0b6f63;
}

.syringe-steps p {
  color: var(--muted);
  font-size: 17px;
}

.syringe-metrics {
  background: linear-gradient(180deg, #eefbf7, #ffffff);
}

.syringe-metrics .metrics-card h2,
.syringe-metrics .metric-row strong,
.syringe-metrics .metric-note {
  color: #0b6f63;
}

.prx-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(122, 82, 66, 0.58)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.prx-hero img {
  background: linear-gradient(145deg, #ffffff, #f7eee8);
}

.prx-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #fbf3ee, #ffffff);
}

.prx-protocols {
  display: grid;
  gap: 34px;
  background: #ffffff;
}

.protocol-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #eadbd3;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.protocol-card.reverse img {
  order: 2;
}

.protocol-card img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.protocol-card p {
  color: var(--muted);
  font-size: 18px;
}

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.mini-stats span {
  padding: 12px 14px;
  color: #7a4a33;
  background: #f4e4db;
  border-radius: 8px;
  font-weight: 800;
}

.mini-stats strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
}

.prx-process-section {
  background: linear-gradient(180deg, #f7f3ef, #ffffff);
}

.prx-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 28px;
}

.prx-step-grid article {
  padding: 26px;
  background: var(--white);
  border: 1px solid #eadbd3;
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(7, 22, 44, 0.06);
}

.prx-step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #ffffff;
  background: #b76435;
  border-radius: 50%;
  font-weight: 900;
}

.prx-step-grid h3 {
  color: #7a4a33;
}

.prx-step-grid p {
  color: var(--muted);
}

.process-wide {
  width: min(100%, 1120px);
  max-height: 430px;
  object-fit: contain;
  margin: 0 auto;
  padding: 26px;
  background: var(--white);
  border: 1px solid #eadbd3;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.exomas-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(86, 22, 120, 0.58)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.exomas-hero img {
  background: linear-gradient(145deg, #ffffff, #fbf2ff);
}

.exomas-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #fbf3ff, #ffffff);
}

.exomas-cargo,
.exomas-tech,
.exomas-results {
  background: #ffffff;
}

.cargo-grid,
.tech-pair,
.numatrix-steps,
.numatrix-info-grid {
  display: grid;
  gap: 22px;
}

.cargo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cargo-grid article,
.tech-pair article,
.flow-card,
.numatrix-steps article,
.numatrix-info-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid #eadcf3;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.cargo-grid img,
.tech-pair img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin-bottom: 20px;
}

.cargo-grid h3,
.tech-pair h3 {
  color: var(--purple);
}

.cargo-grid p,
.tech-pair p,
.autolog-card p,
.results-card p,
.flow-card p,
.numatrix-steps p,
.numatrix-info-grid p {
  color: var(--muted);
  font-size: 17px;
}

.tech-pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1120px;
  margin: 0 auto;
}

.exomas-autolog,
.exomas-metrics {
  background: linear-gradient(180deg, #f7f2fb, #ffffff);
}

.autolog-card,
.results-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #eadcf3;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.autolog-card img,
.results-card img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
}

.exomas-metrics .metrics-card h2,
.exomas-metrics .metric-row strong {
  color: var(--purple);
}

.flow-card {
  max-width: 1180px;
  margin: 28px auto 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.flow-grid span {
  padding: 13px 14px;
  color: var(--purple);
  background: #f5ecfb;
  border-radius: 8px;
  font-weight: 900;
}

.numatrix-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(65, 72, 150, 0.58)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.numatrix-hero img {
  background: linear-gradient(145deg, #ffffff, #f4f3ff);
}

.numatrix-steps-section {
  background: linear-gradient(180deg, #f6f6ff, #ffffff);
}

.numatrix-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.numatrix-steps article {
  display: grid;
  align-content: start;
  text-align: center;
  border-color: #dedffa;
}

.numatrix-steps img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 18px;
}

.numatrix-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  color: #ffffff;
  background: #4f58ba;
  border-radius: 50%;
  font-weight: 900;
}

.numatrix-why {
  background: #ffffff;
}

.numatrix-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.numatrix-info-grid article {
  border-color: #dedffa;
}

.numatrix-info-grid h3 {
  color: #4f58ba;
}

.cellanova-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(70, 102, 91, 0.62)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.cellanova-hero img {
  background: linear-gradient(145deg, #ffffff, #f1f8f5);
}

.cellanova-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #f2faf6, #ffffff);
}

.cellanova-study,
.cellanova-banner-section,
.cellanova-results {
  background: #ffffff;
}

.study-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #dce9e4;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.study-card img {
  width: 100%;
  max-height: 380px;
  object-fit: contain;
}

.study-card p,
.study-card strong {
  color: var(--muted);
  font-size: 18px;
}

.study-card strong {
  display: block;
  margin-top: 18px;
  color: #60786e;
}

.cellanova-proof {
  background: linear-gradient(180deg, #f7fbf9, #ffffff);
}

.cellanova-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cellanova-proof-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid #dce9e4;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.cellanova-proof-grid img {
  width: 100%;
  height: 230px;
  object-fit: contain;
  margin-bottom: 20px;
}

.cellanova-proof-grid h3,
.cellanova-metrics .metrics-card h2,
.cellanova-metrics .metric-row strong {
  color: #60786e;
}

.cellanova-proof-grid p {
  color: var(--muted);
}

.cellanova-banner {
  width: min(100%, 1180px);
  max-height: 360px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.cellanova-metrics {
  background: linear-gradient(180deg, #edf7f2, #ffffff);
}

.cellanova-results .results-card {
  border-color: #dce9e4;
}

.flow-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flow-grid.compact span {
  color: #60786e;
  background: #eef7f2;
}

.results-card.stacked {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.results-card.stacked img {
  max-height: 340px;
}

.cellanova-footnote {
  max-width: 1120px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  font-style: italic;
}

.nxt-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(219, 116, 13, 0.48)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.nxt-hero img {
  background: linear-gradient(145deg, #ffffff, #fff7eb);
}

.nxt-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #fff7eb, #ffffff);
}

.nxt-features,
.nxt-motor,
.nxt-specs {
  background: #ffffff;
}

.feature-machine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-machine-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid #f0dfca;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.feature-machine-grid img {
  width: 100%;
  height: 250px;
  object-fit: contain;
  margin-bottom: 20px;
}

.feature-machine-grid h3,
.machine-card h2 {
  color: #d8740d;
}

.feature-machine-grid p,
.machine-card p {
  color: var(--muted);
  font-size: 17px;
}

.nxt-cooling {
  background: linear-gradient(180deg, #f4f9fe, #ffffff);
}

.machine-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #f0dfca;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.machine-card.reverse img {
  order: 2;
}

.machine-card img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.spec-grid span {
  padding: 16px 18px;
  color: var(--ink);
  background: #fff7eb;
  border: 1px solid #f0dfca;
  border-radius: 8px;
  font-weight: 800;
}

.gel-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(65, 83, 137, 0.56)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.gel-hero img {
  background: linear-gradient(145deg, #ffffff, #f4f7ff);
}

.gel-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #f4f7ff, #ffffff);
}

.gel-viscosity,
.gel-device,
.gel-specs {
  background: #ffffff;
}

.viscosity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.viscosity-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid #dfe5f7;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.viscosity-grid img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  margin-bottom: 20px;
}

.viscosity-grid h3 {
  color: #415389;
}

.viscosity-grid p {
  margin-bottom: 8px;
  color: var(--muted);
}

.viscosity-grid span {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-weight: 900;
}

.gel-harmony {
  background: linear-gradient(180deg, #f5f8ff, #ffffff);
}

.gel-harmony .machine-card,
.gel-device .machine-card {
  border-color: #dfe5f7;
}

.gel-harmony .machine-card h2,
.gel-device .machine-card h2 {
  color: #415389;
}

.spec-image {
  width: min(100%, 1180px);
  max-height: 520px;
  object-fit: contain;
  margin: 0 auto;
  padding: 22px;
  background: var(--white);
  border: 1px solid #dfe5f7;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.vivosel-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(18, 116, 168, 0.56)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.vivosel-hero img {
  background: linear-gradient(145deg, #ffffff, #edf8ff);
}

.vivosel-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #eef8ff, #ffffff);
}

.vivosel-options,
.vivosel-coldchain,
.vivosel-certificates {
  background: #ffffff;
}

.vivosel-product-card,
.coldchain-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #d7eafb;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.vivosel-product-card img,
.coldchain-card img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
}

.option-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.option-list span {
  padding: 15px 18px;
  color: var(--ink);
  background: #eff8ff;
  border: 1px solid #d7eafb;
  border-radius: 8px;
  font-weight: 900;
}

.vivosel-spectrum {
  background: linear-gradient(180deg, #f4faff, #ffffff);
}

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.spectrum-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid #d7eafb;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.spectrum-grid h3,
.vivosel-product-card h2,
.coldchain-card h2 {
  color: #1274a8;
}

.spectrum-grid p,
.vivosel-product-card p,
.coldchain-card p {
  color: var(--muted);
  font-size: 17px;
}

.certificate-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
  background: var(--white);
  border: 1px solid #ef5350;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.certificate-panel .section-title {
  margin-bottom: 22px;
}

.certificate-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.certificate-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 220px;
  padding: 0 20px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #b8d2ed;
  border-radius: 6px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.certificate-links a:hover {
  transform: translateY(-3px);
  color: #1274a8;
  border-color: #1274a8;
  box-shadow: 0 14px 28px rgba(18, 116, 168, 0.16);
}

.hp-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(0, 70, 160, 0.56)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.hp-hero img {
  background: linear-gradient(145deg, #ffffff, #eef6ff);
}

.hp-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #eef6ff, #ffffff);
}

.hp-stats,
.hp-manufacturer,
.hp-quality,
.hp-faq {
  background: #ffffff;
}

.hp-metric-row {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px;
  background: var(--white);
  border: 1px solid #d7e7fb;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.hp-metric-row strong {
  color: #004aa0;
  font-size: 30px;
}

.hp-film {
  background: linear-gradient(180deg, #f4f9ff, #ffffff);
}

.hp-film-card,
.manufacturer-card,
.quality-cert-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #d7e7fb;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.hp-film-card img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.hp-film-card h2,
.manufacturer-card h2,
.quality-cert-card h2 {
  color: #004aa0;
}

.hp-film-card p,
.manufacturer-card p,
.quality-cert-card p {
  color: var(--muted);
  font-size: 18px;
}

.hp-mechanism {
  background: #ffffff;
}

.hp-mechanism-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hp-mechanism-grid article {
  padding: 24px;
  background: var(--white);
  border: 1px solid #d7e7fb;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.hp-mechanism-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 8px;
}

.hp-mechanism-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  color: #ffffff;
  background: #004aa0;
  border-radius: 50%;
  font-weight: 900;
}

.hp-mechanism-grid h3 {
  color: #004aa0;
}

.hp-mechanism-grid p {
  color: var(--muted);
}

.patent-card,
.cert-list {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: #f2f7ff;
  border-radius: 8px;
}

.patent-card span,
.document-grid span {
  color: #004aa0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.patent-card strong {
  color: var(--ink);
  font-size: 20px;
}

.patent-card small,
.document-grid small {
  color: var(--muted);
  font-weight: 800;
}

.hp-docs {
  background: linear-gradient(180deg, #f4f9ff, #ffffff);
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.document-grid a {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 26px;
  background: var(--white);
  border: 1px solid #d7e7fb;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.document-grid a:hover {
  transform: translateY(-5px);
  border-color: #004aa0;
  box-shadow: 0 18px 36px rgba(0, 74, 160, 0.14);
}

.document-grid strong {
  color: var(--ink);
  font-size: 22px;
}

.cert-list span,
.cert-list a {
  padding: 12px 14px;
  color: #004aa0;
  background: #ffffff;
  border: 1px solid #d7e7fb;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cert-list a:hover {
  transform: translateY(-2px);
  border-color: #004aa0;
  box-shadow: 0 10px 22px rgba(0, 74, 160, 0.12);
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.faq-columns h3 {
  color: #004aa0;
}

.faq-columns details {
  margin-bottom: 12px;
  background: #f6f9fd;
  border: 1px solid #dce7f4;
  border-radius: 8px;
}

.faq-columns summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-columns details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.pext-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(84, 54, 75, 0.62)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.pext-hero img {
  background: linear-gradient(145deg, #ffffff, #fbf2f8);
}

.pext-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #fbf2f8, #ffffff);
}

.pext-showcase,
.pext-formula,
.pext-docs {
  background: #ffffff;
}

.pext-card,
.formula-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px;
  background: var(--white);
  border: 1px solid #eadbe4;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(7, 22, 44, 0.08);
}

.pext-card img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

.pext-card h2,
.formula-card h2,
.pext-use-grid h3 {
  color: #6f4862;
}

.pext-card p,
.formula-card p,
.pext-use-grid p {
  color: var(--muted);
  font-size: 17px;
}

.pext-uses {
  background: linear-gradient(180deg, #fbf7ef, #ffffff);
}

.pext-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pext-use-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid #eadbe4;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.formula-list {
  display: grid;
  gap: 12px;
}

.formula-list span {
  padding: 15px 18px;
  color: #6f4862;
  background: #fbf2f8;
  border: 1px solid #eadbe4;
  border-radius: 8px;
  font-weight: 900;
}

.document-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 850px;
  margin: 0 auto;
}

.biovial-hero {
  background:
    linear-gradient(90deg, rgba(3, 36, 50, 0.95), rgba(0, 134, 128, 0.66)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.biovial-hero img {
  background: linear-gradient(145deg, #ffffff, #e8fbf7);
  object-position: center top;
}

.biovial-intro {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(28px, 5vw, 70px);
  background: linear-gradient(180deg, #effdfa, #ffffff);
}

.origin-note {
  display: inline-flex;
  width: fit-content;
  padding: 12px 18px;
  color: #006b67;
  background: #e8fbf7;
  border: 1px solid #bfeee7;
  border-radius: 999px;
  font-weight: 900;
}

.biovial-layer,
.biovial-docs {
  background: #ffffff;
}

.biovial-layer .center-lead {
  max-width: 900px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.biovial-ha-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.biovial-ha-grid article {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff, #f4fbfa);
  border: 1px solid #ccefeb;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 86, 92, 0.08);
}

.biovial-ha-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 9px 13px;
  color: #006b67;
  background: #e8fbf7;
  border-radius: 999px;
  font-weight: 900;
}

.biovial-ha-grid h3,
.mechanism-card h2,
.mechanism-card h3 {
  color: #006b67;
}

.biovial-ha-grid p,
.mechanism-card p {
  color: var(--muted);
  font-size: 17px;
}

.biovial-mechanism {
  background: linear-gradient(180deg, #f6fbff, #ffffff);
}

.mechanism-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  background: #ffffff;
  border: 1px solid #d6eeec;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(7, 22, 44, 0.08);
}

.mechanism-card img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7fbfb;
}

.biovial-docs .document-grid.two {
  grid-template-columns: minmax(0, 1fr);
  max-width: 560px;
}

.profortis-hero {
  background:
    linear-gradient(90deg, rgba(7, 22, 44, 0.94), rgba(14, 82, 126, 0.66)),
    url("https://tulparmedikal.com.tr/wp-content/uploads/2025/01/tulpar-medikal-slider.jpg") center/cover;
}

.profortis-hero img {
  background: linear-gradient(145deg, #ffffff, #eef6ff);
}

.profortis-overview,
.profortis-composition,
.profortis-lifestyle,
.profortis-faq {
  background: #ffffff;
}

.profortis-showcase,
.composition-card,
.profortis-use,
.profortis-lifestyle {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
}

.profortis-showcase {
  padding: 30px;
  border: 1px solid #d8e8f7;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(7, 22, 44, 0.08);
}

.profortis-showcase img,
.composition-card img,
.profortis-use img,
.profortis-lifestyle img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 8px;
}

.profortis-showcase h2,
.profortis-banner h2,
.profortis-use h2,
.profortis-lifestyle h2,
.profortis-faq h2 {
  color: #005276;
}

.profortis-showcase p,
.profortis-banner p,
.profortis-use p,
.profortis-lifestyle p,
.profortis-faq p {
  color: var(--muted);
  font-size: 17px;
}

.profortis-facts,
.composition-list {
  display: grid;
  gap: 12px;
}

.profortis-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.profortis-facts span,
.composition-list span {
  padding: 15px 17px;
  background: #eef6ff;
  border: 1px solid #d8e8f7;
  border-radius: 8px;
  color: #005276;
  font-weight: 800;
}

.profortis-facts strong {
  display: block;
  color: #07162c;
  font-size: 24px;
}

.profortis-banner {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  background: linear-gradient(180deg, #eef6ff, #ffffff);
}

.profortis-banner img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.composition-card {
  padding: 32px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  border: 1px solid #d8e8f7;
  border-radius: 8px;
}

.profortis-use {
  background: linear-gradient(180deg, #f7fbff, #ffffff);
}

.profortis-warning {
  padding: 18px 20px;
  background: #fff8e8;
  border: 1px solid #f2d59a;
  border-radius: 8px;
  color: #6f4f12 !important;
  font-weight: 800;
}

.profortis-faq-list {
  max-width: 960px;
  margin: 0 auto;
  border: 1px solid #d8e8f7;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 22, 44, 0.07);
}

.profortis-faq-list details {
  border-bottom: 1px solid #d8e8f7;
}

.profortis-faq-list details:last-child {
  border-bottom: 0;
}

.profortis-faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #07162c;
  font-weight: 900;
  list-style: none;
}

.profortis-faq-list summary::-webkit-details-marker {
  display: none;
}

.profortis-faq-list summary::after {
  content: "+";
  float: right;
  color: #005276;
  font-size: 24px;
  line-height: 1;
}

.profortis-faq-list details[open] summary::after {
  content: "-";
}

.profortis-faq-list p {
  margin: 0;
  padding: 0 24px 22px;
}

@media (max-width: 1120px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid,
  .proof-grid.three,
  .syringe-steps,
  .prx-step-grid,
  .cargo-grid,
  .numatrix-steps,
  .numatrix-info-grid,
  .cellanova-proof-grid,
  .feature-machine-grid,
  .spec-grid,
  .viscosity-grid,
  .spectrum-grid,
  .hp-mechanism-grid,
  .document-grid,
  .biovial-ha-grid,
  .pext-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img {
    width: 220px;
  }

  .partners-layout {
    grid-template-columns: 1fr;
  }

  .partner-row {
    width: 100%;
    margin: 0;
    transform: none;
  }

  .hero,
  .detail-hero,
  .intro,
  .contact,
  .detail-content,
  .contact-page,
  .map-panel,
  .bmac-intro,
  .syringe-intro,
  .prx-intro,
  .exomas-intro,
  .cellanova-intro,
  .nxt-intro,
  .gel-intro,
  .vivosel-intro,
  .hp-intro,
  .pext-intro,
  .biovial-intro,
  .profortis-showcase,
  .composition-card,
  .profortis-use,
  .profortis-lifestyle,
  .profortis-banner,
  .usage-row,
  .lipanova-showcase,
  .lipanova-table-card,
  .score-card,
  .tubes-tech-card,
  .literature-card,
  .protocol-card,
  .tech-pair,
  .autolog-card,
  .results-card,
  .study-card,
  .machine-card,
  .vivosel-product-card,
  .coldchain-card,
  .hp-film-card,
  .manufacturer-card,
  .quality-cert-card,
  .faq-columns,
  .pext-card,
  .formula-card,
  .mechanism-card {
    grid-template-columns: 1fr;
  }

  .machine-card.reverse img {
    order: 0;
  }

  .protocol-card.reverse img {
    order: 0;
  }

  .usage-row.reverse img {
    order: 0;
  }

  .products-grid,
  .quality-grid,
  .proof-grid,
  .proof-grid.three,
  .syringe-steps,
  .prx-step-grid,
  .cargo-grid,
  .numatrix-steps,
  .numatrix-info-grid,
  .cellanova-proof-grid,
  .feature-machine-grid,
  .spec-grid,
  .viscosity-grid,
  .spectrum-grid,
  .hp-mechanism-grid,
  .document-grid,
  .biovial-ha-grid,
  .pext-use-grid,
  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hr-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .logo {
    width: 100%;
  }

  .logo img {
    width: min(230px, 100%);
  }

  .partners-main-logo {
    width: min(230px, 100%);
  }

  .hero,
  .detail-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .products-grid,
  .quality-grid,
  .proof-grid,
  .proof-grid.three,
  .syringe-steps,
  .prx-step-grid,
  .cargo-grid,
  .numatrix-steps,
  .numatrix-info-grid,
  .cellanova-proof-grid,
  .feature-machine-grid,
  .spec-grid,
  .viscosity-grid,
  .spectrum-grid,
  .hp-mechanism-grid,
  .document-grid,
  .document-grid.two,
  .biovial-ha-grid,
  .profortis-facts,
  .pext-use-grid,
  .flow-grid,
  .flow-grid.compact,
  .results-card.stacked,
  .partner-row,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row div {
    border-right: 0;
    border-bottom: 1px solid #d3c0b7;
  }

  .metric-row div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
