/* PRIVACY PAGE */

.privacy-page{
  background:#fff;
  color:#0b1a37;
}

:root{
  --legal-sticky-top: 96px;
}

/* Privacy hero follows dedicated mockup proportions (not shared ratio) */
@media (min-width: 981px){
  .hero.first-screen .hero__inner.first-screen__inner{
    grid-template-columns: 1.049fr 1fr;
    gap: 40px;
    align-items: flex-start;
  }

  .hero.first-screen .hero__visual.first-screen__media{
    width: 100%;
    max-width: none;
    min-height: 0;
    margin-left: 0;
  }
}

.privacy-note{
  margin-top: 14px;
  border: 0;
  background: var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.55;
  width: 100%;
  box-sizing: border-box;
}

.privacy-note--small{
  margin-top: auto;
  max-width: 520px;
}

/* ---------- LAYOUT ---------- */
.privacy-layout{
  padding: 26px 0 86px;
}

/* ---------- CONTENT ---------- */
.privacy-cards{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.privacy-card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 164px;
  height: 100%;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg);
}

.privacy-card__title{
  margin: 0;
}

.privacy-card__text{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-split{
  margin-top: 12px;
  margin-bottom: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.privacy-split__text{
  display: flex;
  flex-direction: column;
  height: 100%;
}

.privacy-split__media{
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}

.privacy-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.privacy-checklist{
  margin: 12px 0 0;
  padding: 0;
  list-style:none;
  display:flex;
  flex-direction: column;
  gap: 8px;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.55;
}

.privacy-checklist li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}

.privacy-checkmark{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid var(--text);
  background:#fff;
  position: relative;
  flex: 0 0 18px;
  margin-top: 2px;
}

.privacy-checkmark::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(11,26,55,0.75);
  border-bottom: 2px solid rgba(11,26,55,0.75);
  transform: translate(-50%,-55%) rotate(-45deg);
}

.privacy-p{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  max-width: 760px;
}

.privacy-link{
  color:#1A83D4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-check{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 620px;
}

.privacy-check li{
  position: relative;
  padding-left: 28px;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-check li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--text);
  background: #fff;
}

.privacy-check li::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(11,26,55,0.78);
  border-bottom: 2px solid rgba(11,26,55,0.78);
  transform: rotate(-45deg);
}

.privacy-bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  font-size: 12px;
  line-height: 1.55;
}

.privacy-table-wrap{
  margin-top: 16px;
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(12,22,48,0.12);
  background: #fff;
}

.privacy-table{
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.45;
}

.privacy-table thead th{
  text-align: left;
  padding: 10px 12px;
  background: var(--surface-soft);
  font-weight: 500;
  border-bottom: 1px solid rgba(12,22,48,0.10);
}

.privacy-table td{
  padding: 10px 12px;
  border-top: 1px solid rgba(12,22,48,0.08);
  vertical-align: top;
}

.privacy-section{
  scroll-margin-top: 110px;
  padding: 48px 0;
}

.privacy-content,
.privacy-section,
.privacy-split,
.privacy-split__text,
.privacy-split__media,
.privacy-table-wrap{
  min-width: 0;
}

@media (min-width: 981px){
  .privacy-content > .privacy-section:first-of-type{
    padding-top: 0;
  }

  .privacy-content .privacy-section .privacy-h2{
    text-align: left;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  :root{
    --legal-sticky-top: 84px;
  }

  .hero.first-screen{
    padding: 22px 0 28px;
  }

  .hero.first-screen .hero__inner.first-screen__inner{
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .hero.first-screen .hero__content.first-screen__content{
    padding-right: 0;
  }

  .hero.first-screen .hero__title{
    max-width: 240px;
    font-size: clamp(44px, 14vw, 72px);
    line-height: 0.96;
  }

  .hero.first-screen .hero__desc.first-screen__text{
    margin-top: 20px;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .hero.first-screen .hero__actions.first-screen__actions{
    margin-top: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .hero.first-screen .hero__actions.first-screen__actions .btn{
    width: auto;
    max-width: 100%;
    min-height: 44px;
    padding: 0 16px;
    white-space: nowrap;
  }

  .hero.first-screen .hero__visual.first-screen__media{
    max-width: 280px;
    min-height: 0;
    margin: 0;
  }

  .hero.first-screen .hero__img{
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .privacy-layout{
    padding: 16px 0 70px;
  }

  .privacy-cards{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .privacy-split{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .privacy-split__media{
    border-radius: 14px;
  }

  .privacy-img{
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  .privacy-section{
    padding: 32px 0;
  }

  .privacy-h2{
    font-size: 32px;
    line-height: 1.12;
  }

  .privacy-table{
    min-width: 520px;
  }
}

body{
  background: #fff;
}
