/* General ******************************************************* */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */

.privacy-policy {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  font-family: "DM Sans", sans-serif;
  line-height: 1.7;
}

.privacy-title {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
}

.privacy-policy h1, 
.privacy-policy h2, 
.privacy-policy h3 {
  margin-top: 2rem;
  color: #222;
}

.privacy-policy ul, 
.privacy-policy ol {
  margin-left: 2rem;
}

.privacy-policy a {
  color: #0073e6;
  text-decoration: none;
}

a {
  text-decoration: none; /* ensures the button text isn’t underlined */
}


/* Header : */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 2;
}
header {
  z-index: 5;
  position: fixed;
  top: 1.8rem;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-family: "DM Sans";
  font-weight: 800;
  font-size: 1.25rem;
  max-width: 74.625rem;
  width: 82.91%;
  height: 4.875rem;
  padding: 0 0.68rem;

  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  box-shadow: 1px 1px 11.5px 0px rgba(0, 0, 0, 0.1) inset;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
header ul {
  list-style: none;
}
header ul li a:link,
header ul li a:visited {
  text-decoration: none;
  color: black;
  transition: all 0.3s;
}

header ul li a:hover,
header ul li a:active {
  color: rgb(156, 7, 7);
}
.rcn {
  display: flex;
  gap: 3.0625rem;
}
.rcn ul {
  display: flex;
  align-items: center;
  gap: 3.0625rem;
}
.lcn {
  display: flex;
  gap: 3.0625rem;
}
.lcn ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.lcn ul .jp {
  font-weight: 200;
}

.h-cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: 1.5px solid black;
  border-radius: 30px;
  overflow: hidden;
  width: 15.75rem;
  height: 2.6875rem;
  cursor: pointer;
  gap: 0.7rem;
  transition: all 0.3s;

  color: black;
  appearance: none;
  -webkit-appearance: none;
}
.h-cta-btn span {
  font-size: 0.9375rem;
  font-family: "DM Sans";
  font-weight: 600;
}
.icon {
  width: 1.5rem;
}
.icon path {
  fill: black;
  transition: fill 0.3s;
}
.h-cta-btn:hover .icon path {
  fill: rgb(156, 7, 7);
}
.h-cta-btn:hover {
  color: rgb(156, 7, 7);
  border-color: rgb(156, 7, 7);
}

header .logo {
  width: 3.625rem;
  height: 3.625rem;
}
header .lcn .v-line {
  width: 1px;
  height: 2.0625rem;
  background-color: black;
}
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}
.icon-mobile-nav {
  height: 2.8rem;
  width: 2.8rem;
  color: #333;
}
.icon-mobile-nav[name="close-outline"] {
  display: none;
}
/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */
/* Hero */
.hero {
  font-family: "DM Sans";
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-image: url("images/bg-red.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: calc(100vw * 3344 / 4096); */
  padding-top: 9.125rem;
  position: relative;
}
.hero .subtitle {
  font-family: "DM Serif Display";
  font-weight: 400;
  font-style: italic;
  font-size: 1.5rem;
  text-align: center;
}

.hero .title {
  font-weight: 800;
  font-size: 6rem;
  margin-top: -0.8rem;
  text-align: center;
}
.hero .description {
  max-width: 35.8125rem;
  font-size: 0.875rem;
  font-weight: 400;
  text-align: center;
  margin-top: -0.5rem;
  margin-bottom: 1.2rem;
}

.cta-btn-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  border: 1.5px solid black;
  border-radius: 30px;
  overflow: hidden;
  width: 17.5rem;
  height: 3.125rem;
  cursor: pointer;
  transition: all 0.3s;

  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3.125rem;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: 1px 6px 32px 4px rgba(0, 0, 0, 0.15) inset;
  color: white;

  gap: 0.7rem;

  transition: all 0.3s;
}
.cta-btn-hero span {
  font-family: "DM Sans";
  font-weight: 300;
  font-size: 1.25rem;
}
.cta-btn-hero .icon {
  width: 1.75rem;
}
.cta-btn-hero .icon path {
  fill: white;
  transition: fill 0.3s;
}
.cta-btn-hero:hover .icon path {
  fill: black;
}
.cta-btn-hero:hover {
  color: black;
  border-color: black;
}

.img-cn {
  display: flex;
  justify-content: center;
  max-width: 90rem;
  width: 100%;
  margin-top: 1rem;
}
.hero img {
  max-width: 43.65rem;
  width: 48.5%;
  height: auto;
  margin-left: 12%;
}
.gr {
  width: 100%;
  background: linear-gradient(to top, white, transparent);
  position: absolute;
  left: 0;
}
.gridient1 {
  height: 122.19%;
  top: 66.33%;
}
.gridient2 {
  height: 103%;
  top: 67.62%;
}
.gridient3 {
  height: 113%;
  top: 70.48%;
}
.gridient4 {
  height: 113%;
  top: 70.77%;
}
.gridient5 {
  height: 30.73%;
  top: 73.65%;
}
.gridient6 {
  height: 25.44%;
  top: 81.36%;
}
.gridient7 {
  height: 25%;
  top: 87.91%;
}
.gridient8 {
  height: 8.87%;
  top: 91.15%;
}
/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */
/* Service */
.service {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 8rem;
  padding-bottom: 12rem;
}
.service .tcn {
  display: flex;
  align-items: end;
  padding-left: 1.5rem;
  justify-content: center;
  gap: 8rem;
}
.service .header-cn {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service h2 {
  font-family: "Cabin";
  font-weight: 500;
  font-size: 6rem;
  line-height: 0.927;
}
.service h2 span {
  font-family: "DM Serif Display";
  font-weight: 400;
}
.service p {
  max-width: 29.25rem;
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.service .bcn {
  display: grid;
  grid-template-columns: minmax(0, 30.375rem) minmax(0, 30.375rem);
  justify-content: center;
  padding-left: 2.5rem;

  column-gap: 2.5rem;
  row-gap: 4rem;
}

.service .service-card h3 {
  font-family: "DM Sans";
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.45rem;

  color: rgba(255, 255, 255, 0.9);
  -webkit-text-stroke: 0.25rem #000; /* Outline stroke */
  paint-order: stroke fill;
}
.service .service-card .less-spacing {
  letter-spacing: 0.255rem;
}
.no-margin-bott {
  margin-bottom: 0.25rem;
}
.margin-bott {
  margin-bottom: 1rem;
}

.service .service-card p {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
}
/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */
/* Feature */
.backgroud-colors {
  position: absolute;
  width: 100%;
  height: 200%;
  top: -25.625rem;
  left: 0;
  z-index: -1;
}
.feature {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}
.feature .tcn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
.feature .tcn h2 {
  font-family: "DM Sans";
  font-weight: 800;
  font-size: 4rem;
  text-align: center;
  letter-spacing: -0.16rem;
}
.feature .tcn p {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 0.875rem;
  max-width: 35.81rem;
  text-align: center;
}
.feature .bcn {
  display: grid;
  grid-template-columns: minmax(0, 36rem) minmax(0, 36rem);
  column-gap: 5rem;
  row-gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
}
.market {
  --glow-color: #48e3bd; /* green */
  --height: 120%;
  --top: 0;
}
.freebies {
  --glow-color: #cb2020; /* red/pink */
  --height: 100%;
  --top: 0;
}
.swap {
  --glow-color: #0a3bd9; /* blue */
  --height: 100%;
  --top: 0;
}
.carshare {
  --glow-color: #444444; /* yellow/orange */
  --height: 120%;
  --top: 0;
}
.feature .bcn .feature-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) inset;
  /* padding: 2rem 3.5rem 1.7rem 3.5em; */
  border-radius: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.2);
  /* min-height: 16.5rem; */
  transition: transform 0.3s ease;
  align-items: center;
  justify-content: center;

  min-height: 16.375rem;
}
.feature .bcn .feature-cards:hover {
  transform: translateY(-5px);
}
.feature .bcn .feature-cards h3 {
  font-family: "DM Sans";
  font-weight: 800;
  font-size: 3rem;
  text-align: center;
  letter-spacing: -0.12rem;

  color: #fff;
  text-shadow: 0 4px 16.6px rgba(0, 0, 0, 0.25);
}
.feature .bcn .feature-cards h4 {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 1rem;
  text-align: center;

  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.5625rem;
}
.feature .bcn .feature-cards p {
  font-family: "DM Sans";
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

  max-width: 24.93rem;
}
/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */
/* CTA  */
.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/bg-third.jpg");
  mask-image: linear-gradient(to top, black 85%, transparent 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  z-index: -1;
}
.cta {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16rem 0 10rem 0;
}
.cta h2 {
  font-family: "DM Sans";
  font-weight: 800;
  font-size: 4rem;
  letter-spacing: -0.08rem;
  text-align: center;
  margin-bottom: 1rem;
}
.cta p {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 6rem;
  max-width: 39.06rem;
}
.app-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.app-store-buttons a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.app-store-buttons a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.app-store-buttons img {
  max-width: 18rem;
  width: 100%;
  height: auto;
  display: block;
}
/* ***************************************************************** */
/* ***************************************************************** */
/* ***************************************************************** */
/* Footer */
.container {
  max-width: 82.625rem;
  margin: 0 auto;
}
.footer {
  background: #370404;
  padding: 2.25rem 2rem;
  color: white;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
}
.footer-content nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.footer-content .footer-nav a {
  text-decoration: none;
  color: white;
  font-family: "DM Sans";
  font-size: 1.25rem;
  font-weight: 800;
}
.footer .logo {
  width: 4.75rem;
  height: 4.75rem;
  background-color: white;
  border-radius: 50px;
  margin-right: 1rem;
}

.social-media {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}
