/* VascularVita site — brand 0.95 */

:root {
  --vv-font-display: Georgia, "Times New Roman", serif;
  --vv-font-body: "Roboto", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--vv-font-body);
  color: var(--vv-navy);
  background: var(--vv-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header {
  top: 32px;
}

.site-main {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(24, 32, 48, 0.1);
  box-shadow: 0 1px 14px rgba(24, 32, 48, 0.04);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(24, 32, 48, 0.08);
  border-bottom-color: rgba(24, 32, 48, 0.14);
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 86px;
  padding: 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--vv-navy);
  min-width: 0;
}

.site-header__seal {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-header__brand-copy {
  display: grid;
  gap: 0.1rem;
}

.site-header__wordmark {
  font-family: var(--vv-font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--vv-navy);
}

.site-header__descriptor {
  color: #5d6572;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-navigation {
  margin-left: auto;
}

.vv-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem;
  border: 1px solid rgba(24, 32, 48, 0.16);
  border-radius: 999px;
  background: #fff;
  flex: 0 0 auto;
}

.vv-language-switcher a {
  min-width: 2rem;
  padding: 0.35rem 0.45rem;
  border-radius: 999px;
  color: var(--vv-navy);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.vv-language-switcher a:hover,
.vv-language-switcher a:focus-visible {
  color: var(--vv-red);
}

.vv-language-switcher a.is-active {
  color: #fff;
  background: var(--vv-navy);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--vv-navy);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
  color: var(--vv-red);
}

.site-nav .menu-item-has-children {
  position: relative;
}

.site-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 230px;
  margin: 0;
  padding: 0.8rem 0;
  list-style: none;
  background: var(--vv-white);
  border: 1px solid rgba(24, 32, 48, 0.1);
  box-shadow: 0 16px 34px rgba(24, 32, 48, 0.12);
  z-index: 20;
}

.site-nav .menu-item-has-children:hover > .sub-menu,
.site-nav .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}

.site-nav .sub-menu a {
  display: block;
  padding: 0.62rem 1rem;
  font-weight: 400;
  font-size: 0.9rem;
  white-space: nowrap;
}

.site-header .site-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  padding: 0.65rem 0.8rem;
  color: var(--vv-navy);
  background: var(--vv-white);
  border: 1px solid rgba(24, 32, 48, 0.18);
  border-radius: 2px;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.site-nav-toggle__icon {
  width: 20px;
  display: grid;
  gap: 4px;
}

.site-nav-toggle__icon span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer .site-nav {
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer .sub-menu {
  display: none;
}

.site-footer {
  background: var(--vv-navy);
  color: var(--vv-gray);
  padding: 3rem 1.5rem 2rem;
}

.site-footer a {
  color: var(--vv-white);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--vv-ring);
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer__brand {
  font-family: var(--vv-font-display);
  color: var(--vv-white);
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.site-footer__tag {
  font-size: 0.95rem;
  color: var(--vv-silver);
  margin: 0;
}

.site-footer__copy {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: var(--vv-silver);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

/* Motion */
.vv-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.vv-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .vv-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero */
.vv-hero {
  position: relative;
  isolation: isolate;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 88% 18%, rgba(194, 51, 60, 0.28), transparent 58%),
    radial-gradient(ellipse 40% 50% at 12% 88%, rgba(248, 224, 224, 0.08), transparent 55%),
    linear-gradient(152deg, #1c2638 0%, var(--vv-navy) 42%, #0c1018 100%);
  color: var(--vv-white);
}

.vv-hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: min(58vw, 640px);
  aspect-ratio: 1;
  background: url("brand-seal.webp") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  animation: vv-seal-drift 18s ease-in-out infinite alternate;
}

.vv-hero > .e-con-inner,
.vv-hero > .elementor-container,
.vv-hero .e-con-inner {
  position: relative;
  z-index: 1;
}

@keyframes vv-seal-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-2%, -3%, 0) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .vv-hero::before {
    animation: none;
  }
}

.vv-hero .elementor-heading-title,
.vv-hero h1 {
  font-family: var(--vv-font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.vv-hero-brand .elementor-heading-title {
  font-size: clamp(2.75rem, 6vw, 4.25rem) !important;
  line-height: 1.02 !important;
  color: #fff !important;
  margin-bottom: 0.35rem !important;
}

.vv-hero-tagline {
  color: var(--vv-ring);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
}

.vv-hero-lead {
  color: #d8dce3 !important;
  font-size: 1.18rem !important;
  line-height: 1.65 !important;
  max-width: 34em;
  margin: 1.15rem 0 1.75rem !important;
}

.vv-btn-primary .elementor-button,
a.vv-btn-primary {
  background: var(--vv-red) !important;
  border-color: var(--vv-red) !important;
  color: #fff !important;
  border-radius: 2px !important;
  font-weight: 500;
  font-size: 1.02rem !important;
  padding: 16px 30px !important;
  transition: background 0.25s ease, transform 0.25s ease !important;
}

.vv-btn-primary .elementor-button:hover,
a.vv-btn-primary:hover {
  background: #a82b33 !important;
  transform: translateY(-1px);
}

.vv-btn-secondary .elementor-button,
a.vv-btn-secondary {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  color: #fff !important;
  border-radius: 2px !important;
  font-size: 1.02rem !important;
  padding: 16px 30px !important;
  transition: border-color 0.25s ease, background 0.25s ease !important;
}

.vv-btn-secondary .elementor-button:hover,
a.vv-btn-secondary:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

.vv-section-label {
  color: var(--vv-red);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
}

.vv-section-intro {
  max-width: 40em;
  color: #3a4558;
  font-size: 1.08rem;
  margin: 0.35rem 0 0;
}

/* Ürün rayı — 5 hat tek satırda kayar, boşluk bırakmaz */
.vv-rail {
  --rail-gap: clamp(1.25rem, 2.5vw, 2rem);
  --rail-visible: 3.25;
  margin-top: 2.25rem;
}

.vv-rail__viewport {
  margin-inline: calc(-1 * var(--rail-gap));
  padding-inline: var(--rail-gap);
}

.vv-rail__track {
  display: flex;
  gap: var(--rail-gap);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(24, 32, 48, 0.3) rgba(24, 32, 48, 0.08);
}

.vv-rail__track:focus-visible {
  outline: 2px solid var(--vv-red);
  outline-offset: 6px;
}

.vv-rail__track::-webkit-scrollbar {
  height: 5px;
}

.vv-rail__track::-webkit-scrollbar-track {
  background: rgba(24, 32, 48, 0.08);
}

.vv-rail__track::-webkit-scrollbar-thumb {
  background: rgba(24, 32, 48, 0.3);
}

.vv-rail__track > .vv-product-card {
  flex: 0 0 calc((100% - (var(--rail-visible) - 1) * var(--rail-gap)) / var(--rail-visible));
  scroll-snap-align: start;
}

.vv-rail__nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.vv-rail__btn {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: var(--vv-navy);
  border: 1px solid rgba(24, 32, 48, 0.22);
  border-radius: 2px;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.vv-rail__btn:hover:not(:disabled) {
  border-color: var(--vv-red);
  color: var(--vv-red);
}

.vv-rail__btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Product cards — editorial, düşük “kart” hissi */

.vv-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 0;
  overflow: hidden;
  transition: transform 0.35s ease;
}

.vv-product-card:hover {
  transform: translateY(-4px);
}

.vv-product-card__media {
  overflow: hidden;
  background: #eef0f4;
}

.vv-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.vv-product-card:hover img {
  transform: scale(1.04);
}

.vv-product-card__body {
  padding: 1.15rem 0 0.25rem;
}

.vv-product-card__body h3 {
  font-family: var(--vv-font-display);
  font-size: 1.4rem;
  margin: 0 0 0.45rem;
  color: var(--vv-navy);
}

.vv-product-card__body p {
  margin: 0;
  color: #3a4558;
  font-size: 0.98rem;
  line-height: 1.55;
}

.vv-product-card__more {
  display: inline-block;
  margin-top: 0.9rem;
  color: var(--vv-red);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* About */
.vv-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  margin-top: 1.25rem;
}

.vv-mission-box {
  background: rgba(248, 224, 224, 0.32);
  border-left: 3px solid var(--vv-red);
  padding: 1.25rem 1.35rem;
}

.vv-mission-box h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--vv-red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vv-mission-box p {
  margin: 0;
}

.vv-tagline-note {
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  background: var(--vv-navy);
  color: #fff;
}

.vv-tagline-note strong {
  font-family: var(--vv-font-display);
  font-size: 1.2rem;
  color: var(--vv-ring);
}

/* Contact / CF7 / Map */
.vv-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.25rem;
}

.vv-map {
  width: 100%;
  min-height: 340px;
  border: 0;
  background: var(--vv-gray);
}

.wpcf7 form {
  display: grid;
  gap: 0.85rem;
}

/* CF7 gizli alanları fieldset içinde taşır; kutu olarak görünmemeli. */
.wpcf7 .hidden-fields-container {
  display: contents;
}

.wpcf7 form > p {
  margin: 0;
}

/* Onay satırı: kutu, metin ve bağlantı tek cümle olarak akmalı. */
.wpcf7 label:has(.wpcf7-acceptance) {
  display: block;
  line-height: 1.5;
}

.wpcf7 label:has(.wpcf7-acceptance) .wpcf7-form-control-wrap,
.wpcf7 .wpcf7-acceptance,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  display: inline;
  margin: 0;
}

.wpcf7 .wpcf7-acceptance input[type="checkbox"] {
  vertical-align: baseline;
  margin-right: 0.3rem;
}

.wpcf7 label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--vv-navy);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 2px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--vv-navy);
  background: #fff;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  outline: 2px solid rgba(194, 51, 60, 0.35);
  border-color: var(--vv-red);
}

.wpcf7 textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7 input[type="submit"] {
  appearance: none;
  background: var(--vv-red);
  color: #fff;
  border: 0;
  border-radius: 2px;
  padding: 0.9rem 1.4rem;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.wpcf7 input[type="submit"]:hover {
  background: #a82b33;
}

.wpcf7 .wpcf7-response-output {
  margin: 0.75rem 0 0;
  padding: 0.75rem;
  border-radius: 2px;
}

/* Inner pages */
.vv-page-hero {
  position: relative;
  color: var(--vv-white);
  background:
    radial-gradient(ellipse 48% 70% at 92% 8%, rgba(194, 51, 60, 0.26), transparent 55%),
    linear-gradient(160deg, #1c2638 0%, var(--vv-navy) 55%, #101622 100%);
}

.vv-page-hero .vv-section-label {
  color: var(--vv-ring);
}

.vv-page-hero h1,
.vv-page-hero .elementor-heading-title {
  color: var(--vv-white) !important;
  font-family: var(--vv-font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 0.75rem !important;
}

.vv-page-hero p {
  max-width: 38rem;
  color: #c8ced8;
  font-size: 1.12rem;
  line-height: 1.65;
}

.vv-content-width {
  max-width: 780px;
}

.vv-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.vv-product-detail--media-lead {
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
}

.vv-product-detail--media-lead .vv-product-detail__media {
  order: -1;
}

.vv-product-detail__media {
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(248, 224, 224, 0.4), transparent 60%),
    linear-gradient(165deg, #f6f7f9 0%, #e9ecf1 100%);
  padding: clamp(1.25rem, 3.5vw, 2.5rem);
}

.vv-product-detail__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vv-product-detail__copy > p:first-child {
  font-size: 1.12rem;
  color: #3a4558;
  margin-top: 0;
}

.vv-product-kicker {
  color: var(--vv-red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.75rem 0 0.85rem;
}

.vv-product-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 32, 48, 0.12);
}

.vv-product-list li {
  position: relative;
  padding: 1rem 0 1rem 1.65rem;
  border-bottom: 1px solid rgba(24, 32, 48, 0.1);
  background: transparent;
  color: var(--vv-navy);
  font-size: 1.02rem;
}

.vv-product-list li::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--vv-red);
  border-radius: 50%;
  background: transparent;
}

.vv-cta-band {
  color: var(--vv-white);
  background:
    radial-gradient(ellipse 40% 80% at 90% 20%, rgba(194, 51, 60, 0.2), transparent 55%),
    var(--vv-navy);
}

.vv-cta-band h2,
.vv-cta-band p {
  color: inherit;
}

.vv-cta-band h2 {
  font-family: var(--vv-font-display);
}

/* Wound care scientific content */
.vv-wound-page-section h2 {
  margin: 0 0 1rem;
  color: var(--vv-navy);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  line-height: 1.18;
}

.vv-wound-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.vv-wound-intro__copy > p:not(.vv-section-label) {
  max-width: 42rem;
  color: #3a4558;
  font-size: 1.08rem;
}

.vv-wound-intro__media {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: linear-gradient(160deg, #f7f8fa 0%, #e9ecf1 100%);
}

.vv-wound-intro__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.vv-wound-intro__media figcaption {
  margin-top: 0.8rem;
  color: #5d6572;
  font-size: 0.8rem;
  line-height: 1.45;
}

.vv-wound-principles {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  border-top: 1px solid rgba(24, 32, 48, 0.14);
}

.vv-wound-principles article {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 0.75rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(24, 32, 48, 0.12);
}

.vv-wound-principles article > span {
  grid-row: span 2;
  color: var(--vv-red);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.vv-wound-principles h3 {
  margin: 0 0 0.3rem;
  color: var(--vv-navy);
  font-size: 1.04rem;
}

.vv-wound-principles p {
  margin: 0;
  color: #3a4558;
  font-size: 0.95rem;
  line-height: 1.55;
}

.vv-wound-section__head {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.vv-wound-section__head > p:not(.vv-section-label) {
  margin: 0;
  color: #3a4558;
  font-size: 1.06rem;
}

.vv-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(24, 32, 48, 0.13);
  border: 1px solid rgba(24, 32, 48, 0.13);
}

.vv-time-grid article {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  gap: 1rem;
  min-height: 190px;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--vv-white);
}

.vv-time-grid article > strong {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  place-items: center;
  border: 1px solid rgba(194, 51, 60, 0.45);
  border-radius: 50%;
  color: var(--vv-red);
  font-family: var(--vv-font-display);
  font-size: 1.45rem;
}

.vv-time-grid h3 {
  margin: 0 0 0.45rem;
  color: var(--vv-navy);
  font-size: 1.04rem;
}

.vv-time-grid p {
  margin: 0;
  color: #3a4558;
  font-size: 0.94rem;
  line-height: 1.6;
}

.vv-wound-page-section--infection,
.vv-wound-page-section--infection h2 {
  color: var(--vv-white);
}

.vv-wound-page-section--infection .vv-section-label {
  color: var(--vv-ring);
}

.vv-wound-infection {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.vv-wound-infection > div:first-child > p:not(.vv-section-label) {
  color: #d8dce3;
  font-size: 1.03rem;
}

.vv-infection-continuum {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vv-infection-continuum li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.92rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--vv-white);
  font-size: 1rem;
}

.vv-infection-continuum span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  place-items: center;
  border: 1px solid rgba(248, 224, 224, 0.55);
  border-radius: 50%;
  color: var(--vv-ring);
  font-size: 0.75rem;
}

.vv-clinical-note {
  grid-column: 1 / -1;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--vv-red);
  background: rgba(255, 255, 255, 0.07);
}

.vv-clinical-note strong {
  color: var(--vv-ring);
}

.vv-clinical-note p {
  margin: 0.35rem 0 0;
  color: #d8dce3;
  font-size: 0.94rem;
}

.vv-need-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.vv-need-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid rgba(24, 32, 48, 0.14);
  background: var(--vv-white);
}

.vv-need-card__label,
.vv-need-card__product > span {
  margin: 0 0 0.45rem;
  color: var(--vv-red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vv-need-card h3 {
  margin: 0 0 0.85rem;
  color: var(--vv-navy);
  font-size: 1.22rem;
}

.vv-need-card > p:not(.vv-need-card__label) {
  margin: 0 0 1.25rem;
  color: #3a4558;
  font-size: 0.94rem;
  line-height: 1.55;
}

.vv-need-card__product {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(24, 32, 48, 0.11);
}

.vv-need-card__product p {
  margin: 0;
  color: var(--vv-navy);
  font-weight: 500;
  line-height: 1.5;
}

.vv-need-card__product > .vv-need-chip {
  margin-top: 0.9rem;
}

.vv-need-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.35rem 0 0;
}

.vv-need-chip,
.vv-mode-cta .vv-ask-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(24, 32, 48, 0.18);
  border-radius: 2px;
  background: linear-gradient(180deg, var(--vv-white) 0%, #f4f6f9 100%);
  box-shadow: 0 1px 2px rgba(24, 32, 48, 0.06);
  color: var(--vv-navy);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.3;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

/* Ok işareti ::before ile çizilir; ::after tooltip (data-tip) tarafından kullanılıyor. */
.vv-need-chip::before,
.vv-mode-cta .vv-ask-link::before {
  content: "→";
  order: 2;
  color: rgba(24, 32, 48, 0.4);
  font-size: 0.95em;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.vv-need-chip:hover,
.vv-need-chip:focus-visible,
.vv-mode-cta .vv-ask-link:hover,
.vv-mode-cta .vv-ask-link:focus-visible {
  border-color: var(--vv-navy);
  background: var(--vv-navy);
  box-shadow: 0 10px 22px rgba(24, 32, 48, 0.16);
  color: var(--vv-white);
  outline: none;
  transform: translateY(-1px);
}

.vv-need-chip:hover::before,
.vv-need-chip:focus-visible::before,
.vv-mode-cta .vv-ask-link:hover::before,
.vv-mode-cta .vv-ask-link:focus-visible::before {
  color: var(--vv-ring);
  transform: translateX(3px);
}

.vv-need-chip:focus-visible,
.vv-mode-cta .vv-ask-link:focus-visible {
  box-shadow: 0 0 0 3px var(--vv-ring), 0 10px 22px rgba(24, 32, 48, 0.16);
}

.vv-need-chip:active,
.vv-mode-cta .vv-ask-link:active {
  box-shadow: 0 2px 6px rgba(24, 32, 48, 0.14);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .vv-need-chip,
  .vv-need-chip:hover,
  .vv-need-chip:focus-visible,
  .vv-mode-cta .vv-ask-link,
  .vv-mode-cta .vv-ask-link:hover,
  .vv-mode-cta .vv-ask-link:focus-visible,
  .vv-ceap-strip__item,
  .vv-ceap-strip__item:hover,
  .vv-ceap-strip__item:focus-visible {
    transition: none;
    transform: none;
  }

  .vv-need-chip::before,
  .vv-mode-cta .vv-ask-link::before,
  .vv-spec-list__name .vv-spec-ask::before,
  .vv-ceap-strip__group::after {
    transition: none;
  }
}

.vv-ask-link,
.vv-spec-ask {
  position: relative;
  color: var(--vv-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.vv-ask-link:hover,
.vv-ask-link:focus-visible,
.vv-spec-ask:hover,
.vv-spec-ask:focus-visible {
  color: var(--vv-red);
  outline: none;
}

.vv-spec-list__name .vv-spec-ask {
  display: inline-flex;
  align-items: baseline;
  align-items: last baseline;
  gap: 0.45rem;
  padding-bottom: 0.12rem;
  border-bottom: 0;
  text-decoration: none;
  background-image: linear-gradient(var(--vv-red), var(--vv-red));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: background-size 0.28s ease, color 0.2s ease;
}

.vv-spec-list__name .vv-spec-ask::before {
  content: "→";
  order: 2;
  color: rgba(24, 32, 48, 0.35);
  font-size: 0.88em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.vv-spec-list__name .vv-spec-ask:hover,
.vv-spec-list__name .vv-spec-ask:focus-visible {
  background-size: 100% 2px;
  color: var(--vv-red);
}

.vv-spec-list__name .vv-spec-ask:hover::before,
.vv-spec-list__name .vv-spec-ask:focus-visible::before {
  color: var(--vv-red);
  transform: translateX(3px);
}

.vv-spec-list__name .vv-spec-ask:focus-visible {
  outline: 2px solid var(--vv-red);
  outline-offset: 3px;
}

[data-tip] {
  position: relative;
}

[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.45rem);
  z-index: 5;
  width: max-content;
  max-width: min(240px, 70vw);
  padding: 0.45rem 0.65rem;
  border-radius: 2px;
  background: var(--vv-navy);
  box-shadow: 0 12px 26px rgba(24, 32, 48, 0.22);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

[data-tip]:hover::after,
[data-tip]:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.vv-mode-cta {
  margin: 1.05rem 0 0 !important;
  font-size: 0.92rem;
  line-height: 1.4;
}

.vv-need-card__links {
  margin: 0.85rem 0 0;
  color: #3a4558;
  font-size: 0.88rem;
  line-height: 1.55;
}

.vv-need-card__links a {
  color: var(--vv-navy);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.vv-standard-care {
  margin-top: 2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-left: 3px solid var(--vv-red);
  background: rgba(248, 224, 224, 0.32);
}

.vv-standard-care h3 {
  margin: 0 0 0.5rem;
  color: var(--vv-navy);
  font-size: 1.18rem;
}

.vv-standard-care p {
  margin: 0;
  color: #3a4558;
}

.vv-compression-care a {
  color: var(--vv-navy);
  font-weight: 500;
  text-underline-offset: 0.15em;
}

.vv-compression-care a:hover {
  color: var(--vv-red);
}

.vv-spec-groups {
  display: grid;
  gap: 1.25rem;
}

.vv-spec-group {
  border: 1px solid rgba(24, 32, 48, 0.14);
  background: var(--vv-white);
}

.vv-spec-group__head {
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border-bottom: 1px solid rgba(24, 32, 48, 0.11);
}

.vv-spec-group__head h3 {
  margin: 0 0 0.5rem;
  color: var(--vv-navy);
  font-size: 1.18rem;
}

.vv-spec-group__head p {
  margin: 0;
  max-width: 78ch;
  color: #3a4558;
  font-size: 0.94rem;
  line-height: 1.6;
}

.vv-spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vv-spec-list > li {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: 0.75rem clamp(1rem, 3vw, 2rem);
  padding: clamp(1.05rem, 2.5vw, 1.45rem) clamp(1.3rem, 3vw, 1.8rem);
  border-top: 1px solid rgba(24, 32, 48, 0.09);
}

.vv-spec-list > li:first-child {
  border-top: 0;
}

.vv-spec-list__name {
  margin: 0;
  color: var(--vv-navy);
  font-weight: 600;
  font-size: 0.99rem;
  line-height: 1.45;
}

.vv-spec-list__data {
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.vv-spec-list__data > div {
  display: grid;
  grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr);
  gap: 0.35rem 1rem;
}

.vv-spec-list__data dt {
  margin: 0;
  color: var(--vv-red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.75;
}

.vv-spec-list__data dd {
  margin: 0;
  color: #3a4558;
  font-size: 0.92rem;
  line-height: 1.6;
}

.vv-regen-portfolio .vv-spec-groups {
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.vv-regen-portfolio .vv-spec-group {
  overflow: clip;
  border-color: rgba(24, 32, 48, 0.16);
  box-shadow: 0 14px 36px rgba(24, 32, 48, 0.06);
}

.vv-regen-portfolio .vv-spec-group__head {
  position: relative;
  padding-left: clamp(1.55rem, 3.4vw, 2.15rem);
  background: linear-gradient(110deg, rgba(248, 224, 224, 0.42), var(--vv-white) 46%);
}

.vv-regen-portfolio .vv-spec-group__head::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--vv-red);
}

.vv-regen-portfolio .vv-spec-list > li {
  transition: background-color 0.2s ease;
}

.vv-regen-portfolio .vv-spec-list > li:hover {
  background: rgba(247, 248, 250, 0.72);
}

.vv-regen-portfolio .vv-standard-care {
  box-shadow: 0 12px 30px rgba(24, 32, 48, 0.05);
}

.vv-compression-ceap {
  display: grid;
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
}

.vv-compression-ceap .vv-wound-section__head {
  max-width: 62ch;
}

.vv-ceap-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.vv-ceap-strip__item {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  padding-left: clamp(1.15rem, 2.4vw, 1.5rem);
  border: 1px solid rgba(24, 32, 48, 0.12);
  background: var(--vv-white);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vv-ceap-strip__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--vv-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s ease;
}

.vv-ceap-strip__item:hover,
.vv-ceap-strip__item:focus-visible {
  border-color: rgba(24, 32, 48, 0.3);
  box-shadow: 0 14px 30px rgba(24, 32, 48, 0.1);
  outline: none;
  transform: translateY(-2px);
}

.vv-ceap-strip__item:hover::before,
.vv-ceap-strip__item:focus-visible::before {
  transform: scaleY(1);
}

.vv-ceap-strip__item:focus-visible {
  box-shadow: 0 0 0 3px var(--vv-ring), 0 14px 30px rgba(24, 32, 48, 0.1);
}

.vv-ceap-strip__stage {
  color: var(--vv-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vv-ceap-strip__need {
  color: #5d6572;
  font-size: 0.88rem;
  line-height: 1.35;
}

.vv-ceap-strip__group {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--vv-navy);
  font-family: var(--vv-font-display);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  font-weight: 600;
  line-height: 1.3;
}

.vv-ceap-strip__group::after {
  content: "→";
  color: rgba(24, 32, 48, 0.3);
  font-family: var(--vv-font-body);
  font-size: 0.85em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.vv-ceap-strip__item:hover .vv-ceap-strip__group::after,
.vv-ceap-strip__item:focus-visible .vv-ceap-strip__group::after {
  color: var(--vv-red);
  transform: translateX(3px);
}

#medikal-basincli-corap,
#kisa-esneme,
#uzun-esneme,
#cinko-pasta,
#cok-katli-sistem,
#cok-katli-ozet,
#elastik-az-esnek,
#hava-basincli-cihaz,
#urun-gruplari,
.vv-spec-group {
  scroll-margin-top: 6.5rem;
}

.vv-compression-ceap__blog {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 0.7fr);
  gap: 0;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  background: var(--vv-white);
  border: 1px solid rgba(24, 32, 48, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vv-compression-ceap__blog:hover {
  border-color: rgba(196, 30, 58, 0.35);
  box-shadow: 0 10px 28px rgba(24, 32, 48, 0.06);
}

.vv-compression-ceap__blog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3.5vw, 2.1rem);
}

.vv-compression-ceap__blog-kicker {
  margin: 0 0 0.55rem;
  color: var(--vv-red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vv-compression-ceap__blog-copy h3 {
  margin: 0 0 0.65rem;
  font-family: var(--vv-font-display);
  color: var(--vv-navy);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.25;
}

.vv-compression-ceap__blog-copy p {
  margin: 0 0 1.1rem;
  max-width: 44ch;
  color: #3a4558;
  font-size: 0.98rem;
  line-height: 1.65;
}

.vv-compression-ceap__blog-more {
  color: var(--vv-navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.vv-compression-ceap__blog:hover .vv-compression-ceap__blog-more {
  color: var(--vv-red);
}

.vv-compression-ceap__blog-media {
  margin: 0;
  min-height: 100%;
  background: #eef0f4;
  border-left: 1px solid rgba(24, 32, 48, 0.08);
}

.vv-compression-ceap__blog-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vv-laser-wavelength .vv-wound-section__head {
  max-width: 62ch;
}

.vv-laser-wavelength .vv-link-primary {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--vv-navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 32, 48, 0.25);
}

.vv-laser-wavelength .vv-link-primary:hover {
  color: var(--vv-red);
  border-bottom-color: var(--vv-red);
}

.vv-laser-wavelength__media {
  margin: 1.75rem 0 0;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  background: var(--vv-white);
  border: 1px solid rgba(24, 32, 48, 0.1);
}

.vv-laser-wavelength__media img {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin-inline: auto;
}

.vv-laser-wavelength__media figcaption {
  margin: 0.75rem 0.15rem 0;
  color: #5d6572;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.vv-compression-sources h2 {
  margin: 0 0 1rem;
  font-family: var(--vv-font-display);
  color: var(--vv-navy);
  font-size: 1.55rem;
}

.vv-science-sources {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 1.5rem clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.vv-science-sources > div > p:not(.vv-section-label) {
  color: #3a4558;
}

.vv-science-sources ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 32, 48, 0.14);
  counter-reset: source;
}

.vv-science-sources li {
  position: relative;
  padding: 1rem 0 1rem 2.5rem;
  border-bottom: 1px solid rgba(24, 32, 48, 0.12);
  counter-increment: source;
}

.vv-science-sources li::before {
  content: counter(source, decimal-leading-zero);
  position: absolute;
  top: 1.05rem;
  left: 0;
  color: var(--vv-red);
  font-size: 0.76rem;
  font-weight: 600;
}

.vv-science-sources a {
  color: var(--vv-navy);
  font-weight: 500;
  text-underline-offset: 0.2em;
}

.vv-science-sources a:hover {
  color: var(--vv-red);
}

.vv-source-note {
  grid-column: 1 / -1;
  margin: 0;
  color: #5d6572;
  font-size: 0.85rem;
}

/* Longevity — reuse wound science layout; thin additions */
.vv-longevity-bridge__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-self: start;
}

.vv-longevity-bridge__links a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 0.85rem 1.35rem;
  border-radius: 2px;
}

.vv-longevity-bridge__links .vv-link-primary {
  background: var(--vv-red);
  color: #fff;
}

.vv-longevity-bridge__links .vv-link-primary:hover {
  background: #a82b33;
  color: #fff;
}

.vv-longevity-bridge__links .vv-link-secondary {
  color: #f4f6f8;
  border: 1px solid rgba(248, 224, 224, 0.45);
}

.vv-longevity-bridge__links .vv-link-secondary:hover {
  border-color: var(--vv-ring);
  color: var(--vv-ring);
}

.vv-regen-related__links {
  margin-top: 0.5rem;
}

.vv-regen-related__links .vv-link-primary {
  background: var(--vv-red);
  color: #fff;
}

.vv-regen-related__links .vv-link-primary:hover {
  background: #a82b33;
  color: #fff;
}

.vv-regen-related__links .vv-link-ghost {
  color: var(--vv-navy);
  border: 1px solid rgba(24, 32, 48, 0.22);
}

.vv-regen-related__links .vv-link-ghost:hover {
  border-color: var(--vv-red);
  color: var(--vv-red);
}

.vv-page-hero--longevity {
  background:
    radial-gradient(ellipse 52% 75% at 88% 12%, rgba(194, 51, 60, 0.34), transparent 58%),
    radial-gradient(ellipse 40% 50% at 8% 88%, rgba(194, 51, 60, 0.12), transparent 50%),
    linear-gradient(155deg, #1a2436 0%, var(--vv-navy) 48%, #0c121c 100%);
}

.vv-page-hero--longevity .vv-section-label {
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--vv-ring);
}

.vv-longevity-page-section h2 {
  color: inherit;
}

.vv-longevity-page-section .vv-wound-section__head ul {
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
}

.vv-longevity-page-section .vv-wound-section__head li {
  margin: 0.4rem 0;
  line-height: 1.55;
}

.vv-longevity-intro__media {
  padding: clamp(1rem, 2.5vw, 1.75rem);
}

.vv-longevity-intro__media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vv-longevity-statement-wrap {
  width: 100%;
}

.vv-longevity-statement {
  margin: 0;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 3rem);
  color: var(--vv-white);
  text-align: center;
  background:
    radial-gradient(ellipse 55% 80% at 50% 0%, rgba(194, 51, 60, 0.28), transparent 60%),
    linear-gradient(165deg, #152033 0%, var(--vv-navy) 100%);
}

.vv-longevity-statement .vv-section-label {
  margin-bottom: 1rem;
  color: var(--vv-ring);
}

.vv-longevity-statement__line {
  margin: 0 auto;
  max-width: 36rem;
  font-family: var(--vv-font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  line-height: 1.28;
  color: var(--vv-white);
}

.vv-longevity-hallmarks .vv-wound-section__head {
  max-width: 44rem;
}

.vv-longevity-metabolism .vv-wound-section__head {
  max-width: 46rem;
}

.vv-longevity-geroscience .vv-wound-section__head,
.vv-longevity-boundary .vv-wound-section__head {
  max-width: 46rem;
}

.vv-longevity-metabolism__list {
  margin-top: 2.25rem;
}

.vv-longevity-metabolism__note {
  margin: 1.75rem 0 0;
  max-width: 44rem;
  color: #3a4558;
  font-size: 0.98rem;
  line-height: 1.6;
}

.vv-longevity-metabolism__note a {
  color: var(--vv-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.vv-longevity-metabolism__note a:hover {
  color: var(--vv-red);
}

.vv-longevity-hallmarks .vv-link-primary {
  display: inline-flex;
  margin-top: 0.35rem;
  color: var(--vv-red);
  font-weight: 600;
  text-decoration: none;
}

.vv-longevity-hallmarks .vv-link-primary:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.vv-longevity-clinic .vv-wound-section__head {
  max-width: 48rem;
}

.vv-longevity-cascade {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
  border-top: 1px solid rgba(24, 32, 48, 0.14);
}

.vv-longevity-cascade li {
  position: relative;
  margin: 0;
  padding: 1.75rem 1.35rem 1.75rem 0;
  border-bottom: 1px solid rgba(24, 32, 48, 0.1);
}

.vv-longevity-cascade li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.15rem;
  right: 0.35rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--vv-red);
  border-top: 2px solid var(--vv-red);
  transform: rotate(45deg);
  opacity: 0.85;
}

.vv-longevity-cascade li > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--vv-red);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.vv-longevity-cascade h3 {
  margin: 0 0 0.55rem;
  padding-right: 1rem;
  color: var(--vv-navy);
  font-family: var(--vv-font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.25;
}

.vv-longevity-cascade p {
  margin: 0;
  padding-right: 0.75rem;
  color: #3a4558;
  font-size: 0.94rem;
  line-height: 1.55;
}

.vv-longevity-clinic__verdict {
  margin: 2rem 0 0;
  max-width: 40rem;
  color: var(--vv-navy);
  font-family: var(--vv-font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.35;
}

.vv-longevity-clinic__axes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(24, 32, 48, 0.14);
}

.vv-longevity-clinic__axes article {
  padding: 1.75rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid rgba(24, 32, 48, 0.1);
}

.vv-longevity-clinic__axes article:not(:last-child) {
  padding-right: 1.75rem;
  border-right: 1px solid rgba(24, 32, 48, 0.1);
}

.vv-longevity-clinic__axis-label {
  margin: 0 0 0.5rem;
  color: var(--vv-red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vv-longevity-clinic__axes h3 {
  margin: 0 0 0.65rem;
  color: var(--vv-navy);
  font-size: 1.15rem;
  line-height: 1.3;
}

.vv-longevity-clinic__axes > article > p:not(.vv-longevity-clinic__axis-label):not(.vv-longevity-clinic__links) {
  margin: 0 0 1.1rem;
  color: #3a4558;
  font-size: 0.94rem;
  line-height: 1.55;
}

.vv-longevity-clinic__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 0;
}

.vv-longevity-clinic__links a {
  color: var(--vv-navy);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 30, 58, 0.45);
}

.vv-longevity-clinic__links a:hover {
  color: var(--vv-red);
  border-bottom-color: var(--vv-red);
}

.vv-longevity-sources {
  display: block;
  max-width: none;
  margin: 0;
  width: 100%;
}

.vv-longevity-sources .vv-section-label {
  margin-bottom: 0.35rem;
}

.vv-longevity-sources h2 {
  margin: 0 0 1rem;
}

.vv-longevity-sources ol {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 32, 48, 0.14);
  counter-reset: source;
}

.vv-longevity-sources li {
  position: relative;
  margin: 0;
  padding: 0.95rem 0 0.95rem 2.75rem;
  border-bottom: 1px solid rgba(24, 32, 48, 0.12);
  line-height: 1.55;
  counter-increment: source;
}

.vv-longevity-sources li::before {
  content: counter(source, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  left: 0;
  color: var(--vv-red);
  font-size: 0.76rem;
  font-weight: 600;
}

.vv-longevity-sources a {
  color: var(--vv-navy);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.vv-longevity-sources a:hover {
  color: var(--vv-red);
}

.vv-legal {
  max-width: 850px;
}

.vv-legal h2 {
  margin-top: 2.25rem;
  color: var(--vv-navy);
  font-size: 1.35rem;
}

.vv-legal-note {
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  background: rgba(248, 224, 224, 0.38);
  border-left: 3px solid var(--vv-red);
}

.vv-form-note {
  color: #5d6572;
  font-size: 0.9rem;
}

/* Blog — ortak kartlar (arşiv satır + ana sayfa spotlight) */
.vv-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.vv-blog-grid--spotlight {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.vv-blog-stack {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.vv-blog-card {
  margin: 0;
  min-height: 100%;
  border: 1px solid rgba(24, 32, 48, 0.1);
  background: var(--vv-white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vv-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(24, 32, 48, 0.1);
}

.vv-blog-card--tile .vv-blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.4rem 1.45rem;
  color: inherit;
  text-decoration: none;
  border-top: 4px solid var(--vv-navy);
}

.vv-blog-card--navy.vv-blog-card--tile .vv-blog-card__link {
  border-top-color: var(--vv-navy);
  background: linear-gradient(180deg, rgba(24, 32, 48, 0.06) 0%, transparent 42%), var(--vv-white);
}

.vv-blog-card--red.vv-blog-card--tile .vv-blog-card__link {
  border-top-color: var(--vv-red);
  background: linear-gradient(180deg, rgba(194, 51, 60, 0.08) 0%, transparent 42%), var(--vv-white);
}

.vv-blog-card--ring.vv-blog-card--tile .vv-blog-card__link {
  border-top-color: #d9898f;
  background: linear-gradient(180deg, var(--vv-ring) 0%, transparent 48%), var(--vv-white);
}

.vv-blog-card--silver.vv-blog-card--tile .vv-blog-card__link {
  border-top-color: var(--vv-silver);
  background: linear-gradient(180deg, rgba(176, 176, 176, 0.18) 0%, transparent 42%), var(--vv-white);
}

.vv-blog-card--row .vv-blog-card__link {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) minmax(0, 0.66fr);
  gap: 0;
  min-height: 0;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__link {
  grid-template-columns: minmax(0, 0.66fr) minmax(160px, 0.34fr);
}

.vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__media {
  order: 2;
}

.vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__body {
  order: 1;
}

.vv-blog-card__media {
  margin: 0;
  align-self: stretch;
  min-height: 0;
  max-height: 220px;
  background: #101622;
  overflow: hidden;
}

.vv-blog-card--row .vv-blog-card__media {
  max-height: none;
  aspect-ratio: 4 / 3;
}

/* min-height beats max-height in CSS, so the tile box needs an explicit ratio. */
.vv-blog-card--tile .vv-blog-card__media {
  min-height: 0;
  max-height: none;
  aspect-ratio: 16 / 9;
}

/* Extra class keeps this above Elementor's `img { height: auto }` reset. */
.vv-blog-card .vv-blog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.vv-blog-card:hover .vv-blog-card__media img {
  transform: scale(1.04);
}

.vv-blog-card--row .vv-blog-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2.1rem) clamp(1.35rem, 3vw, 2rem);
  border-left: 4px solid var(--vv-navy);
  background: var(--vv-white);
}

.vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__body {
  border-left: 0;
  border-right: 4px solid var(--vv-navy);
}

.vv-blog-card--row.vv-blog-card--navy .vv-blog-card__body {
  border-color: var(--vv-navy);
  background: linear-gradient(90deg, rgba(24, 32, 48, 0.05), transparent 55%), var(--vv-white);
}

.vv-blog-card--row.vv-blog-card--red .vv-blog-card__body {
  border-color: var(--vv-red);
  background: linear-gradient(90deg, rgba(194, 51, 60, 0.06), transparent 55%), var(--vv-white);
}

.vv-blog-card--row.vv-blog-card--ring .vv-blog-card__body {
  border-color: #d9898f;
  background: linear-gradient(90deg, rgba(248, 224, 224, 0.65), transparent 55%), var(--vv-white);
}

.vv-blog-card--row.vv-blog-card--silver .vv-blog-card__body {
  border-color: var(--vv-silver);
  background: linear-gradient(90deg, rgba(229, 229, 229, 0.55), transparent 55%), var(--vv-white);
}

.vv-blog-card__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.85rem;
}

.vv-blog-card__topic {
  display: inline-block;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vv-blog-card--navy .vv-blog-card__topic {
  color: var(--vv-white);
  background: var(--vv-navy);
}

.vv-blog-card--red .vv-blog-card__topic {
  color: var(--vv-white);
  background: var(--vv-red);
}

.vv-blog-card--ring .vv-blog-card__topic {
  color: var(--vv-navy);
  background: var(--vv-ring);
}

.vv-blog-card--silver .vv-blog-card__topic {
  color: var(--vv-navy);
  background: var(--vv-gray);
}

.vv-blog-card__date {
  color: #5d6572;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vv-blog-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--vv-font-display);
  font-size: 1.28rem;
  line-height: 1.28;
  color: var(--vv-navy);
}

.vv-blog-card--row .vv-blog-card__title {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.vv-blog-card__excerpt {
  margin: 0;
  flex: 1;
  color: #3a4558;
  font-size: 0.98rem;
  line-height: 1.65;
}

.vv-blog-card--row .vv-blog-card__excerpt {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38rem;
}

.vv-blog-card__more {
  display: inline-block;
  margin-top: 1.1rem;
  color: var(--vv-red);
  font-weight: 500;
  font-size: 0.92rem;
}

.vv-blog-card:hover .vv-blog-card__more {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.vv-posts-all {
  margin: 1.85rem 0 0;
  clear: both;
  position: relative;
  z-index: 1;
}

.vv-posts-all a,
.vv-posts-empty a {
  color: var(--vv-navy);
  font-weight: 500;
}

.vv-posts-all a:hover,
.vv-posts-empty a:hover {
  color: var(--vv-red);
}

.vv-posts-empty {
  margin: 1.5rem 0 0;
  color: #5d6572;
}

/* Blog arşiv sayfası */
body.blog .site-main.vv-blog-index {
  max-width: none;
  margin: 0;
  padding: 0;
}

.vv-blog-hero {
  color: var(--vv-white);
  background:
    radial-gradient(ellipse 48% 70% at 92% 8%, rgba(194, 51, 60, 0.26), transparent 55%),
    linear-gradient(160deg, #1c2638 0%, var(--vv-navy) 55%, #101622 100%);
}

.vv-blog-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 5.75rem) 1.5rem clamp(3.25rem, 6vw, 4.5rem);
}

.vv-blog-hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--vv-font-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  line-height: 1.08;
  color: var(--vv-white);
}

.vv-blog-hero__lead {
  display: block;
  margin: 0;
  max-width: none;
  width: 100%;
}

.vv-blog-hero__lead p {
  margin: 0 0 0.85rem;
  padding-top: 0;
  border-top: 0;
  color: #d4d9e2;
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  line-height: 1.75;
  max-width: none;
}

.vv-blog-hero__lead p:last-child {
  margin-bottom: 0;
}

.vv-blog-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.75rem) 1.5rem clamp(4rem, 8vw, 6rem);
}

/*
 * Blog sayfalama. Eşli /blog/ ve /en/blog/ sayfaları paginate_links( 'list' )
 * ile <ul class="page-numbers"> basar; eski Hello Elementor arşivi .nav-links
 * kullanır. İki işaretleme de aynı görünümü paylaşır.
 */
.navigation.pagination {
  margin-top: 2.5rem;
}

.navigation.pagination > ul.page-numbers,
.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation.pagination li {
  margin: 0;
  list-style: none;
}

.navigation.pagination li > .page-numbers,
.navigation.pagination .nav-links > .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(24, 32, 48, 0.14);
  color: var(--vv-navy);
  text-decoration: none;
  font-size: 0.9rem;
}

.navigation.pagination li > .page-numbers.current,
.navigation.pagination li > a.page-numbers:hover,
.navigation.pagination .nav-links > .page-numbers.current,
.navigation.pagination .nav-links > a.page-numbers:hover {
  border-color: var(--vv-red);
  color: var(--vv-red);
}

/* Eski Hello Elementor blog listesi (yedek) */
body.blog:not(:has(.vv-blog-index)) .site-main,
body.archive .site-main,
body.search .site-main,
body.single-post .site-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem clamp(4rem, 8vw, 6rem);
}

body.archive .page-header .entry-title,
body.search .page-header .entry-title,
body.single-post .page-header .entry-title {
  font-family: var(--vv-font-display);
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1.15;
  color: var(--vv-navy);
  margin: 0 0 0.8rem;
}

body.single-post .page-header .entry-title {
  max-width: 24ch;
}

.archive-description {
  max-width: 62ch;
  color: #3a4558;
}

body.archive .page-content article.post,
body.search .page-content article.post {
  padding: 2.1rem 0;
  border-top: 1px solid rgba(24, 32, 48, 0.12);
}

.page-content article.post .entry-title {
  font-family: var(--vv-font-display);
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 0.6rem;
}

.page-content article.post .entry-title a {
  color: var(--vv-navy);
  text-decoration: none;
}

.page-content article.post .entry-title a:hover {
  color: var(--vv-red);
}

.page-content article.post p {
  margin: 0;
  color: #3a4558;
  max-width: 70ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

body.single-post .page-content {
  max-width: 72ch;
}

body.single-post .page-content:has(.vv-hallmarks),
body.single-post .page-content:has(.vv-blog-figure) {
  max-width: 920px;
}

body.single-post .page-content .vv-blog-figure {
  margin: 1.75rem 0 2rem;
  padding: 0;
  border: 0;
}

body.single-post .page-content .vv-blog-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  background: #f7f8fa;
}

body.single-post .page-content .vv-blog-figure--portrait {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

body.single-post .page-content .vv-blog-figure figcaption {
  margin: 0.65rem 0 0;
  color: #5d6572;
  font-size: 0.92rem;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 640px) {
  body.single-post .page-content .vv-blog-figure--portrait {
    max-width: 100%;
  }
}

body.single-post .page-content .vv-post-meta {
  margin: 0 0 1.4rem;
  color: #5d6572;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.single-post .page-content .vv-post-back {
  margin: 2.75rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(24, 32, 48, 0.12);
}

.vv-post-back a {
  color: var(--vv-navy);
  font-weight: 500;
  text-decoration: none;
}

.vv-post-back a:hover {
  color: var(--vv-red);
}

body.single-post .page-content p,
body.single-post .page-content li {
  font-size: 1.04rem;
  line-height: 1.75;
}

body.single-post .page-content h2 {
  font-family: var(--vv-font-display);
  font-size: 1.5rem;
  color: var(--vv-navy);
  margin: 2.3rem 0 0.7rem;
}

body.single-post .page-content .vv-hallmarks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin: 1.75rem 0 2rem;
  max-width: none;
}

.vv-hallmark {
  position: relative;
  margin: 0;
  padding: 1.25rem 1.35rem 1.3rem 1.35rem;
  border: 1px solid rgba(24, 32, 48, 0.1);
  border-left-width: 4px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(24, 32, 48, 0.04);
}

.vv-hallmark--primary {
  border-left-color: #8B1E24;
  background: linear-gradient(135deg, #fff 55%, rgba(139, 30, 36, 0.06));
}

.vv-hallmark--antagonistic {
  border-left-color: #C4A35A;
  background: linear-gradient(135deg, #fff 55%, rgba(196, 163, 90, 0.1));
}

.vv-hallmark--integrative {
  border-left-color: #1F4E6B;
  background: linear-gradient(135deg, #fff 55%, rgba(31, 78, 107, 0.08));
}

.vv-hallmark__num {
  display: inline-block;
  margin-right: 0.55rem;
  color: var(--vv-red);
  font-family: var(--vv-font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.vv-hallmark__tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.vv-hallmark--primary .vv-hallmark__tag {
  color: #8B1E24;
  background: rgba(139, 30, 36, 0.1);
}

.vv-hallmark--antagonistic .vv-hallmark__tag {
  color: #7A6228;
  background: rgba(196, 163, 90, 0.22);
}

.vv-hallmark--integrative .vv-hallmark__tag {
  color: #1F4E6B;
  background: rgba(31, 78, 107, 0.12);
}

.vv-hallmark h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--vv-font-display);
  font-size: 1.22rem;
  color: var(--vv-navy);
  line-height: 1.3;
}

.vv-hallmark p {
  margin: 0 !important;
  max-width: none !important;
  color: #3a4558;
  font-size: 0.98rem !important;
  line-height: 1.65 !important;
}

.vv-post-sources {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 32, 48, 0.14);
  counter-reset: postsource;
  max-width: none;
}

.vv-post-sources li {
  position: relative;
  margin: 0;
  padding: 0.85rem 0 0.85rem 2.6rem;
  border-bottom: 1px solid rgba(24, 32, 48, 0.1);
  color: #3a4558;
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  max-width: none;
  counter-increment: postsource;
}

.vv-post-sources li::before {
  content: counter(postsource, decimal-leading-zero);
  position: absolute;
  top: 0.9rem;
  left: 0;
  color: var(--vv-red);
  font-size: 0.72rem;
  font-weight: 600;
}

.vv-post-sources a {
  color: var(--vv-navy);
  font-weight: 500;
  text-underline-offset: 0.15em;
}

.vv-post-sources a:hover {
  color: var(--vv-red);
}

@media (min-width: 760px) {
  body.single-post .page-content .vv-hallmarks {
    grid-template-columns: 1fr 1fr;
  }

  body.single-post .page-content .vv-hallmark:nth-child(9) {
    grid-column: 1 / -1;
  }
}

body.single-post .page-content p,
body.single-post .page-content li {
  color: #2c3444;
}

body.single-post .page-content a {
  color: var(--vv-navy);
  text-underline-offset: 0.2em;
}

body.single-post .page-content a:hover {
  color: var(--vv-red);
}

.pagination {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(24, 32, 48, 0.12);
}

.pagination a {
  color: var(--vv-navy);
  font-weight: 500;
  text-decoration: none;
}

.pagination a:hover {
  color: var(--vv-red);
}

@media (max-width: 1100px) {
  .vv-rail {
    --rail-visible: 2.3;
  }

  .vv-blog-grid--spotlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-footer__inner,
  .vv-about-grid,
  .vv-contact-grid,
  .vv-product-detail,
  .vv-product-detail--media-lead,
  .vv-wound-intro,
  .vv-wound-infection,
  .vv-science-sources,
  .vv-longevity-bridge {
    grid-template-columns: 1fr;
  }

  .vv-compression-ceap__blog {
    grid-template-columns: 1fr;
  }

  .vv-ceap-strip {
    grid-template-columns: 1fr;
  }

  .vv-spec-list > li,
  .vv-spec-list__data > div {
    grid-template-columns: 1fr;
  }

  .vv-spec-list__data dt {
    line-height: 1.5;
  }

  .vv-compression-ceap__blog-media {
    border-left: 0;
    border-top: 1px solid rgba(24, 32, 48, 0.08);
    max-height: 240px;
  }

  .vv-product-detail--media-lead .vv-product-detail__media {
    order: 0;
  }

  .vv-product-detail__media,
  .vv-wound-intro__media {
    max-width: 560px;
  }

  .vv-source-note,
  .vv-clinical-note {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    min-height: 74px;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .site-header__wordmark {
    font-size: 1.35rem;
  }

  .site-header__seal {
    width: 52px;
    height: 52px;
  }

  .site-header__descriptor {
    display: none;
  }

  .site-header .site-nav-toggle {
    display: inline-flex;
    order: 3;
    margin-left: 0;
  }

  .site-header__brand {
    order: 1;
    margin-right: auto;
  }

  .vv-language-switcher {
    order: 2;
  }

  .site-header .site-navigation {
    display: none;
    order: 4;
    width: 100%;
    margin: 0;
    padding: 0.5rem 0 1rem;
    border-top: 1px solid var(--vv-gray);
  }

  .site-header.is-menu-open .site-navigation {
    display: block;
  }

  .site-header.is-menu-open .site-nav-toggle__icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.is-menu-open .site-nav-toggle__icon span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .site-nav-toggle__icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-navigation .site-nav {
    display: grid;
    gap: 0;
  }

  .site-navigation .site-nav > li > a {
    display: block;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(24, 32, 48, 0.08);
  }

  .site-navigation .site-nav .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0;
    padding: 0 0 0.4rem 1rem;
    border: 0;
    box-shadow: none;
  }

  .site-navigation .site-nav .sub-menu a {
    padding: 0.45rem 0;
    white-space: normal;
  }

  .vv-hero {
    min-height: 72vh;
  }

  .vv-time-grid,
  .vv-need-grid,
  .vv-longevity-cascade,
  .vv-longevity-clinic__axes,
  .vv-blog-grid,
  .vv-blog-grid--spotlight {
    grid-template-columns: 1fr;
  }

  .vv-longevity-cascade li:not(:last-child)::after {
    display: none;
  }

  .vv-longevity-clinic__axes article:not(:last-child) {
    padding-right: 0;
    border-right: 0;
  }

  .vv-blog-card--row .vv-blog-card__link,
  .vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__link {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .vv-blog-card--row .vv-blog-card__media {
    min-height: 0;
    max-height: 180px;
    aspect-ratio: 16 / 9;
  }

  .vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__media,
  .vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__body {
    order: unset;
  }

  .vv-blog-card--row .vv-blog-card__body,
  .vv-blog-card--row.vv-blog-card--media-right .vv-blog-card__body {
    border-left: 0;
    border-right: 0;
    border-top: 4px solid var(--vv-navy);
  }

  .vv-blog-card--row.vv-blog-card--red .vv-blog-card__body {
    border-top-color: var(--vv-red);
  }

  .vv-blog-card--row.vv-blog-card--ring .vv-blog-card__body {
    border-top-color: #d9898f;
  }

  .vv-blog-card--row.vv-blog-card--silver .vv-blog-card__body {
    border-top-color: var(--vv-silver);
  }

  .vv-rail {
    --rail-visible: 1.15;
  }

  .vv-time-grid article {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header__wordmark {
    font-size: 1.2rem;
  }

  .site-nav-toggle__label {
    display: none;
  }

  .vv-hero-brand .elementor-heading-title {
    font-size: 2.35rem !important;
  }

  .vv-btn-primary .elementor-button,
  .vv-btn-secondary .elementor-button {
    width: 100%;
    justify-content: center;
  }

  .vv-time-grid article {
    grid-template-columns: 2.75rem 1fr;
    gap: 0.85rem;
  }

  .vv-time-grid article > strong {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.15rem;
  }

  .vv-need-card {
    min-height: 0;
  }
}

/* WhatsApp iletişim butonu */
.vv-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 999px;
  background: #128c7e;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(24, 32, 48, 0.28);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.vv-whatsapp:hover,
.vv-whatsapp:focus-visible {
  background: #0f7a6e;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(24, 32, 48, 0.34);
  outline: none;
}

.vv-whatsapp__icon {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.vv-whatsapp__label {
  font-family: Roboto, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .vv-whatsapp {
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem;
    border-radius: 50%;
    min-height: 3.4rem;
    min-width: 3.4rem;
    justify-content: center;
  }

  .vv-whatsapp__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* —— Longevity hub nav + assessment —— */
.vv-longevity-hub-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  margin: 0 auto;
  max-width: 52rem;
}

.vv-longevity-hub-nav article {
  padding: 0;
  border: 0;
  background: transparent;
}

.vv-longevity-hub-nav h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  color: var(--vv-navy, #182030);
}

.vv-longevity-hub-nav p {
  margin: 0 0 0.75rem;
  color: #4a5568;
  line-height: 1.55;
}

.vv-longevity-hub-nav a {
  color: var(--vv-red, #c2333c);
  font-weight: 500;
  text-decoration: none;
}

.vv-longevity-hub-nav a:hover {
  text-decoration: underline;
}

.vv-longevity-stages {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.vv-longevity-stages article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.vv-longevity-stages article > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--vv-navy, #182030);
  color: #fff;
  font-size: 1.05rem;
}

.vv-longevity-stages h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: var(--vv-navy, #182030);
}

.vv-longevity-stages p {
  margin: 0;
  color: #4a5568;
  line-height: 1.5;
}

.vv-longevity-flow {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: vv-flow;
}

.vv-longevity-flow li {
  position: relative;
  padding: 0.65rem 0 0.65rem 2.5rem;
  border-bottom: 1px solid var(--vv-gray, #e5e5e5);
  color: #3a4454;
  line-height: 1.5;
  counter-increment: vv-flow;
}

.vv-longevity-flow li::before {
  content: counter(vv-flow);
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--vv-ring, #f8e0e0);
  color: var(--vv-navy, #182030);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vv-longevity-test {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--vv-navy, #182030);
}

.vv-longevity-print-header {
  display: none;
}

.vv-longevity-test__note {
  margin: 0 0 1.75rem;
  padding: 0.9rem 1rem;
  background: #f7f8fa;
  border-left: 3px solid var(--vv-silver, #b0b0b0);
  line-height: 1.55;
  font-size: 0.95rem;
}

.vv-longevity-test__block {
  margin: 0 0 2rem;
  padding: 0 0 1.5rem;
  border-bottom: 1px solid var(--vv-gray, #e5e5e5);
}

.vv-longevity-test__block h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.vv-longevity-test__lead {
  margin: 0 0 1rem;
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.5;
}

.vv-longevity-test__grid {
  display: grid;
  gap: 0.85rem 1rem;
}

.vv-longevity-test__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vv-longevity-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.vv-longevity-field abbr {
  text-decoration: none;
  color: var(--vv-red, #c2333c);
}

.vv-longevity-field input {
  padding: 0.65rem 0.75rem;
  border: 1px solid #c5cad3;
  border-radius: 2px;
  font: inherit;
  font-weight: 400;
  color: var(--vv-navy, #182030);
  background: #fff;
}

.vv-longevity-field__hint {
  font-size: 0.78rem;
  font-weight: 400;
  color: #5d6572;
}

.vv-longevity-tel {
  display: flex;
  align-items: stretch;
  border: 1px solid #c5cad3;
  border-radius: 2px;
  background: #fff;
  overflow: hidden;
}

.vv-longevity-tel:focus-within {
  outline: 2px solid var(--vv-ring, #f8e0e0);
  border-color: var(--vv-red, #c2333c);
}

.vv-longevity-tel__prefix {
  display: flex;
  align-items: center;
  padding: 0 0.7rem 0 0.75rem;
  border-right: 1px solid #c5cad3;
  background: #f7f8fa;
  color: var(--vv-navy, #182030);
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.vv-longevity-tel input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.vv-longevity-tel input:focus {
  outline: none;
  border-color: transparent;
}

.vv-longevity-field input.is-invalid.vv-longevity-tel,
.vv-longevity-field .vv-longevity-tel:has(input.is-invalid) {
  border-color: var(--vv-red, #c2333c);
}

.vv-longevity-field input:focus {
  outline: 2px solid var(--vv-ring, #f8e0e0);
  border-color: var(--vv-red, #c2333c);
}

.vv-longevity-field input.is-invalid,
.vv-longevity-radio.is-invalid {
  border-color: var(--vv-red, #c2333c);
}

.vv-longevity-radio.is-invalid {
  outline: 1px solid var(--vv-red, #c2333c);
  padding: 0.5rem;
}

.vv-longevity-domain {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--vv-gray, #e5e5e5);
  background: #fff;
}

.vv-longevity-domain legend {
  padding: 0 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.vv-longevity-domain__score {
  display: inline-block;
  min-width: 1.4rem;
  margin-left: 0.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  background: var(--vv-navy, #182030);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.vv-longevity-check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.45rem 0;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}

.vv-longevity-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.vv-longevity-radio {
  border: 0;
  padding: 0;
  margin: 0;
}

.vv-longevity-test__kvkk {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #5a6474;
}

.vv-longevity-test__errors {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  background: #fdf2f2;
  color: #8b1e26;
  border-left: 3px solid var(--vv-red, #c2333c);
  font-size: 0.95rem;
}

.vv-longevity-test__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.75rem;
}

.vv-longevity-btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 0.7rem 1.25rem;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.vv-longevity-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.vv-longevity-btn--primary {
  background: var(--vv-red, #c2333c);
  color: #fff;
}

.vv-longevity-btn--primary:hover:not(:disabled) {
  background: #a82a32;
}

.vv-longevity-btn--ghost {
  background: #fff;
  border-color: var(--vv-navy, #182030);
  color: var(--vv-navy, #182030);
}

.vv-longevity-btn--ghost:hover:not(:disabled) {
  background: #f7f8fa;
}

.vv-longevity-result {
  margin: 0 0 2rem;
  padding: 1.35rem 1.25rem;
  background: #f7f8fa;
  border-top: 3px solid var(--vv-navy, #182030);
}

.vv-longevity-result.is-hidden,
.vv-longevity-organs.is-hidden {
  display: none;
}

.vv-longevity-result__stage {
  margin: 0.35rem 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vv-navy, #182030);
}

.vv-longevity-result__summary {
  margin: 0 0 1rem;
  color: #4a5568;
  line-height: 1.5;
}

.vv-longevity-result__scores {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1rem;
  font-size: 0.95rem;
}

.vv-longevity-result__next h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.vv-longevity-result__next p {
  margin: 0;
  line-height: 1.55;
}

.vv-longevity-result__meta {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #5a6474;
}

.vv-longevity-result__mail {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  color: var(--vv-navy, #182030);
}

.vv-longevity-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.vv-longevity-result__links {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.vv-longevity-result__links a {
  color: var(--vv-red, #c2333c);
}

@media (max-width: 640px) {
  .vv-longevity-hub-nav,
  .vv-longevity-test__grid--2,
  .vv-longevity-result__scores {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .site-footer,
  .vv-whatsapp,
  .vv-cta-band,
  .no-print,
  .elementor-location-header,
  .elementor-location-footer,
  .vv-longevity-test__actions,
  .vv-longevity-test__note,
  #wpadminbar {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .vv-longevity-print-header {
    display: flex !important;
    align-items: center;
    gap: 0.85rem;
    margin: 0 0 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid #182030;
  }

  .vv-longevity-print-header img {
    width: 48px;
    height: 48px;
  }

  .vv-longevity-print-header strong {
    display: block;
    font-size: 1.1rem;
  }

  .vv-longevity-print-header span {
    display: block;
    font-size: 0.85rem;
    color: #333;
  }

  .vv-longevity-test__block,
  .vv-longevity-domain {
    break-inside: avoid;
  }

  .vv-longevity-result {
    border: 1px solid #182030;
    background: #fff !important;
    break-before: page;
  }

  .vv-page-hero,
  .vv-longevity-page-section {
    padding-top: 0 !important;
    padding-bottom: 0.5rem !important;
  }

  a[href]::after {
    content: none !important;
  }
}

/* —— Longevity birey değerlendirmesi —— */
.vv-assess {
  max-width: 44rem;
  margin: 0 auto;
  color: var(--vv-ink, #182030);
}
.vv-assess__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--vv-line, #e4e7ec);
}
.vv-assess__toolbar-note {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.95rem;
  color: var(--vv-muted, #5a6472);
  line-height: 1.5;
}
.vv-assess__block {
  margin: 0 0 2.25rem;
}
.vv-assess__block h2 {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
}
.vv-assess__block h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.vv-assess__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.vv-assess__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
}
.vv-assess__field--full {
  grid-column: 1 / -1;
}
.vv-assess__field input[type="text"],
.vv-assess__field input[type="email"],
.vv-assess__field input[type="tel"],
.vv-assess__field input[type="date"] {
  border: 1px solid var(--vv-line, #c9ced6);
  border-radius: 2px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  background: #fff;
  color: inherit;
}
.vv-assess__domain {
  margin: 1.15rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--vv-line, #e8ebf0);
}
.vv-assess__check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.45;
  cursor: pointer;
}
.vv-assess__check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.vv-assess__check--emph {
  margin-top: 0.9rem;
  font-weight: 500;
}
.vv-assess__hint,
.vv-assess__score,
.vv-assess__privacy,
.vv-assess__print-help {
  font-size: 0.9rem;
  color: var(--vv-muted, #5a6472);
  line-height: 1.5;
}
.vv-assess__score {
  margin: 0.55rem 0 0;
}
.vv-assess__result {
  padding: 1.25rem 1.35rem;
  background: var(--vv-soft, #f7f8fa);
  border-left: 3px solid var(--vv-navy, #1a2a4a);
}
.vv-assess__badge {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.vv-assess__stage {
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--vv-navy, #1a2a4a);
  line-height: 1;
}
.vv-assess__stage-name {
  font-size: 1.15rem;
  font-weight: 600;
}
.vv-assess__why,
.vv-assess__focus {
  margin: 0.35rem 0;
  line-height: 1.55;
}
.vv-assess__summary {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
}
.vv-assess__summary li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--vv-line, #e4e7ec);
  padding: 0.25rem 0;
}
.vv-assess__organs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem 1rem;
}
.vv-assess__organs.is-hidden {
  display: none;
}
.vv-assess__radio {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.75rem 0;
}
.vv-assess__error {
  color: #8b1e1e;
  font-size: 0.95rem;
  margin: 0.75rem 0;
}
.vv-assess__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}
.vv-assess__foot {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.8rem;
  color: #555;
}
.print-only {
  display: none;
}
@media (max-width: 640px) {
  .vv-assess__grid,
  .vv-assess__summary,
  .vv-assess__organs-grid {
    grid-template-columns: 1fr;
  }
}
@media print {
  .no-print,
  .site-header,
  .site-footer,
  .vv-whatsapp,
  .elementor-location-header,
  .elementor-location-footer,
  nav,
  .vv-assess__toolbar,
  .vv-assess__actions {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  body.vv-assess-printing .vv-assess {
    max-width: none;
  }
  .vv-assess__block {
    break-inside: avoid;
  }
  .vv-assess__result {
    border: 1px solid #222;
    background: #fff;
  }
  a[href]::after {
    content: none !important;
  }
}
