.nav__link--active {
  color: var(--accent-strong);
}

.nav__link--active::after {
  transform: scaleX(1);
}

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

body.contact-body {
  position: relative;
  min-height: 100vh;
  /* ✅ iOS Safari compatibility */
  min-height: -webkit-fill-available;
  /* ✅ Modern viewport height for mobile browsers */
  min-height: 100dvh;
  background: linear-gradient(135deg, #080912 0%, #111527 48%, #04050c 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  /* ✅ iOS Safari scroll optimizations */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  /* ✅ iOS Safe Area insets */
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

/* ✅ iOS Safari specific fix for html element */
@supports (-webkit-touch-callout: none) {
  html {
    height: 100%;
    height: -webkit-fill-available;
  }
}

body.contact-body::before,
body.contact-body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  transform: translate3d(0, 0, 0);
}

body.contact-body::before {
  top: -18vh;
  left: -10vw;
  width: 72vw;
  height: 72vw;
  background: radial-gradient(
      40% 40% at 22% 24%,
      rgba(247, 163, 55, 0.28),
      rgba(247, 163, 55, 0) 68%
    ),
    radial-gradient(
      45% 42% at 70% 18%,
      rgba(92, 112, 255, 0.25),
      rgba(92, 112, 255, 0) 74%
    ),
    conic-gradient(
      from 210deg at 55% 55%,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0)
    );
  filter: blur(0);
  opacity: 0.9;
  mix-blend-mode: screen;
}

body.contact-body::after {
  bottom: -25vh;
  right: -18vw;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(
      38% 38% at 32% 32%,
      rgba(255, 205, 111, 0.18),
      rgba(255, 205, 111, 0) 70%
    ),
    radial-gradient(
      55% 48% at 68% 65%,
      rgba(34, 48, 99, 0.65),
      rgba(34, 48, 99, 0) 75%
    ),
    linear-gradient(160deg, rgba(8, 9, 20, 0.8), transparent 68%);
  opacity: 0.85;
  mix-blend-mode: soft-light;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 9vw, 6.5rem);
  padding-top: 0;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.contact-container {
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.contact-hero {
  position: relative;
  min-height: clamp(520px, 78vh, 640px);
  /* ✅ iOS Safari compatibility */
  min-height: clamp(520px, calc(78 * var(--vh, 1vh)), 640px);
  /* ✅ Modern viewport height for mobile browsers */
  min-height: clamp(520px, 78dvh, 640px);
  display: flex;
  align-items: center;
  padding: clamp(7rem, 12vw, 8.6rem) 0 clamp(4rem, 9vw, 5.6rem);
  color: var(--text-primary);
  background: linear-gradient(
      120deg,
      rgba(9, 10, 20, 0.3) 5%,
      rgba(9, 10, 22, 0.9) 55%,
      rgba(6, 7, 16, 0.3) 100%
    ),
    url("./img/Roxlift-Arkaplan.jpg") center/cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  isolation: isolate;
  /* ✅ iOS scroll fix - GPU acceleration */
  will-change: transform;
  transform: translateZ(0);
  /* ✅ iOS background attachment fix */
  background-attachment: scroll;
}

.contact-hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    48% 46% at 18% 22%,
    rgba(247, 163, 55, 0.24),
    transparent 70%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.4rem, 3.5vw, 2.4rem);
  max-width: 600px;
}

.contact-hero .contact-container {
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.contact-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 4.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: -20px;
  color: var(--text-primary);
  font-weight: 700;
}

.contact-hero__text {
  margin: 0;
  color: rgba(233, 236, 255, 0.78);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.72;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.8rem, 2vw, 1.2rem);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: clamp(0.95rem, 2.5vw, 1.1rem) clamp(1.8rem, 4vw, 2.6rem);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.contact-button--primary {
  color: #0f0b00;
  border: none;
  background: linear-gradient(
    120deg,
    rgba(255, 154, 70, 0.95),
    rgba(247, 163, 55, 0.98)
  );
  box-shadow: 0 14px 36px rgba(247, 163, 55, 0.35);
}

.contact-button--primary:hover,
.contact-button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(247, 163, 55, 0.45);
  outline: none;
}

.contact-button--secondary {
  color: var(--text-primary);
  border: 1.5px solid rgba(247, 163, 55, 0.38);
  background: rgba(9, 10, 20, 0.4);
  box-shadow: 0 12px 28px rgba(9, 10, 22, 0.45);
}

.contact-button--secondary:hover,
.contact-button--secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(247, 163, 55, 0.12);
  box-shadow: 0 18px 38px rgba(247, 163, 55, 0.32);
  outline: none;
}

.contact-section {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  box-sizing: border-box;
  /* ✅ iOS scroll fix - GPU acceleration */
  will-change: transform;
  transform: translateZ(0);
}

.contact-section .contact-container {
  padding: 0 clamp(1rem, 3vw, 2rem);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.8vw, 1.1rem);
  margin-bottom: clamp(2.4rem, 5vw, 3.6rem);
  max-width: 660px;
}

.section-heading__tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(247, 163, 55, 0.12);
  border: 1px solid rgba(247, 163, 55, 0.22);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247, 163, 55, 0.9);
  font-weight: 600;
}

.section-heading__tag::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(
    120deg,
    rgba(255, 154, 70, 0.95),
    rgba(247, 163, 55, 0.98)
  );
  box-shadow: 0 0 10px rgba(247, 163, 55, 0.55);
}

.section-heading__title {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  letter-spacing: -0.015em;
  color: var(--text-primary);
}

.section-heading__description {
  margin: 0;
  color: rgba(233, 236, 255, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.contact-info__grid {
  display: grid;
  gap: clamp(1.6rem, 3.2vw, 2.2rem);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.8rem, 3vw, 2.3rem);
  border-radius: clamp(18px, 3vw, 22px);
  background: linear-gradient(
    150deg,
    rgba(12, 14, 26, 0.82) 0%,
    rgba(8, 9, 20, 0.9) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 40px rgba(9, 10, 22, 0.48);
  transition: transform 0.28s ease, box-shadow 0.28s ease,
    border-color 0.28s ease;
  /* ✅ iOS scroll fix - GPU acceleration */
  will-change: transform;
  transform: translateZ(0);
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    140deg,
    rgba(247, 163, 55, 0.28),
    rgba(255, 205, 111, 0.12)
  );
  opacity: 0;
  transition: opacity 0.28s ease;
  z-index: -1;
}

.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(5, 5, 18, 0.55);
  border-color: rgba(247, 163, 55, 0.35);
}

.contact-card:hover::after,
.contact-card:focus-within::after {
  opacity: 1;
}

.contact-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 163, 55, 0.18);
  border: 1px solid rgba(247, 163, 55, 0.34);
  box-shadow: 0 16px 28px rgba(247, 163, 55, 0.22);
}

.contact-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-strong);
  fill: none;
  stroke-width: 1.6;
}

.contact-card__title {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  font-weight: 600;
}

.contact-card__value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-strong);
  text-decoration: none;
}

.contact-card__value:hover,
.contact-card__value:focus-visible {
  text-decoration: underline;
  outline: none;
}

.contact-card__body {
  margin: 0;
  color: rgba(233, 236, 255, 0.62);
  line-height: 1.65;
  font-size: 0.98rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3.2rem);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: stretch;
  border-radius: clamp(22px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 9, 22, 0.82);
  box-shadow: 0 28px 52px rgba(5, 5, 17, 0.52);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.contact-form__card {
  display: grid;
  gap: 1rem;
  padding: clamp(2.2rem, 4vw, 3rem);
  background: transparent;
  border: none;
  box-shadow: none;
}

.contact-form__card p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(230, 233, 249, 0.78);
  letter-spacing: -0.01em;
}

.contact-form__card p + p {
  margin-top: 0.85rem;
}

.contact-form__media {
  height: 100%;
  min-height: clamp(320px, 36vw, 440px);
  position: relative;
  display: block;
  background: rgba(9, 10, 22, 0.68);
  overflow: hidden;
}

.contact-form__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08);
}

.contact-form__media::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Üstten gelen hafif genel gölgelik */
  background: linear-gradient(
    180deg,
    rgba(3, 4, 10, 0.65) 0%,
    rgba(3, 4, 10, 0.05) 38%
  );
  pointer-events: none;
  z-index: 1;
}

.contact-form__media::after {
  content: "";
  position: absolute;
  inset: 0;
  /* 🔧 Yeni eklenen alt gölgelendirme dahil edildi */
  background:
    /* mevcut çapraz blend tonu */ linear-gradient(
      135deg,
      rgba(8, 9, 22, 0.45) 0%,
      rgba(8, 9, 22, 0.05) 65%
    ),
    /* alttan yukarıya doğru yumuşak fade */
      linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

.contact-form__media-caption {
  position: absolute;
  inset: auto clamp(1.8rem, 4vw, 2.6rem) clamp(1.8rem, 4vw, 2.6rem)
    clamp(1.8rem, 4vw, 2.6rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  max-width: clamp(240px, 40vw, 320px);
  color: rgba(246, 247, 255, 0.92);
  z-index: 2;
}

.contact-form__media-caption span {
  font-size: 0.82rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247, 163, 55, 0.92);
  font-weight: 600;
}

.contact-form__media-caption p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(246, 247, 255, 0.82);
}

.contact-input {
  width: 100%;
  padding: clamp(0.9rem, 2vw, 1.1rem) clamp(1.1rem, 2.2vw, 1.4rem);
  border-radius: 18px;
  border: 1px solid rgba(247, 163, 55, 0.35);
  background: rgba(7, 8, 20, 0.72);
  color: var(--text-primary);
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
  outline: none;
  border-color: rgba(247, 163, 55, 0.8);
  box-shadow: 0 0 0 3px rgba(247, 163, 55, 0.22);
}

.contact-input::placeholder {
  color: rgba(233, 236, 255, 0.42);
  letter-spacing: 0.02em;
}

.contact-input--textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__submit {
  justify-self: start;
  border: none;
}

.contact-map__frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 58px rgba(5, 5, 17, 0.5);
  background: rgba(9, 10, 22, 0.75);
  height: clamp(340px, 45vw, 420px);
}

.contact-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: grayscale(12%) contrast(1.08) saturate(1.1);
}

@media (max-width: 1080px) {
  .contact-form__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form__card {
    padding: clamp(1.6rem, 6vw, 2.1rem);
  }

  .contact-form__media {
    min-height: clamp(240px, 48vw, 320px);
  }
}

@media (max-width: 900px) {
  .contact-hero {
    min-height: auto;
    /* ✅ Modern viewport height for mobile browsers */
    min-height: clamp(400px, 65dvh, 500px);
    padding: clamp(5rem, 12vw, 6.8rem) 0;
  }

  .contact-hero__content {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .contact-main {
    gap: clamp(3rem, 12vw, 4.5rem);
  }

  .contact-hero__content {
    align-items: center;
    text-align: center;
  }

  .contact-badge {
    align-self: center;
  }

  .contact-hero__actions {
    justify-content: center;
  }

  .section-heading {
    align-items: center;
    text-align: center;
  }

  .section-heading__tag {
    align-self: center;
  }

  .contact-form__submit {
    justify-self: stretch;
    text-align: center;
  }

  .contact-section {
    padding: clamp(1.5rem, 6vw, 2.5rem) clamp(1rem, 4vw, 1.5rem);
  }

  .contact-section .contact-container {
    padding: 0 clamp(0.8rem, 4vw, 1.2rem);
  }

  /* ✅ Mobile optimizations - iOS scroll fix */
  .contact-card,
  .contact-form__grid,
  .contact-hero {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  /* ✅ Touch optimization */
  .contact-button {
    -webkit-tap-highlight-color: rgba(247, 163, 55, 0.2);
    touch-action: manipulation;
  }

  .contact-input {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: rgba(247, 163, 55, 0.2);
  }
}

/* Privacy Policy Styles */
.privacy-update {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding: clamp(1rem, 2vw, 1.4rem) clamp(1.4rem, 3vw, 2rem);
  border-radius: clamp(16px, 2.5vw, 20px);
  background: rgba(247, 163, 55, 0.08);
  border: 1px solid rgba(247, 163, 55, 0.2);
  backdrop-filter: blur(8px);
}

.privacy-update__text {
  margin: 0;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: rgba(233, 236, 255, 0.85);
  line-height: 1.6;
}

.privacy-update__text strong {
  color: var(--accent-strong);
  font-weight: 600;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4.5rem);
}

.privacy-section {
  position: relative;
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-section:last-of-type {
  border-bottom: none;
}

.privacy-section__title {
  margin: 0 0 clamp(1.2rem, 2.5vw, 1.8rem) 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.3;
  position: relative;
  padding-left: clamp(1.2rem, 2.5vw, 1.8rem);
}

.privacy-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: clamp(4px, 0.6vw, 6px);
  height: clamp(24px, 3vw, 32px);
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 154, 70, 0.95),
    rgba(247, 163, 55, 0.98)
  );
  box-shadow: 0 8px 16px rgba(247, 163, 55, 0.35);
}

.privacy-section__subtitle {
  margin: clamp(1.4rem, 3vw, 2rem) 0 clamp(0.8rem, 1.8vw, 1.2rem) 0;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: var(--accent-strong);
  letter-spacing: 0.02em;
}

.privacy-section__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.4rem);
}

.privacy-section__body > p {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.75;
  color: rgba(233, 236, 255, 0.78);
  letter-spacing: -0.01em;
}

.privacy-section__body > p + p {
  margin-top: 0;
}

.privacy-section__body > p strong {
  color: var(--text-primary);
  font-weight: 600;
}

.privacy-list {
  margin: clamp(1rem, 2vw, 1.4rem) 0;
  padding-left: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.7rem, 1.5vw, 1rem);
  list-style: none;
  position: relative;
}

.privacy-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(247, 163, 55, 0.4),
    rgba(247, 163, 55, 0.1)
  );
  border-radius: 999px;
}

.privacy-list li {
  position: relative;
  padding-left: clamp(1.2rem, 2.5vw, 1.6rem);
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.75;
  color: rgba(233, 236, 255, 0.78);
  letter-spacing: -0.01em;
}

.privacy-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.9em;
}

.privacy-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

.privacy-list--links {
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
}

.privacy-list--links li::before {
  content: "→";
  color: var(--accent-strong);
}

.privacy-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease, text-decoration 0.25s ease;
  border-bottom: 1px solid transparent;
}

.privacy-link:hover,
.privacy-link:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(247, 163, 55, 0.5);
  outline: none;
}

.privacy-links {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 2.8rem);
  border-radius: clamp(20px, 3vw, 24px);
  background: linear-gradient(
    150deg,
    rgba(12, 14, 26, 0.6) 0%,
    rgba(8, 9, 20, 0.8) 100%
  );
  border: 1px solid rgba(247, 163, 55, 0.15);
  box-shadow: 0 20px 40px rgba(5, 5, 17, 0.4);
}

/* Cookie Table Styles */
.cookie-table-wrapper {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  overflow-x: auto;
  /* ✅ iOS smooth scrolling */
  -webkit-overflow-scrolling: touch;
  /* ✅ Prevent overscroll bounce */
  overscroll-behavior-x: contain;
  /* ✅ iOS scroll fix - GPU acceleration */
  will-change: scroll-position;
  transform: translateZ(0);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: clamp(16px, 2.5vw, 20px);
  overflow: hidden;
  background: linear-gradient(
    150deg,
    rgba(12, 14, 26, 0.82) 0%,
    rgba(8, 9, 20, 0.9) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 40px rgba(9, 10, 22, 0.48);
}

.cookie-table thead {
  background: linear-gradient(
    135deg,
    rgba(247, 163, 55, 0.15) 0%,
    rgba(247, 163, 55, 0.08) 100%
  );
  border-bottom: 2px solid rgba(247, 163, 55, 0.3);
}

.cookie-table th {
  padding: clamp(1rem, 2vw, 1.4rem) clamp(0.8rem, 1.5vw, 1.2rem);
  text-align: left;
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-strong);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-table th:last-child {
  border-right: none;
}

.cookie-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.25s ease;
}

.cookie-table tbody tr:hover {
  background: rgba(247, 163, 55, 0.05);
}

.cookie-table tbody tr:last-child {
  border-bottom: none;
}

.cookie-table td {
  padding: clamp(1rem, 2vw, 1.3rem) clamp(0.8rem, 1.5vw, 1.2rem);
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  line-height: 1.6;
  color: rgba(233, 236, 255, 0.78);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
}

.cookie-table td:last-child {
  border-right: none;
}

.cookie-table td strong {
  color: var(--text-primary);
  font-weight: 600;
}

.cookie-table tbody tr td:first-child strong {
  color: var(--accent-strong);
  font-family: "Manrope", monospace;
  font-size: clamp(0.88rem, 1.1vw, 0.98rem);
}

@media (max-width: 720px) {
  .privacy-content {
    gap: clamp(2.5rem, 8vw, 3.5rem);
  }

  .privacy-section {
    padding-bottom: clamp(1.8rem, 6vw, 2.5rem);
  }

  .privacy-section__title {
    padding-left: clamp(1rem, 4vw, 1.5rem);
  }

  .privacy-list {
    padding-left: clamp(1.2rem, 5vw, 1.8rem);
  }

  .privacy-links {
    padding: clamp(1.6rem, 6vw, 2.2rem);
  }

  .cookie-table-wrapper {
    margin: clamp(1.2rem, 5vw, 2rem) clamp(-1rem, -4vw, -0.5rem);
  }

  .cookie-table {
    font-size: clamp(0.8rem, 3vw, 0.9rem);
    min-width: 600px;
  }

  .cookie-table th,
  .cookie-table td {
    padding: clamp(0.8rem, 3vw, 1rem) clamp(0.6rem, 2vw, 0.8rem);
    font-size: clamp(0.8rem, 3vw, 0.85rem);
  }

  .cookie-table th {
    font-size: clamp(0.75rem, 2.5vw, 0.82rem);
  }
}
