:root{
  --bg:#050505;
  --bg2:#0d0d0d;
  --orange:#ff6a00;
  --orange2:#ff9d00;
  --white:#ffffff;
  --text:#e7e7e7;
  --muted:#c7c7c7;
  --card:#101010;
}

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

body{
  font-family:Tahoma, Arial, sans-serif;
  color:var(--white);
  background:#000;
}

.page{
  width:min(430px,100%);
  min-height:100vh;
  margin:0 auto;
  padding:16px 12px 30px;
  position:relative;
  overflow:hidden;

  background:
    radial-gradient(circle at top right,
    rgba(255,106,0,.28),
    transparent 35%),

    radial-gradient(circle at left center,
    rgba(255,140,0,.12),
    transparent 40%),

    linear-gradient(
      180deg,
      #050505 0%,
      #0b0b0b 50%,
      #000 100%
    );
}

.page::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      rgba(255,106,0,.30) 1px,
      transparent 1px
    );

  background-size:22px 22px;

  opacity:.12;
  pointer-events:none;
}

/* SECTION */

.section{
  position:relative;
  z-index:2;
}

/* LOGO */

.logo-section{
  text-align:center;
  padding:8px 0 16px;
}

.logo-img{
  width:200px;
  max-height:70px;
  object-fit:contain;

  filter:
    drop-shadow(0 0 20px rgba(255,106,0,.45));
}

/* BANNER */

.banner-section{
  margin-bottom:20px;
}

.banner-img{
  width:100%;
  display:block;

  border-radius:22px;

  border:1px solid rgba(255,106,0,.45);

  box-shadow:
    0 0 35px rgba(255,106,0,.25),
    0 18px 40px rgba(0,0,0,.55);
}

/* TEXT */

.text-section{
  text-align:center;
  margin-bottom:20px;
}

.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:9px 18px;

  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      var(--orange),
      var(--orange2)
    );

  color:#fff;

  font-size:12px;
  font-weight:900;

  box-shadow:
    0 0 18px rgba(255,106,0,.45);
}

h1{
  margin:16px 0 10px;

  font-size:28px;
  line-height:1.15;

  font-weight:900;

  color:#fff;

  text-shadow:
    0 0 15px rgba(255,106,0,.55);
}

.description{
  font-size:13px;
  line-height:1.7;
  font-weight:700;

  color:#d7d7d7;
}

/* CONTACT LIST */

.contact-section{
  display:grid;
  gap:14px;
}

/* CARD */

.contact-card{
  min-height:82px;

  display:grid;

  grid-template-columns:
    52px
    minmax(0,1fr)
    58px;

  gap:12px;

  align-items:center;

  padding:14px;

  text-decoration:none;
  color:#fff;

  border-radius:22px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.01)
    ),
    rgba(12,12,12,.95);

  border:1px solid rgba(255,106,0,.35);

  backdrop-filter:blur(8px);

  box-shadow:
    inset 0 0 12px rgba(255,106,0,.04),
    0 10px 30px rgba(0,0,0,.45);

  transition:.25s ease;
}

.contact-card:hover{
  transform:
    translateY(-4px)
    scale(1.01);

  border-color:
    rgba(255,106,0,.9);

  box-shadow:
    0 0 25px rgba(255,106,0,.25),
    0 14px 35px rgba(0,0,0,.55);
}

/* ICON */

.icon{
  width:48px;
  height:48px;

  border-radius:50%;

  overflow:hidden;

  display:grid;
  place-items:center;

  border:1px solid rgba(255,106,0,.45);

  box-shadow:
    0 0 12px rgba(255,106,0,.18);
}

.icon img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT */

.contact-text{
  min-width:0;
}

.contact-text h2{
  margin-bottom:4px;

  font-size:16px;
  line-height:1.15;

  font-weight:900;
}

.contact-text p{
  font-size:11px;
  line-height:1.5;

  color:#d0d0d0;

  font-weight:700;
}

/* CTA BADGE */

.action-badge{
  width:58px;
  height:34px;

  border-radius:999px;

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

  justify-self:end;

  font-size:12px;
  font-weight:900;

  color:#fff;

  background:
    linear-gradient(
      135deg,
      var(--orange),
      var(--orange2)
    );

  box-shadow:
    0 0 16px rgba(255,106,0,.45);

  transition:.25s ease;
}

.contact-card:hover .action-badge{
  transform:scale(1.08);
}

/* BRAND COLORS */

.line h2{
  color:#46ff85;
}

.telegram h2{
  color:#4dcfff;
}

.livechat h2{
  color:#ff9d00;
}

.website h2{
  color:#ffffff;
}

.whatsapp h2{
  color:#45ff89;
}

/* DESKTOP */



@media (min-width:768px){

  .page{
    width:min(520px,100%);
  }

  .contact-card{
    min-height:96px;

    padding:18px;

    grid-template-columns:
      70px
      minmax(0,1fr)
      70px;
  }

  .icon{
    width:60px;
    height:60px;
  }

  .contact-text h2{
    font-size:24px;
  }

  .contact-text p{
    font-size:15px;
  }

  .action-badge{
    width:72px;
    height:40px;
    font-size:13px;
  }

  h1{
    font-size:34px;
  }
}

.bannerSwiper {
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.swiper-slide {
  background: #000;
}

.swiper-slide img {
  width: 100%;
  display: block;
}

.swiper-pagination {
  bottom: 8px !important;
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #fff;
  opacity: .45;
}

.swiper-pagination-bullet-active {
  background: #ff6a00;
  opacity: 1;
  box-shadow: 0 0 10px rgba(255, 106, 0, .9);
}
