/* ===== BASE ===== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{

  background:
  radial-gradient(circle at top left,#1b1b1b,#080808 65%);

  color:white;

  min-height:100vh;

  overflow-x:hidden;
}

body::before{

  content:"";

  position:fixed;
  inset:0;

  opacity:.07;

  background:
  linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),
  linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);

  background-size:4px 4px;

  pointer-events:none;
}

/* ===== HEADER ===== */

.header{

  width:100%;

  padding:24px 34px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  border-bottom:
  1px solid rgba(255,255,255,.06);

  position:sticky;
  top:0;

  background:
  rgba(10,10,10,.82);

  backdrop-filter:blur(12px);

  z-index:100;
}
.logo_box{
  display:flex;
  justify-content:space-between;
  align-items:center;

}

.logo{

  font-size:24px;
  font-weight:700;

  color:#f2d37b;
}

.logo_image{
  width: 90px;
  height: 90px;
}

/* ===== NAV ===== */

.nav{

  display:flex;
  gap:18px;
}

.nav a{

  text-decoration:none;

  color:#b8b8b8;

  transition:.25s;
}

.nav a:hover{

  color:#f2d37b;
}

/* ===== BURGER ===== */

.burger{

  display:none;

  width:46px;
  height:46px;

  border-radius:14px;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,255,255,.08);

  cursor:pointer;

  justify-content:center;
  align-items:center;

  flex-direction:column;

  gap:5px;
}

.burger span{

  width:20px;
  height:2px;

  border-radius:999px;

  background:white;

  transition:.25s;
}

/* ===== CLOSE MENU BUTTON ===== */

.close-menu{

  position:absolute;

  top:24px;
  right:24px;

  width:46px;
  height:46px;

  border:none;

  border-radius:14px;

  cursor:pointer;

  font-size:20px;

  color:#f2d37b;

  background:
  rgba(255,255,255,.04);

  border:
  1px solid rgba(255,215,120,.12);

  transition:.25s;
}

.close-menu:hover{

  background:
  linear-gradient(
    135deg,
    #d3a54b,
    #f2d37b
  );

  color:#151515;

  box-shadow:
  0 0 18px rgba(255,208,0,.18);

  transform:rotate(90deg);
}

/* ===== MOBILE MENU ===== */

.mobile-menu{

  position:fixed;

  top:0;
  right:-100%;

  width:280px;
  height:100vh;

  background:
  rgba(15,15,15,.98);

  backdrop-filter:blur(18px);

  border-left:
  1px solid rgba(255,255,255,.06);

  padding:90px 30px;

  transition:.35s;

  z-index:999;
}

.mobile-menu.active{

  right:0;
}

.mobile-menu a{

  display:block;

  margin-bottom:26px;

  text-decoration:none;

  color:#d0d0d0;

  font-size:18px;
}

.owner-container{

  max-width:1100px;

  margin:auto;

  padding:40px 20px;
}


.profile-grid{

  display:flex;

  flex-direction:column;

  align-items:center;

  gap:30px;

  margin-top:40px;
}

.panel-card{

  width:100%;

  max-width:900px;

  background:
  rgba(14,14,14,.96);

  border:
  1px solid rgba(255,215,120,.12);

  border-radius:28px;

  padding:34px;

  backdrop-filter:blur(14px);

  box-shadow:
  0 0 30px rgba(0,0,0,.35),
  0 0 80px rgba(255,196,0,.04);
}

.card-top-line{

  width:100%;
  height:3px;

  border-radius:999px;

  margin-bottom:28px;

  background:
  linear-gradient(
    to right,
    #d3a54b,
    #f2d37b
  );
}

.card-title{

  font-size:28px;

  margin-bottom:30px;
}

/* ===== INFO ===== */

.info-list{

  display:flex;

  flex-direction:column;

  gap:18px;

  margin-bottom:30px;
}

.info-item{

  display:flex;

  justify-content:space-between;

  gap:20px;
}

.info-label{

  color:#8d8d8d;
}

.info-value{

  color:white;

  font-weight:600;
}





/* ===== MOBILE ===== */

@media(max-width:768px){

  .nav{
    display:none;
  }

  .burger{
    display:flex;
  }

  .page-title{
    font-size:34px;
  }

  .order-header{

    flex-direction:column;
    align-items:flex-start;

    gap:14px;
  }

  .buttons{

    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .profile-grid{

    grid-template-columns:1fr;
  }

  .panel-card{

    padding:24px;
  }

  .info-item{

    flex-direction:column;

    gap:8px;
  }
}


/* ===== WRAPPER ===== */

.subscription-wrapper{

    display:flex;

    flex-direction:column;

    align-items:center;

    margin:40px auto;

    width:100%;
}

/* ===== CARD ===== */

.subscription-card{

    width:100%;

    max-width:750px;

    padding:40px;

    border-radius:30px;

    background:#111;

    border:1px solid rgba(242,211,123,.15);

    box-shadow:
    0 0 40px rgba(0,0,0,.35),
    0 0 50px rgba(242,211,123,.05);

    text-align:center;
}



.subscription-title{

    font-size:32px;

    margin-bottom:20px;
}

.subscription-price{
  margin-bottom:35px;
}

.price{

    font-size:48px;

    font-weight:700;

    color:#f2d37b;
}

.period{

    color:#999;

    font-size:18px;
}

.subscription-features{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:35px;

    text-align: left;
}

.feature{

    display:flex;

    align-items:flex-start;

    gap:12px;

    padding:18px;

    border-radius:16px;

    background:
    rgba(255,255,255,.03);

    border:
    1px solid rgba(
        242,
        211,
        123,
        .08
    );
}

.feature-icon{

    color:#f2d37b;

    font-weight:700;

    flex-shrink:0;
}

.feature-text{

    flex:1;

    line-height:1.6;
}

/* ===== CHECKBOX ===== */

.offer-checkbox{

    display:flex;

    align-items:left;

    justify-content:left;

    gap:14px;

    cursor:pointer;

    margin-bottom:30px;
}

.offer-checkbox input{

    display:none;
}

.checkbox-mark{

    width:26px;
    height:26px;

    border-radius:8px;

    border:2px solid #f2d37b;

    position:relative;
}

.offer-checkbox
input:checked
+ .checkbox-mark{

    background:#f2d37b;
}

.offer-checkbox
input:checked
+ .checkbox-mark::after{

    content:"✓";

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    color:#111;

    font-weight:700;
}

/* ===== BUTTON ===== */

.subscription-btn{

    width:100%;

    height:60px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    font-size:18px;

    font-weight:700;

    color:#111;

    background:
    linear-gradient(
        135deg,
        #d3a54b,
        #f2d37b
    );

    transition:.25s;
}

.subscription-btn:hover{

    transform:translateY(-2px);

    box-shadow:
    0 12px 25px rgba(
        242,
        211,
        123,
        .18
    );
}

/* ===== NOTIFICATION ===== */

.action-message{

  display:none;

  align-items:flex-start;

  gap:18px;

  width:100%;

  max-width:750px;

  margin-top:25px;

  padding:24px;

  border-radius:22px;

  background:
  rgba(255,255,255,.03);

  border:
  1px solid rgba(
    255,
    215,
    120,
    .12
  );
}

.message-icon{

  width:42px;
  height:42px;

  min-width:42px;

  border-radius:50%;

  display:flex;

  justify-content:center;

  align-items:center;

  background:
  linear-gradient(
    135deg,
    #d3a54b,
    #f2d37b
  );

  color:#111;

  font-size:22px;

  font-weight:700;
}

.action-title{

  color:#f2d37b;

  margin-bottom:8px;

  font-size:20px;
}

.action-text{

  color:#b5b5b5;
}

.footer{

  margin-top:80px;

  border-top:
  1px solid rgba(255,255,255,.06);

  background:
  rgba(10,10,10,.45);

  backdrop-filter:blur(10px);

  position: sticky;
  bottom: 0;
}

.footer-content{

  max-width:1100px;

  margin:auto;

  padding:30px 20px;

  display:flex;

  justify-content:space-between;

  align-items:center;

  flex-wrap:wrap;

  gap:30px;
}

.footer-info h3{

  color:#f2d37b;

  margin-bottom:12px;

  font-size:22px;
}

.footer-info p{

  color:#a9a9a9;

  line-height:1.8;
}

/* ===== SOCIALS ===== */

.socials{

  display:flex;

  gap:16px;
}

.social-btn{

  width:56px;
  height:56px;

  border-radius:18px;

  display:flex;
  justify-content:center;
  align-items:center;

  text-decoration:none;

  color:#f2d37b;

  background:
  rgba(255,255,255,.03);

  border:
  1px solid rgba(255,215,120,.12);

  transition:.25s;

  box-shadow:
  0 0 0 rgba(255,208,0,0);
}

.social-btn svg{

  width:24px;
  height:24px;
}

.social-btn:hover{

  transform:translateY(-3px);

  background:
  linear-gradient(
    135deg,
    #d3a54b,
    #f2d37b
  );

  color:#151515;

  box-shadow:
  0 0 20px rgba(255,208,0,.18);
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .footer-content{
    padding: 20px;
    text-align:center;
  }

  .socials{

    justify-content:center;
  }

  .footer-title{
    display: none;
  }
}