/* =========================================
   GLOBAL VARIABLES & RESET
   ========================================= */
:root {
  /* Assuming these variables exist based on usage */
  --white: #FAF9F6;
  --font: #282828;; /* Adjust based on your theme */
  --accent: #83F3FF; /* Adjust based on your theme */
  --border: 1.5px solid #2F2F2F;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #cb6862;

}

section {
  margin-bottom: 100px;
}

p{
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  line-height: 1.2;
}
/* =========================================
   HERO SECTION
   ========================================= */
#hero {
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-video {
  width: 600px;
  height: 600px;
  border-radius: 50px;
  position: relative;
}

.hero-video-frame {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 50px;
}

.hero-video-arrow {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 48px;
  height: 48px;
  background-image: url("/img/arrow.svg");
  background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  z-index: 10;
  pointer-events: none;
}

.hero-slogan {
  writing-mode: sideways-lr;
}

.hero-slogan h1 {
  font-family: "Despair";
  text-transform: uppercase;
  width: unset;
  line-height: 0.95;
  font-weight: 350;
  user-select: none;
  font-size: 89px;
  white-space: nowrap;
  color: var(--white);
  font-style: normal;
  margin: 0;
}

.hero-content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}

.hero-content p {
  width: 600px;
  font-family: "Roboto", serif;
  font-size: 20px;
  color: var(--white);
}

/* =========================================
   BUTTONS & ARROWS
   ========================================= */
button {
  user-select: none;
  color: var(--white);
  border: none;
  padding: 5px 15px;
  background: none;
  border-radius: 40px;
  border: var(--white) 1.5px solid;
  font-family: "Roboto", serif;
  font-weight: 350;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 10px;
}

.arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  background-image: url("/img/arrow.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
   INFO BLOCKS & STATS
   ========================================= */
#info {
    margin: 0 auto 100px auto;
}

.container-info-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto 5vh;
  max-width: 900px;
}

.container-info-block h2 {
  font-size: 40px;
  font-family: Despair;
  font-weight: 350;
  text-align: left;
  margin: 0;
  text-transform: uppercase;
}

.container-info-block p {
  color: var(--font);
  margin: 0;
  line-height: 1.4;
}
.fa {
  line-height: 1.1 !important;
}
i {
    color: #27c1c9;
    background: linear-gradient(135deg, #27c1c9 0%, #83f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.startinfoblock {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: nowrap;
}

.container-infoblock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: nowrap;
}

.container-infoblock2 {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: nowrap;
}

.infoblock {
  border: var(--border);
  background-color: #ffffff;
  border-radius: 30px;
  padding: 18px 20px 16px;
  gap: 8px;
  margin: 0;
  display: flex;
  text-align: left;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.xx {
  font-family: "Roboto", serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--font);
}



/* Stats Specifics */
#statistics {
  width: 60%;
  margin: 0 auto 100px;
}

#statistics h3 {
  font-family: "Despair";
  text-transform: uppercase;
  font-size: 42px;
  margin-bottom: 10px;
}

#statistics p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: rgb(0, 0, 0);
  margin: 0;
  font-size: 20px;
}

.screen-count {
  font-size: 56px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 25px;
  line-height: 1.1;
}

.stats {
  border: 1.5px solid #2F2F2F;
  border-radius: 30px;
  padding: 18px 20px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  cursor: pointer;
  background: #ffffff;
  transition: all .3s ease;
}

.stats.active {
  background: #F2F2F2;
  color: white;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  color: #1e293b;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
  font-size: 18px;
  margin-left: 10px;
}

.stat-value {
  min-width: 120px;
  text-align: right;
}

.stats h3 {
  margin: -8px 0 -10px;
}

.data-block {
  text-align: left;
  display: none;
  width: 50%;
}

.data-block.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-wrap: nowrap;
}

#views-count {
  transition: all .3s ease;
}

/* =========================================
   SPECIFICATIONS
   ========================================= */
.specifications-container {
  width: 95%;
  gap: 15px;
  display: flex;
  margin: 0 auto 5vh;
  flex-direction: column;
}

.specifications-container h2 {
  font-size: 40px;
  font-family: Despair;
  font-weight: 350;
  text-align: left;
  margin: 0;
}

.specifications-container p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: var(--font);
  margin: 0;
  font-size: 20px;
}

.specifications-block {
  border: var(--border);
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 30px 1px;
  border-radius: 30px;
  padding: 20px;
  width: 75%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}

.specifications-block h2 {
  margin: 0;
  font-family: Despair;
  font-weight: 400;
  color: rgb(131, 243, 255);
  font-size: 42px;
}

/* =========================================
   PLA SECTION
   ========================================= */

#pla {
position: relative;
box-sizing: border-box;
max-width: 900px;
margin: 0 auto 100px;
padding: 0;
}

.pla_content_text {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
justify-self: center;
position: absolute;
gap: 10px;
z-index: 2;
max-width: 500px;
margin: 0 auto;
height: 100%;
margin: 0 auto;
}

.pla_content_text h2 {
font-size: 40px;
font-family: Despair;
font-weight: 350;
text-align: center;
margin: 0;
text-transform: uppercase;
color: var(--font);
}

.pla_button {
display: flex;
background: var(--font);
border: none;
align-items: center;
justify-content: center;
min-width: 183px;
max-width: 250px;
}

.pla_row_52_container {
overflow-x: hidden;
display: flex;
flex-direction: row;
position: relative;
width: var(--width);
max-width: 3000px;
margin: auto;
transform: var(--transform);  
}

.pla_row_52 {
flex: 0 0 auto;
min-width: var(--min-width);
z-index: 1;
display: flex;
flex-direction: row;
align-items: center;
animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
animation-play-state: var(--play);
animation-delay: var(--delay);
animation-direction: var(--direction); 
}

.pla_row_initial {
flex: 0 0 auto;
display: flex;
min-width: auto;
flex-direction: row;
align-items: center;
}

.pla_row img {
display: block;
width: auto;
height: 18.5rem;
opacity: .2;
padding: 3.75px;
object-fit: cover;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

#maskphoto {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

/* =========================================
   PRICING SECTION
   ========================================= */
#price {
  width: 80%;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.container-price {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}

.controls {
  margin-bottom: 10px;
}

.period-buttons {
  display: flex;
  width: 350px;
  gap: 10px;
  position: relative;
}

.period-btn {
  padding: 8px 10px;
  border: none;
  border-radius: 30px;
  background: #ffffff;
  border: 1.5px solid #2F2F2F;
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.period-btn.active {
  color: rgb(0, 0, 0);
  z-index: 2;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #83F3FF;
  z-index: -1;
  border-radius: 30px;
  transition: width 0.05s linear;
}

.container-price-block {
  display: flex;
  gap: 10px;
}

.price-block {
  border-radius: 30px;
  text-align: left !important;
  border: 1.5px solid #2F2F2F;
  background-color: #ffffff;
  width: 50%;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.price-title {
  font-size: 40px !important;
  font-family: Despair !important;
  text-transform: uppercase !important;
  margin: 0 !important;
}

.price-block p {
  text-transform: uppercase;
  font-size: 24px;
}

.price-block a {
  color: inherit;
  text-decoration: none;
}

.price-block a:hover {
  text-decoration: underline;
}

.container-price h3 {
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: rgb(0, 0, 0);
  font-size: 20px;
}

.x {
  font-family: Despair;
  font-weight: 400;
  color: #27c1c9;
  background: linear-gradient(135deg, #27c1c9 0%, #83f3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 70px;
}

.amount {
  font-family: Despair;
  color: #000000;
  background: none;
  -webkit-text-fill-color: #000000;
  font-weight: 400;
  font-size: 70px;
}

/* Pricing Details */
.price-multiplier {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.x-letter {
  color: #27c1c9;
  font-family: "Despair";
  font-size: 70px;
  font-weight: 400;
}

.multiplier-main,
.multiplier-bonus {
  color: #000000;
  font-family: "Despair";
  font-size: 70px;
  font-weight: 400;
}

.price-title {
  font-family: "Despair";
  text-transform: uppercase;
  font-size: 35px !important;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.gradient-number {
  color: #27c1c9;
  background: linear-gradient(135deg, #27c1c9 0%, #83f3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.old-price {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #666;
  text-decoration: line-through;
}

.new-price {
  font-family: "Despair";
  text-transform: uppercase;
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.total-label {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666;
  text-transform: none;
}

/* Bonus & Deal Cards */
.bonus-note {
  margin: 6px 0 0;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(131, 243, 255, 0.08);
  border: 1px solid rgba(131, 243, 255, 0.4);
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.3;
  color: #020617;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-bonus {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #9ca3af;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #000000;
  border: 1px solid #83F3FF;
  font-family: "Despair";
  font-size: 16px;
  letter-spacing: 0.08em;
}

.price-bonus-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-bonus-text p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: none;
  color: #111827;
}

.deal-card {
  width: 100%;
  border-radius: 30px;
  background: #ffffff;
  border: 1.5px solid #2F2F2F;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deal-header {
  display: flex;
  align-items: flex-start;
}

.deal-multiplier {
  font-family: Despair;
  font-size: 44px;
  color: rgb(131, 243, 255);
}

.deal-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px;
}

.deal-title-line {
  letter-spacing: 0.02em;
}

.deal-accent {
  color: rgb(131, 243, 255);
}

.deal-label {
  margin: 8px 0 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
}

.deal-prices {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.deal-old {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  text-decoration: line-through;
  opacity: 0.5;
}

.deal-new {
  font-family: Despair;
  font-size: 32px;
  text-transform: uppercase;
}

.views-hidden {
  display: none;
}

.selection-info {
  margin-top: 10px;
  display: none;
  flex-direction: column;
  gap: 3px;
}

.selection-info.visible {
  display: flex;
}

.selection-main {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
}

.selection-bonus {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: none;
  color: #020617;
}

/* =========================================
   CONTACTS SECTION
   ========================================= */
.contacts-section {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto 2vh;
}

.contacts-inner {
  border-radius: 32px;
  border: 1.5px solid #2F2F2F;
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7);
  padding: 32px 32px 28px;
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.contacts-header {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contacts-label {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--accent);
  margin: 0;
}

.contacts-header h2 {
  font-family: "Despair";
  font-weight: 350;
  font-size: min(10vw, 40px);
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  line-height: 1.05;
}

.contacts-subtitle {
  margin: 6px 0 0;
  font-family: "Roboto", sans-serif;
  font-weight: 350;
  font-size: 17px;
  line-height: 1.4;
  color: var(--white);
  max-width: 360px;
}

.contacts-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contacts-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(131, 243, 255, 0.18);
}

.contacts-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(131, 243, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contacts-icon i {
  font-size: 18px;
}

.contacts-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contacts-caption {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
  color: rgba(250, 249, 246, 0.7);
}

.contacts-main {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
  text-decoration: none;
}

.contacts-main:hover {
  text-decoration: underline;
}

.contacts-note {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(250, 249, 246, 0.7);
}

/* =========================================
   BENEFITS SECTION
   ========================================= */
.benefits-section {
  max-width: 980px;
  margin: 40px auto 100px;
  padding: 0 20px;
}

.benefits-label {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8b8b8b;
  margin-bottom: 8px;
}

.benefits-title {
  font-family: "Despair";
  text-transform: uppercase;
  font-size: 32px;
  margin: 0 0 14px;
}

.benefits-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  margin: 0 0 22px;
  max-width: 620px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.benefits-item {
  display: flex;
  gap: 10px;
}

.benefits-dot {
  margin-top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #27c1c9;
  flex-shrink: 0;
}

.benefits-item-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.benefits-item-text {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

/* =========================================
   PROBLEMS SECTION
   ========================================= */
#problems {
  margin-bottom: 100px;
  padding: 0 20px;
}

.fa-clock {
  color: #27c1c9;
}

.container-problems {
  max-width: 900px;
  display: grid;
  flex-direction: column;
  gap: 15px;
  margin: 0 auto;
}

.container-problems h2 {
  font-family: "Despair";
  text-transform: uppercase;
  color: var(--font);
  font-size: 42px;
  text-align: left;
  margin: 0;
}

.problems-intro {
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: var(--font);
  margin: 0;
  font-size: 20px;
}

.problems-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.problems-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.problems-card {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 24px;
  border: var(--border);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
}
.problems-card-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 70dvw;
  max-width: 500px;
  justify-content: center;
}
.problems-card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.problems-card h3 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  color: var(--font);
}

.problems-card p {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  line-height: 1.4;
  color: var(--font);
  margin: 0;
}

.problems-card-image {
  margin: -25px -28px -25px 0;
  display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.problems-card-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: cover;
  display: block;
}

.problems-text-block {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 100%;
}

.problems-text-card {
  border-radius: 20px;
  padding: 20px 24px;
  border: var(--border);
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.problems-text-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.problems-text-card p {
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  line-height: 1.4;
  color: var(--font);
  margin: 0;
}

@media (min-width: 1025px) {
  
.problems-card p {

}
}

@media (max-width: 769px) {
.problems-card-image {
  flex-direction: column;
}
.problems-text-block{
  flex-direction: column;
}
.problems-card-image img {
  max-width: 100vw;
}
.problems-card-image {
    margin: -30px -40px -30px 0;
}
}
@media (max-width: 767px) {
  .problems-card{
    flex-direction: column;
  }
.problems-card-image {
  flex-direction: column;
}
.problems-text-block{
  flex-direction: column;
}
.problems-card-image img {
  max-width: 100vw;
}
.problems-card-image {
    margin: 0 -28px -25px -25px;
}
}

/* =========================================
   POPUPS & TRIGGERS
   ========================================= */
.mobile-trigger {
  transition: transform 0.2s;
  user-select: none;
  background-image: url(/img/map.png);
  background-size: cover;
}

@media (min-width: 1025px) {
  #myTrigger {
    display: none;
  }
}

@media (max-width: 1025px) {
  #pcTrigger {
    display: none;
  }
}

@media (max-width: 1024px) {
  .mobile-trigger {
    cursor: pointer;
  }
  .mobile-trigger:active {
    transform: scale(0.98);
  }

}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.popup-header {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-header h3 {
  color: #ffffff;
  margin: 0;
  font-family: "Despair";
  text-transform: uppercase;
}

.popup-content {
  background: rgb(0, 0, 0);
  width: 95%;
  align-self: center;
  border-radius: 20px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-iframe {
  width: 100%;
  margin-bottom: -5px;
  border-radius: 0 0 20px 20px;
  height: 85dvh;
  background-color: #fff;
  background-image: radial-gradient(#d8d8d8 2px, transparent 2px);
  background-size: 50px 50px;
}

.popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.popup-overlay.is-visible .popup-content {
  transform: translateY(0);
}

.close-btn {
  padding: 0;
  border: none;
  font-size: 25px !important;
  border-radius: 8px;
  cursor: pointer;
  margin: 0;
  width: auto;
  font-size: 16px;
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE)
   ========================================= */

/* я посчитал что маски кайф с одной стороны , а с другой на fullhd/телефонах фигово смотрится. */
@media (max-width: 2047px) {
  #maskphoto {
  mask-image: linear-gradient(
    to right,
    transparent,
    black 3%,
    black 97%,
    transparent
  );

  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 3%,
    black 97%,
    transparent
  );
 }
}

/* Large Desktops (1350px) */
@media (max-width: 1350px) {
  .hero-slogan h1 {
    font-size: 80px;
  }

  .hero-video {
    width: 500px;
    height: 500px;
  }

  .contacts-inner {
    padding: 26px 24px 22px;
    gap: 24px;
  }


  .contacts-subtitle {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 18px;
    width: 500px;
  }

  button {
    font-size: 18px;
    padding: 4.5px 13.5px;
  }
}

/* Desktops (1100px) */
@media (max-width: 1100px) {
  .hero-slogan h1 {
    font-size: 81px;
  }

  .hero-video {
    width: 558.9px;
    height: 558.9px;
  }

  .hero-content p {
    font-size: 16.2px;
    width: 558.9px;
  }

  button {
    font-size: 16.2px;
    padding: 4.05px 12.15px;
  }
}

/* Tablets (1024px) */
@media (max-width: 1024px) {
  #hero {
    align-items: center;
    justify-content: center;
  }

  .container-hero {
    align-items: flex-end;
    margin-left: -4px;
    gap: 20px;
  }

  .hero-slogan h1 {
    font-size: min(17vw, 70px);
  }

  .hero-video {
    width: 39vw;
    height: 40vh;
    background-color: rgb(146, 146, 146);
    border-radius: 50px;
  }

  .hero-content {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }

  .hero-content p {
    width: 39vw;
    font-family: "Roboto", serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
  }

  .container-hero {
    padding: 10px;
  }

  button {
    padding: 6px 5px;
    width: 39vw;
    font-size: min(4.4vw, 20px);
  }

  .arrow {
    width: 12px;
    height: 12px;
  }

  .contacts-section {
    width: 92%;
    margin-bottom: 5vh;
  }

  .contacts-inner {
    flex-direction: column;
  }

  .contacts-subtitle {
    max-width: none;
  }

  .problems-content {
    grid-template-columns: 1fr;
  }

  .container-price-block {
    flex-direction: column;
    width: 100%;
  }

  .price-block {
    width: unset;
  }

  .data-block {
    width: 100%;
  }

  .price-title {
    font-size: 24px;
  }

  .new-price {
    font-size: 34px;
  }

  .total-label {
    font-size: 14px;
  }

  .benefits-section {
    margin: 24px 0 64px;
    padding: 0 16px;
  }

  .benefits-title {
    font-size: 22px;
  }

  .benefits-subtitle {
    font-size: 15px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 14px 0;
  }
}

/* Mobile Landscape (767px) */

@media (max-width: 688px) {
  #hero {
    align-items: flex-end !important;
  }
}
@media (max-width: 767px) {


  .hero-video {
    border-radius: 30px;
  }

  .hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
  }
 
  #info {
    width: 100%;
  }

  .container-info-block {
    width: 92%;
  }


  #price {
    width: 100%;
  }

  .data-block {
    width: 100%;
  }

  .period-buttons {
    display: flex;
    width: 290px;
    gap: 5px;
    position: relative;
  }

  .specifications-container {
    width: 92%;
  }


  .contacts-inner {
    padding: 22px 18px 18px;
    gap: 18px;
  }



  .contacts-card {
    padding: 12px 14px;
  }

  .contacts-main {
    font-size: 18px;
  }
}

/* Small Mobile (660px) */
@media (max-width: 660px) {
  #pcTrigger2 {
    display: none;
  }
}

/* Extra Small Mobile (480px) */
@media (max-width: 480px) {

  .svginfoicon {
    width: 30px;
    height: 30px;
  }

.pla_content_text h2 {
font-size: 35px;
}

}

@media (max-width: 360px) {

.pla_content_text h2 {
font-size: 30px;
}
}