:root {
  --primary: #243c6d;
  --primary-dark: #17294e;
  --accent: #cd432d;
  --accent-dark: #a93423;
  --text: #273248;
  --muted: #697386;
  --light: #f5f7fb;
  --white: #fff;
  --border: #e2e7f0;
  --shadow: 0 18px 45px rgba(26, 44, 83, 0.1);
}

/* =========================
   Global
========================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

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

a {
  color: inherit;
}

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

.privacy-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* =========================
   Header
========================= */

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(226, 231, 240, 0.9);
  backdrop-filter: blur(14px);
}

.privacy-header__inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 82px;
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.privacy-logo img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  transition: 0.25s;
}

.back-home:hover {
  color: var(--accent);
}

/* =========================
   Hero
========================= */

.privacy-hero {
  position: relative;
overflow: hidden;

  display: flex;
  align-items: center;

  color: #ffffff;

  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 0.3)),
            url('../images/privacy_policy_hero.png') no-repeat center center / cover;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 680px) {
  .privacy-hero {
    min-height: auto;

    background-position: 65% center;

  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(10, 10, 10, 0.3)),
            url('../images/privacy_policy_hero.png') no-repeat center center / cover;
  }

  .privacy-hero__content {
    padding-block: 65px;
  }
}


.privacy-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 150px;
}

.privacy-eyebrow {
  display: inline-flex;

  margin-bottom: 18px;
  padding: 7px 14px;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.09);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;

  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.04;
  letter-spacing: -2.5px;
}

.privacy-hero__content > p {
  max-width: 760px;

  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

  margin-top: 40px;
}

.policy-meta__item {
  display: flex;
  align-items: center;
  gap: 13px;

  min-width: 210px;

  padding: 15px 18px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.policy-meta__item i {
  color: #ffb4a9;
  font-size: 19px;
}

.policy-meta__item span {
  display: flex;
  flex-direction: column;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.policy-meta__item small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* =========================
   Main Layout
========================= */

.privacy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 70px;

  padding-block: 85px 110px;
}

.policy-sidebar__inner {
  position: sticky;
  top: 115px;

  padding: 24px;

  border: 1px solid var(--border);
  border-radius: 20px;

  background: var(--light);
}

.policy-sidebar h2 {
  margin-bottom: 16px;

  color: var(--primary);
  font-size: 16px;
}

.policy-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.policy-nav a {
  padding: 8px 10px;

  border-left: 2px solid transparent;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  text-decoration: none;

  transition: 0.25s;
}

.policy-nav a:hover,
.policy-nav a.active {
  border-left-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}

.policy-content {
  min-width: 0;
}

.policy-introduction {
  position: relative;

  margin-bottom: 54px;
  padding: 30px 30px 30px 40px;

  border-radius: 0 18px 18px 0;
  background: var(--light);

  color: #3c465a;
  font-size: 16px;
  overflow: hidden;
}

.policy-introduction::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  background: linear-gradient(
    to bottom,
    #b63434,
    #243c6d
  );
}

.policy-introduction p + p {
  margin-top: 14px;
}

.policy-section {
  position: relative;

  padding: 8px 0 54px;

  border-bottom: 1px solid var(--border);
}

.policy-section + .policy-section {
  margin-top: 48px;
}

.section-number {
  margin-bottom: 4px;

  color: rgba(205, 67, 45, 0.25);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.policy-section h2 {
  margin-bottom: 20px;

  color: var(--primary);

  font-size: clamp(25px, 4vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.7px;
}

.policy-section h3 {
  margin: 30px 0 10px;

  color: var(--primary-dark);
  font-size: 18px;
}

.policy-section p {
  color: #4f5b70;
}

.policy-section p + p {
  margin-top: 17px;
}

.policy-list {
  margin-top: 20px;
  list-style: none;
}

.policy-list li {
  position: relative;

  margin-bottom: 12px;
  padding-left: 28px;

  color: #4f5b70;
}

.policy-list li::before {
  content: "\f00c";

  position: absolute;
  top: 2px;
  left: 0;

  color: var(--accent);

  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  font-weight: 900;
}

/* =========================
   Contact
========================= */

.contact-highlight {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin: 22px 0;
  padding: 16px 20px;

  border: 1px solid #dfe5f0;
  border-radius: 14px;

  background: var(--light);
}

.contact-highlight > i {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: var(--accent);
  color: #fff;
}

.contact-highlight div {
  display: flex;
  flex-direction: column;
}

.contact-highlight span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-highlight a {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
}

.policy-section--contact {
  border-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;

  margin-top: 28px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 13px;

  min-width: 0;
  padding: 20px;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: #fff;
  box-shadow: 0 8px 25px rgba(25, 44, 82, 0.06);

  text-decoration: none;

  transition: 0.25s;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(205, 67, 45, 0.35);
  box-shadow: var(--shadow);
}

.contact-card i {
  flex: 0 0 auto;

  color: var(--accent);
  font-size: 20px;
}

.contact-card span {
  display: flex;
  flex-direction: column;

  min-width: 0;

  color: var(--primary);
  font-size: 13px;
  font-weight: 800;

  overflow-wrap: anywhere;
}

.contact-card small {
  margin-bottom: 3px;

  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

/* =========================
   Back To Top
========================= */

.back-to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 999;

  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;

  border: 0;
  border-radius: 50%;

  background: linear-gradient(45deg, #b63434, #061729);;
  color: #fff;

  box-shadow: 0 10px 28px rgba(205, 67, 45, 0.28);

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);

  transition: 0.3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: linear-gradient(45deg, #cb4141, #0a1a2c);;
}

/* =========================
   Footer
========================= */

.privacy-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.72);
}

.privacy-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  min-height: 92px;

  font-size: 13px;
}

.privacy-footer__links {
  display: flex;
  gap: 22px;
}

.privacy-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.privacy-footer a:hover {
  color: #fff;
}

/* =========================
   Responsive
========================= */

@media (max-width: 980px) {

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .policy-sidebar__inner {
    position: static;
  }

  .policy-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {

  .privacy-container,
  .privacy-header__inner {
    width: min(100% - 28px, 1180px);
  }

  .privacy-header__inner {
    min-height: 70px;
  }

  .privacy-logo img {
    width: 120px;
  }

  .back-home {
    font-size: 12px;
  }

  .privacy-hero {
    min-height: auto;
  }

  .privacy-hero__content {
    padding-block: 65px;
  }

  .privacy-hero h1 {
    letter-spacing: -1.4px;
  }

  .privacy-hero__content > p {
    font-size: 15px;
  }

  .policy-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .policy-meta__item {
    min-width: 0;
  }

  .privacy-layout {
    padding-block: 55px 80px;
  }

  .policy-nav {
    grid-template-columns: 1fr;
  }

  .policy-introduction {
    padding: 22px;
  }

  .policy-section {
    padding-bottom: 40px;
  }

  .policy-section + .policy-section {
    margin-top: 38px;
  }

  .section-number {
    font-size: 40px;
  }

  .privacy-footer__inner {
    flex-direction: column;
    justify-content: center;

    padding-block: 25px;

    text-align: center;
  }
}