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

html, body {
  overflow-x: hidden;
}


/* ===========================
   TRACE NAVBAR — thin / editorial / monochrome
   peach→sage gradient as the only accent
=========================== */
.navbar {
  height: 78px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
body.nav-collapsed .navbar {
  transform: translateY(-100%);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
}

#navbar__logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.55;
  text-decoration: none;
  transition: opacity 0.4s ease, letter-spacing 0.4s ease;
}
#navbar__logo:hover {
  opacity: 1;
  letter-spacing: 0.34em;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.navbar__item {
  position: relative;
  height: 78px;
  display: flex;
  align-items: center;
  list-style: none;
}

/* top-level triggers — thin uppercase, faint */
.navbar__links {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: color 0.4s ease;
}

/* peach→sage gradient underline that draws in on hover */
.navbar__links::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, #edacac, #e0cdb8, #c0c6a0, #cee6ca);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.navbar__links:hover {
  color: rgba(255, 255, 255, 0.95);
}
.navbar__links:hover::after {
  transform: scaleX(1);
}

/* Dropdown — minimal, near-black translucent, hairline border */
.navbar__dropdown {
  position: absolute;
  top: 66px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  list-style: none;
  padding: 6px 0;
  margin: 0;
  background: rgba(16, 16, 16, 0.55);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 1000;
  overflow: hidden;
}
.navbar__item:hover .navbar__dropdown,
.navbar__item:focus-within .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
}
.navbar__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.navbar__dropdown li { list-style: none; }
.navbar__dropdown a {
  display: block;
  padding: 11px 22px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease, background 0.3s ease;
}
.navbar__dropdown a:hover {
  color: #ffffff;
  padding-left: 30px;
  background: linear-gradient(90deg, rgba(237,172,172,0.12), rgba(206,230,202,0.04));
}

/* Collapse arrow — hairline circle */
#navCollapseBtn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
#navCollapseBtn:hover {
  color: #ffffff;
  border-color: rgba(206, 230, 202, 0.6);
  box-shadow: 0 0 14px rgba(206, 230, 202, 0.25);
}

/* ===========================
   HAMBURGER (shown when nav collapsed)
=========================== */
#menuToggle {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  z-index: 1001;
  background: rgba(16, 16, 16, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s, border-color 0.3s ease;
}
body.nav-collapsed #menuToggle {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, visibility 0s linear 0.2s, border-color 0.3s ease;
}
body.menu-open #menuToggle {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
#menuToggle:hover {
  border-color: rgba(206, 230, 202, 0.6);
}
#menuToggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.4s ease;
}

/* ===========================
   OVERLAY (invisible — click-to-close)
=========================== */
#menuOverlay {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: visibility 0s linear 0.4s;
}
body.menu-open #menuOverlay {
  opacity: 1;
  visibility: visible;
  transition: visibility 0s;
}

/* ===========================
   SIDE PANEL — frosted, editorial
=========================== */
#sidePanel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 330px;
  max-width: 85vw;
  z-index: 1002;
  background: rgba(16, 16, 16, 0.32);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
  box-shadow: -8px 0 50px rgba(0, 0, 0, 0.4);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
body.menu-open #sidePanel {
  transform: translateX(0);
}

.side-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 26px;
  flex-shrink: 0;
}
.side-panel__logo {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.side-panel__logo:hover { opacity: 1; }

#menuClose {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}
#menuClose:hover {
  border-color: rgba(206, 230, 202, 0.6);
  color: #ffffff;
}

.side-panel__nav {
  padding: 30px 0;
  flex: 1;
}
.side-panel__group { margin-bottom: 28px; }
.side-panel__group:last-child { margin-bottom: 0; }

/* group labels use the peach→sage gradient as text fill */
.side-panel__group-label {
  display: block;
  padding: 4px 28px 10px;
  margin: 0 18px 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #edacac, #e0cdb8, #c0c6a0, #cee6ca);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.side-panel__nav a {
  display: block;
  padding: 13px 34px;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 200;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease, background 0.3s ease;
}
.side-panel__nav a:hover {
  color: #ffffff;
  padding-left: 42px;
  background: linear-gradient(90deg, rgba(237,172,172,0.1), transparent);
}

@media screen and (max-width: 960px) {
  .navbar__container { padding: 0 20px; }
  .navbar__menu { gap: 0; }
  .navbar__links { font-size: 0.62rem; padding: 8px 9px; letter-spacing: 0.12em; }
  .navbar__dropdown { min-width: 170px; }
  .navbar__dropdown a { font-size: 0.62rem; padding: 9px 16px; }
  #navbar__logo { font-size: 0.7rem; letter-spacing: 0.2em; }
  #sidePanel { width: 270px; }
}


.background-color {
background-image: linear-gradient(
  to bottom,
  #000000 0%,
  #222222 47%,
  #101010 80%
);    position: absolute;
    opacity: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 400%;
  }

  .ty h2 {
      position: relative;
  top: 400px;          /* pushes it below heading */
  left: 29%;  
  width: 740px;
  text-align-last: center;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 100; /* Negative values like -100 are invalid */
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);

  z-index: 5;
  pointer-events: auto;

}

.heading {
  position: relative;
  width: 100px;
  margin-top: 900px;
  margin-left: 20%;
  height: 500px;
  pointer-events: auto;
  opacity: 1;
  z-index: 5;
    filter: brightness(1) contrast(0.9);

  /* Floating animation */
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: scale(0.3) translateY(0px) translateX(0px);
  }
  50% {
    transform: scale(0.3) translateY(-20px) translateX(20px); /* move up slightly */
  }
  100% {
    transform: scale(0.3) translateY(0px);
  }
}


.heading img {
  display: block;
  filter:
    drop-shadow(0 60px 120px rgba(0, 0, 0, 0.85))
    drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
        filter: brightness(1) contrast(1.4);

}




.subtext h2{
  position: absolute;
  top: 1930px;          /* pushes it below heading */
  left: 24%;  
  width: 940px;
  text-align-last: center;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 100; /* Negative values like -100 are invalid */
  font-size: 1.1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.65);

  z-index: 5;
  pointer-events: auto;

}


.box3, .box4, .box5, .box6 {
  position: absolute;
  width: 100px;
  margin-top: 250px;
  margin-left: 28%;
  height: 500px;
  pointer-events: none;
  transform-origin: center;
  transform: scale(0.1);
  opacity: 1;
  z-index: 7;
}

.box7, .box8, .box9, .box10 {
  position: absolute;
  width: 100px;
  margin-top: -250px;
  margin-left: 28%;
  height: 500px;
  pointer-events: none;
  transform-origin: center;
  transform: scale(0.1);
  opacity: 1;
  z-index: 7;
}


.box3 img,
.box4 img,
.box5 img,
.box6 img,
.box7 img,
.box8 img,
.box9 img,
.box10 img {
  display: block;
  filter:
    drop-shadow(0 60px 120px rgba(0, 0, 0, 0.85))
    drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
}


.box3 {
  top: 599px;
  left: 49%;
  rotate: 1deg;
}

.box4 {
  top: 890px;
  left: 35%;
}

.box5 {
  top: 880px;
  left: -18%;
}
.box6 {
  top: 580px;
  left: -8%;
}

.box7 {
  top: 640px;
  left: -14.5%;
}

.box8 {
  top: 490px;
  left: 39.5%;
}

.box9 {
  top: 600px;
  left: 52%;
}

.box10 {
  top: 520px;
  left: -23%;
}

/* SAFE FLOAT BASE */
.float-random {
  will-change: transform;
  pointer-events: none;

  /* set size ONCE */
  transform: scale(0.01) translate3d(0,0,0);
}



.photo__container {
    margin-top: 900px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black 0 no-repeat center;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    margin: 0 70px 55px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.card-item {
  width: auto;          
  padding: 0;            
  margin: 0 auto;       
  display: flex;
  flex-direction: column;
  align-items: center;  
}

.card-list .card-item {
    color: rgb(0, 0, 0);
    width: 280px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0);
    transform: scale(1);
    z-index: 1;
}
.card-item .user-video {
  width: 50%;
  height: 500px;
  margin-left: 420px;
  object-fit: cover;
  border-radius: 10%;
  display: block;
}


.card-item .user-image:hover,
.card-item .user-video:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease;
  z-index: 5;
}

 .card-item h2 {
    display: flex;
    margin-top: -39px;
    margin-left: 390px;
    text-align: center;
      font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    color: white;
    word-spacing: 0.3rem;
    transform: scale(0.9);
    z-index: 6;
}

 .card-item h2 {
    font-weight: 300;
    text-transform: uppercase;
 }

.card-item button {
    color: #ffffff;
    display: inline-block;      /* keep button tight to content */
    margin-left: 81px;
    margin-top: -0px;
    padding: 10px 20px;
    border: none;
    outline: none;
    opacity: 0;
    border-radius: 4px;
    font-family: 'Inter', system-ui, sans-serif;
    background: #ffffff81;
    position: relative;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.35s;
    z-index: 2; 
    width: auto;                /* ensure no full width */
    max-width: fit-content;     /* keeps it to content size */
    white-space: nowrap; 
}

.card-item button a {
    position: relative;
    z-index: 3; 
    color: #ffffff;
    text-decoration: none;
}

.card-item button::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #77ff9e00;
    background-image: linear-gradient(to left, #4574735b 0%, #ffffff87 100%);
        transform: scale(1.1);
    transition: all 0.35s;
    border-radius: 4px;
    z-index: 2; 
}

.card-item button:hover {
    color: rgb(0, 0, 0);
}

.card-item button:hover::after {
    width: 100%;
}

.swiper-horizontal > .swiper-pagination-bullets {
  bottom: -0.05px !important;
}
.swiper-pagination-bullet {
    background-color: #c2c2c2 !important;  /* Change bullet color */
    opacity: 0.5 !important;                 /* Ensure it's visible */
  }
  
  .swiper-pagination-bullet-active {
    background-color: #ffffff !important;  /* Active bullet color */
  }

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
  opacity: 0.11;
  transition: transform 0.5s ease; /* Quick scale up on hover */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #ffffff !important;
  opacity: 0.8;
  transform: scale(1.4);
  transition: transform 0.5s ease; /* Quick scale up on hover */
}
  
  .bodi {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    background-repeat: no-repeat;
    z-index: 2;
    background-color: black;
}

  .bodi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(images/closeup-nature-view-black-white-600nw-2276932347.webp);
    background-size: cover;
    background-position: center;
    opacity: 0.2; /* Adjust the image opacity here */
    z-index: 1;
  }

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #ffffff, 0;
    position: relative;
    gap: 80px;
}

.container .card {
    position: relative;
    width: 500px;
    height: 405px;
    z-index: 4;

}

.container .card .imgBox {
   position: absolute;
   inset: 0;
   border-radius: 20px;
   background-image: linear-gradient(270deg, rgba(216, 189, 189, 0.579), #846f6f98, #82727234, rgba(216, 189, 189, 0.545));
   background-size: 400% 100%;
   background-position: 0% 50%;
   transition: transform 3s ease;
   animation: gradientAnimation 3s ease infinite;
   transform: translateY(80px);  /* Moves the box down by 10px */

   
 }
.container .card .imgBox img {
    position: absolute;
    top: 0;
    left: 3rem;
    width: 100%;
    height: 100%;
    transform: translateX(-20);
    object-fit: cover;
    transform: scale(1);
    border-radius: 20px;
}

.container .card {
    position: relative;
    width: 500px;
    height: 405px;
    z-index: 4;

}


.container .card .NimgBox {
  position: absolute;
   inset: 0;
   border-radius: 40px;
   background-image: linear-gradient(270deg, rgba(189, 216, 189, 0.579), #707c7198, #72827334, rgba(189, 216, 189, 0.545));
   background-size: 400% 100%;
   background-position: 0% 50%;
   transition: transform 3s ease;
   animation: gradientAnimation 3s ease infinite;
   transform: translateY(80px);  /* Moves the box down by 'x'px */
 }
 
 @keyframes gradientAnimation {
   0% {
       background-position: 0% 50%;
   }
   100% {
       background-position: 100% 50%;
   }
 }
 


.container .card .NimgBox img {
  position: absolute;
  top: 2rem;
  left: -12.5rem;
  width: 180%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  border-radius: 20px;
}

.container .card:hover .NimgBox img {
  opacity: 0;

}

.container .card:hover .imgBox img {
    opacity: 0;

}

.c3d video {
    width: 100%;
    height: 100%;
    left: 5rem;
    object-fit: cover;
    border-radius: 20px;
    pointer-events: none;
    transform: scale(1.4) translateY(60px) translateX(20px); /* initial state: slightly up */
    opacity: 0;
    transition: 0.5s ease;
    z-index: 4;
  }
  
  .card:hover .c3d video {
    opacity: 1;
    transform: scale(2.5) translateY(10px) translateX(20px); /* final state: slightly down */
    transition: 0.5s ease;
    z-index: 4;

  }


  .c4d video {
    width: 120%;
    height: 100%;
    left: 0rem;
    object-fit: cover;
    border-radius: 20px;
    pointer-events: none;
    transform: scale(1.6) translateY(60px) translateX(-40px); /* initial state: slightly up */
    opacity: 0;
    transition: 0.5s ease;
    z-index: 4;

  }
  
  .card:hover .c4d video {
    opacity: 1;
    transform: scale(2.5) translateY(10px) translateX(-19px); /* final state: slightly down */
    transition: 0.5s ease;
    z-index: 4;

  }



.card:hover h2 {
    bottom: 20px;
    opacity: 1;
}

.card:hover h3 {
    bottom: 20px;
    opacity: 1;
}

.texter {
  width: 1500px; /* Set the width of the draggable element */
  height: 300px; /* Set the height of the draggable element */
  position: absolute;
  display: flex;
  align-items: center;
  opacity: 0.5;
  justify-content: center;
  transition: transform 0.5s ease;
  z-index: 1; /* Ensure they are on top while dragging */
}

.textm h1  {
  width: 1500px; /* Set the width of the draggable element */
  height: 812px;
  color: rgb(255, 255, 255);
  background-image: linear-gradient(270deg, #edacac, #e0cdb8, #c0c6a0, #cee6ca);
  background-size: 400% 100%;
  background-position: 0% 50%;
  font-family: "Exo 2", sans-serif;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: justify;
  text-transform: uppercase;
  transition: transform 5s all ease;
  letter-spacing: -0.1rem;
  line-height: 1;
  font-weight: 400;
  animation: gradientAnimation 5s ease infinite;
}

.bigger-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 8rem;
    letter-spacing: 0.1rem;
    word-spacing: -1rem;

  }


@keyframes gradientAnimation {
  0% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}


.typo {
  position: absolute;
  width: 100px;
  margin-top: 800px;
  margin-left: -10%;
  height: 500px;
  pointer-events: auto;
  transform: scale(0.61);
    filter: brightness(1) contrast(0.9);
  opacity: 1;
  z-index: 7;

}

.typo img {
  animation: float 4s ease-in-out infinite;

}





.hover-container {
    position: relative;
    width: 1800px;
    height: 1000px;
    overflow: hidden;
  }

  .hover-container img,
  .hover-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.s ease;
  }

  .hover-container video {
    opacity: 0;
    pointer-events: none;
  }

  .hover-container:hover video {
    opacity: 1;
  }

  .hover-container:hover img {
    opacity: 0;
  }

.cod {
  opacity: 0;
  position: absolute;
  transition: opacity 0.3s ease;
  pointer-events: none;
  transform: scale(0.1);
}

.card-item:has(button:hover) ~ .cod {
  opacity: 1;
  z-index: 8;
}

.card-item button:hover {
  opacity: 0;
}/* PAGE 7 - Contact *//* PAGE 7 - Contact */
#page7 {
  width: 100%;
  margin-top: 200px;
  padding: 50px 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  z-index: 6;
}

.page7-container {
  width: 100%;
  max-width: 420px;
  text-align: left;
}

#page7 h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  margin-bottom: 24px;
  line-height: 1;
}

#page7 p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #555;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #ececec;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

#page7 p:last-child {
  border-bottom: none;
}

#page7 p:hover {
  color: #0a0a0a;
  padding-left: 6px;
}

.scroll-video {
  top: 602px;
  position: relative;
  width: 50%;
  max-width: 1100px;
  margin: 200px auto 100px;
  z-index: 6;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.scroll-video__player {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.scroll-video__sound {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.scroll-video__sound:hover {
  background: rgba(0, 0, 0, 0.85);
}