@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DM_Sans/DMSans-VariableFont_opsz\,wght.ttf') format('woff2');

}

.menu-toggle,
.mobile-menu {
  display: none;
}

html{
  scroll-behavior:smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'DM Sans';
}



.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  z-index: 10;
}


.logo {
  justify-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 10px 16px;
  border: 1px solid #FFEBAE;
  border-radius: 6px;

  background: rgba(255,235,174,0.3);
  transition: 0.2s;
}


.logo img {
  height: 28px;   
  width: auto;
  display: block;
  max-height: 100%;
}

.logo:hover{
  background: #FFEBAE;
  color: black;
}

.nav-pill {
  justify-self: center;
  display: flex;
  gap: 20px;

  padding: 8px 16px;
  border: 1px solid #FFEBAE;
  border-radius: 8px;
  background: rgba(255,235,174,0.3); 
  backdrop-filter: blur(6px);
}


.nav-pill a {
  text-decoration: none;
  color: #FFEBAE;
  font-size: 14px;
  padding: 6px 10px;
  transition: 0.2s;
}

.nav-pill a:hover {
  background: #FFEBAE;
  color: black;
  border-radius: 4px;
}

/* RIGHT */
.cta-btn {
  background: rgba(255,235,174,0.3);
  justify-self: end;
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid #FFEBAE;
  border-radius: 6px;
  color: #FFEBAE;
  transition: 0.2s;
}

.cta-btn:hover {
  background: #FFEBAE;
  color: black;
}

.policy-hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 110px 120px;
  color: white;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
}


.policy-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.15);
  z-index: 0;
}

.policy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 1;
}

.policy-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255, 235, 174, 0.10),
    transparent 60%
  );
  z-index: 2;
}


.policy-content {
  position: relative;
  z-index: 3;
  max-width: 1400px;
  margin: auto;
  width: 100%;
}

.top-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.policy-hero h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
}

.policy-hero p {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
}

.top-info > div {
  padding: 24px 26px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,235,174,0.15);
  backdrop-filter: blur(10px);
}


.summary-title {
  font-size: 48px;
  font-weight: 300;
  margin-top: 20px;
  letter-spacing: -1px;
}

.summary-sub {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}


.summary-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.summary-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,235,174,0.15);
  border-radius: 16px;
  padding: 26px;
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.summary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,235,174,0.35);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.summary-card h3 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFEBAE;
  margin-bottom: 10px;
}

.summary-card p{
  font-size:18px;
  line-height:1.5;
  font-weight: 400;
}

/* =========================
    PRIVACY SECTION
========================== */

.privacy-section{
  background:#ececec;
  padding:45px 45px 90px;
}

.privacy-title{
  font-size:34px;
  font-weight:500;
  margin-bottom:45px;
}

.privacy-layout{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:55px;
  align-items:start;
}


.privacy-nav{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.nav-item{
  display:flex;
  align-items:center;
  gap:14px;
  cursor:pointer;
  transition:0.3s ease;
}

.nav-indicator{
  width:8px;
  height:28px;
  background:#cfcfcf;
  transition:0.3s ease;
}

.nav-item.active .nav-indicator{
  background:#f1c232;
}

.nav-item span{
  font-size:18px;
  color:#111;
  transition:0.3s ease;
}

.nav-item:hover span{
  opacity:0.7;
}


.privacy-content{
  position:relative;
}

.content-panel{
  display:none;
  animation:fade 0.35s ease;
}

.content-panel.active{
  display:block;
}

@keyframes fade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.content-panel h2{
  font-size:28px;
  font-weight:500;
  margin-bottom:14px;
}

.content-panel h3{
  font-size:22px;
  font-weight:400;
  margin-bottom:14px;
}

.content-panel .intro{
  font-size:16px;
  line-height:1.6;
  margin-bottom:30px;
  max-width:850px;
}

.content-panel .outro {
    font-size:14px;
    line-height:1.6;
    padding: 50px 90px 100px 0px;
}

.policy-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px 22px;
  margin-top:30px;
}

.policy-box{
  border-top:2px solid #9e9e9e;
  padding-top:12px;
}

.policy-number{
  font-size:18px;
  margin-bottom:25px;
}

.policy-box h3{
  font-size:15px;
  font-weight:700;
  text-align:center;
  margin-bottom:18px;
}

.policy-box p{
  font-size:15px;
  line-height:1.6;
  text-align:center;
  max-width:320px;
  margin:auto;
}

.bottom-note{
  margin-top:40px;
  max-width:900px;
}

.bottom-note p{
  font-size:13px;
  line-height:1.6;
  margin-bottom:18px;
}

.footer {
  background: linear-gradient(180deg, #1b1b1b, #141414);
  padding: 30px 40px;
  color: white;
}

.footer-single-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  max-width: 1400px;
  margin: auto;

  flex-wrap: wrap; 
}

.footer-brand {
  font-size: 18px;
  font-weight: 500;
  color: #FFEBAE;
  letter-spacing: -0.5px;
}

.footer-text,
.footer-tagline {
  font-size: 12px;
  opacity: 0.65;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-links a:hover {
  color: #FFEBAE;
}

.footer-cta-btn {
  font-size: 13px;
  padding: 8px 14px;
  border: 1px solid #FFEBAE;
  border-radius: 999px;
  color: #FFEBAE;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-cta-btn:hover {
  background: #FFEBAE;
  color: #111;
}

.compliance-section {
  background: #efefef;
  padding: 80px 40px;
  font-family: 'DM Sans', sans-serif;
}

.compliance-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 120px 1fr;
  gap: 30px;
  align-items: start;
}

.compliance-column {
  text-align: center;
}

.compliance-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 40px;
}

.compliance-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #000;
}

.line {
  width: 100%;
  height: 2px;
  background: #111;
  margin-bottom: 35px;
}

.arrow-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top:150px; 
  gap: 200px; 
}

.arrow {
  font-size: 42px;
  font-weight: 200;
  color: #111;
  line-height: 1;
}

.compliance-block {
  display: grid;
  grid-template-rows:
    150px  
    auto    
    auto    
    150px   
    auto    
    auto    
    1fr;    
  height: 100%;
}



.info-buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  margin: 80px auto;
  padding: 0 20px;
}

.info-card {
  width: 100%;
  padding: 28px 34px;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: #FFCD38;
  transform: translateY(-3px);
}

.info-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.info-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: black;
  margin: 0;
  transition: color 0.3s ease;
}

.info-card:hover h3,
.info-card:hover p {
  color: black;
}

.whatsapp {
  padding-top: 20px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

  body {
    overflow-x: hidden;
  }

  /* =========================
      NAVBAR
  ========================== */

.nav-pill,
.cta-btn {
  display: none;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 20px 24px;
}


.menu-toggle {
  position: fixed;
  top: 20px;
  right: 24px;

  width: 52px;
  height: 52px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;

  background: rgba(255,235,174,0.15);
  backdrop-filter: blur(10px);

  border: 1px solid #FFEBAE;
  border-radius: 12px;

  cursor: pointer;
  z-index: 2000;
}


.menu-toggle span {
  width: 22px;
  height: 2px;

  background: #FFEBAE;
  border-radius: 2px;
}


.mobile-menu {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(18px);

  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;

  transition: 0.35s ease;

  z-index: 1999;
}


.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}


.close-menu {
  position: absolute;
  top: 24px;
  left: 24px;

  width: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,235,174,0.15);
  backdrop-filter: blur(10px);

  border: 1px solid #FFEBAE;
  border-radius: 12px;

  color: #FFEBAE;
  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  transition: 0.25s ease;

  z-index: 2001;
}

.close-menu:hover {
  background: #FFEBAE;
  color: black;

  transform: rotate(90deg);
}

.close-menu:hover {
  background: #FFEBAE;
  color: black;

  transform: rotate(90deg);
}

/* MOBILE NAV */
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;

  text-align: center;
}

.mobile-nav a {
  color: white;
  text-decoration: none;

  font-size: 42px;
  font-weight: 300;

  transition: 0.2s ease;
}

.mobile-nav a:hover {
  color: #FFEBAE;
}

  /* =========================
      HERO
  ========================== */

  .policy-hero {
    height: auto;
    padding: 120px 20px 80px;
  }

  .top-info {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .summary-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .summary-card {
    min-height: auto;
    padding: 40px 32px;
  }

  .policy-hero h2 {
    font-size: 30px;
  }

  .summary-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .summary-card p {
    font-size: 17px;
  }

  /* =========================
      PRIVACY LAYOUT
  ========================== */

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

  .privacy-nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 18px;

    scrollbar-width: none;
  }

  .privacy-nav::-webkit-scrollbar {
    display: none;
  }

  .nav-item {
    min-width: max-content;
  }

  .nav-item span {
    font-size: 16px;
    white-space: nowrap;
  }

  /* =========================
      POLICY GRID
  ========================== */

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

  .content-panel .outro {
    padding: 40px 0 60px;
  }

  /* =========================
      COMPLIANCE GRID
  ========================== */

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .arrow-column {
    display: none;
  }

  .compliance-block {
    grid-template-rows: auto;
  }

  /* =========================
      INFO CARDS
  ========================== */

  .info-buttons-wrapper {
    margin: 50px auto;
  }

  .info-card {
    border-radius: 30px;
    padding: 30px;
  }

  /* =========================
      FOOTER
  ========================== */

.footer {
    padding: 30px 20px;
  }

  .footer-single-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;

    max-width: 100%;
  }


  .footer-brand {
    font-size: 18px;
  }


  .footer-text,
  .footer-tagline {
    font-size: 12px;
    opacity: 0.65;
    white-space: normal; 
    line-height: 1.4;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-cta-btn {
    display: inline-block;
    width: 100%;
    text-align: center;

    padding: 10px 14px;
    border-radius: 12px;
  }

}


/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* =========================
      NAVBAR
  ========================== */

  .nav-pill,
  .cta-btn {
    display: none;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
  }

  /* SHOW BURGER */
  .menu-toggle {
    position: fixed;
    top: 20px;
    right: 24px;

    width: 52px;
    height: 52px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;

    background: rgba(255,235,174,0.15);
    backdrop-filter: blur(10px);

    border: 1px solid #FFEBAE;
    border-radius: 12px;

    cursor: pointer;
    z-index: 2000;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: #FFEBAE;
    border-radius: 2px;
  }
}
  /* =========================
      HERO
  ========================== */

  .policy-hero {
    padding: 180px 20px 80px;
  }

  .top-info h2,
  .summary-title,
  .privacy-title,
  .content-panel h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .top-info p,
  .summary-sub,
  .content-panel .intro,
  .policy-box p,
  .compliance-block p,
  .info-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .summary-sub {
    margin-bottom: 35px;
  }

  .summary-card {
    padding: 32px 24px;
  }

  .summary-card h3 {
    font-size: 20px;
  }

  /* =========================
      PRIVACY SECTION
  ========================== */

  .privacy-section {
    padding: 40px 20px 70px;
  }

  .privacy-nav {
    gap: 16px;
  }

  .nav-item span {
    font-size: 15px;
  }

  .nav-indicator {
    height: 20px;
  }

  /* =========================
      CONTENT
  ========================== */

  .content-panel h3 {
    font-size: 19px;
    text-decoration: underline;
  }

  .content-panel .outro {
    font-size: 14px;
    padding: 30px 0 50px;
  }

  /* =========================
      POLICY BOXES
  ========================== */

  .policy-box h3 {
    font-size: 14px;
  }

  .policy-box p {
    max-width: 100%;
  }

  /* =========================
      INFO CARDS
  ========================== */

  .info-buttons-wrapper {
    padding: 0;
    gap: 18px;
  }

  .info-card {
    border-radius: 24px;
    padding: 24px 20px;
  }

  .info-card h3 {
    font-size: 18px;
  }



