* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #f8fbff;
  color: #07183d;
}

.smm-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 90px;
}

/* Header */

.smm-header {
  height: 104px;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid #e7ecf5;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}

.smm-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smm-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.smm-logo-icon {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #0d4cff, #8fb7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.smm-logo-text {
  color: #07183d;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.smm-logo-text span {
  color: #1261ff;
}

.smm-menu {
  display: flex;
  align-items: center;
  gap: 46px;
}

.smm-menu a {
  color: #07183d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}

.smm-menu a.active,
.smm-menu a:hover {
  color: #0d56ff;
}

.smm-menu a.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 38px;
  height: 2px;
  background: #0d56ff;
  border-radius: 20px;
}

.smm-nav-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.smm-signin {
  color: #07183d;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.smm-signup {
  background: linear-gradient(135deg, #1765ff, #0d4ee8);
  color: #fff;
  text-decoration: none;
  padding: 17px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(22, 94, 255, 0.25);
}

/* Hero */

.smm-hero {
  position: relative;
  min-height: calc(100vh - 96px);
  padding: 65px 0 45px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 35%, rgba(30,111,255,0.12), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(30,111,255,0.04), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border-bottom: 1px solid rgba(30,111,255,0.05);
}

.smm-hero:before {
  display: none;
}

.smm-hero:after {
  content: "";
  position: absolute;
  right: 55px;
  top: 90px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#dbe6ff 2px, transparent 2px);
  background-size: 22px 22px;
  opacity: 0.9;
}

.smm-hero-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.smm-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 100px;
  background: #f1f5ff;
  border: 1px solid #e5ecff;
  color: #0d56ff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 34px;
}

.smm-hero-left h1 {
  margin: 0;
  font-size: 78px;
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 900;
  color: #07183d;
}

.smm-hero-left h1 span {
  color: #145cff;
}

.smm-line {
  width: 84px;
  height: 3px;
  background: #145cff;
  border-radius: 20px;
  margin: 26px 0 22px;
}

.smm-subtitle {
  color: #536483;
  font-size: 21px;
  line-height: 1.55;
  margin: 0 0 48px;
  font-weight: 500;
}

.smm-features {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-bottom: 48px;
}

.smm-feature {
  display: flex;
  align-items: center;
  gap: 13px;
}

.smm-feature-icon {
  font-size: 32px;
  color: #145cff;
}

.smm-feature strong {
  display: block;
  color: #07183d;
  font-size: 15px;
  font-weight: 900;
}

.smm-feature span {
  display: block;
  color: #536483;
  font-size: 14px;
  margin-top: 3px;
}

.smm-hero-buttons {
  display: flex;
  gap: 24px;
}

.smm-btn-primary,
.smm-btn-secondary {
  min-width: 220px;
  height: 58px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
}

.smm-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1765ff, #0d4ee8);
  box-shadow: 0 16px 32px rgba(22, 94, 255, 0.25);
}

.smm-btn-secondary {
  background: #fff;
  color: #07183d;
  border: 1px solid #dce4f2;
}

/* Login Card */

.smm-login-card {
  background: rgba(255,255,255,0.94);
  border: 1px solid #e2e9f5;
  border-radius: 18px;
  padding: 42px;
  
  max-width: 620px;
  margin-left: auto;
  
  box-shadow: 0 30px 80px rgba(15, 56, 120, 0.16);
}

.smm-login-card h2 {
  margin: 0 0 8px;
  color: #07183d;
  font-size: 25px;
  font-weight: 900;
}

.smm-login-card > p {
  color: #536483;
  font-size: 16px;
  margin: 0 0 34px;
}

.smm-form-group {
  margin-bottom: 26px;
}

.smm-form-group label {
  display: block;
  font-size: 14px;
  color: #07183d;
  font-weight: 900;
  margin-bottom: 9px;
}

.smm-input-wrap {
  height: 56px;
  border: 1px solid #dce4f2;
  border-radius: 7px;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.smm-input-wrap span {
  opacity: 0.7;
  margin-right: 12px;
}

.smm-input-wrap input {
  border: none;
  outline: none;
  flex: 1;
  height: 100%;
  color: #07183d;
  font-weight: 600;
}

.smm-input-wrap input::placeholder {
  color: #7a8aa8;
}

.smm-input-wrap a {
  color: #0d56ff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.smm-login-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 7px;
  background: linear-gradient(135deg, #1765ff, #0d4ee8);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(22, 94, 255, 0.22);
}

.smm-create {
  margin-top: 30px;
  text-align: center;
  color: #536483;
  font-size: 15px;
  font-weight: 600;
}

.smm-create a {
  color: #0d56ff;
  font-weight: 900;
  text-decoration: none;
}

.smm-google {
  margin-top: 18px;
}

.smm-captcha {
  margin-bottom: 20px;
}

/* Stats */

.smm-stats {
  position: relative;
  z-index: 6;
  margin-top: 35px;
  background: rgba(255,255,255,0.95);
  border: 1px solid #e6edf7;
  border-radius: 14px;
  min-height: 135px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: 0 22px 55px rgba(15, 56, 120, 0.10);
}

.smm-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  position: relative;
}

.smm-stat:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  height: 54px;
  width: 1px;
  background: #e2e9f5;
}

.smm-stat-icon {
  width: 58px;
  height: 58px;
  background: #eef4ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.smm-stat strong {
  display: block;
  color: #07183d;
  font-size: 25px;
  font-weight: 900;
}

.smm-stat span {
  display: block;
  color: #536483;
  font-size: 15px;
  margin-top: 4px;
}

.smm-auth-text {
  background: #fff;
  border: 1px solid #e6edf7;
  border-radius: 14px;
  padding: 30px;
  margin: 40px 0;
}

/* Mobile */

@media (max-width: 1100px) {
  .smm-container {
    padding: 0 28px;
  }

  .smm-menu {
    display: none;
  }

  .smm-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .smm-hero-left h1 {
    font-size: 62px;
  }

  .smm-stats {
    grid-template-columns: 1fr 1fr;
  }

  .smm-stat {
    padding: 25px 0;
  }

  .smm-stat:not(:last-child):after {
    display: none;
  }
}

@media (max-width: 650px) {
  .smm-header {
    height: auto;
    padding: 18px 0;
  }

  .smm-logo-text {
    font-size: 18px;
  }

  .smm-logo-icon {
    font-size: 32px;
  }

  .smm-nav-actions {
    gap: 12px;
  }

  .smm-signin {
    display: none;
  }

  .smm-signup {
    padding: 12px 18px;
    font-size: 14px;
  }

  .smm-hero {
    padding: 45px 0 35px;
  }

  .smm-hero-left h1 {
    font-size: 46px;
    letter-spacing: -2px;
  }

  .smm-subtitle {
    font-size: 17px;
  }

  .smm-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .smm-hero-buttons {
    flex-direction: column;
  }

  .smm-btn-primary,
  .smm-btn-secondary {
    width: 100%;
  }

  .smm-login-card {
    padding: 28px 22px;
  }

  .smm-stats {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }
}
.smm-section-two {
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 70% 20%, rgba(30,111,255,0.07), transparent 32%),
    linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.smm-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
  margin-bottom: 80px;
}

.smm-info-grid.second {
  margin-bottom: 55px;
}

.smm-small-badge {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 100px;
  background: #eef4ff;
  color: #0d56ff;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.smm-info-text h2,
.smm-free-head h2 {
  margin: 0 0 20px;
  color: #07183d;
  font-size: 42px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.smm-info-text h2 span {
  color: #145cff;
}

.smm-info-text p,
.smm-free-head p {
  color: #394967;
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 590px;
}

.smm-info-image {
    height: 250px;
    border-radius: 0;
    box-shadow: none;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.smm-image-one {
  background:
    linear-gradient(rgba(5,18,50,0.25), rgba(5,18,50,0.35)),
    url("https://images.unsplash.com/photo-1611162617474-5b21e879e113?auto=format&fit=crop&w=1200&q=80");
}

.smm-image-two {
  background:
    linear-gradient(135deg, rgba(11,39,93,0.9), rgba(20,92,255,0.55));
  position: relative;
}

.smm-free-head {
  text-align: center;
  margin-bottom: 25px;
}

.smm-free-head p {
  margin: 0 auto;
}

.smm-free-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 22px;
}

.smm-free-card {
  background: #fff;
  border: 1px solid #e6edf7;
  border-radius: 13px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(15,56,120,0.09);
}

.smm-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.smm-social-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.instagram {
  background: linear-gradient(135deg,#ff7a00,#e1306c,#833ab4);
}

.tiktok {
  background: #050505;
}

.youtube {
  background: #e62117;
}

.facebook {
  background: #1877f2;
}

.smm-free-card h3 {
  margin: 0;
  color: #07183d;
  font-size: 16px;
  font-weight: 900;
}

.smm-free-card span {
  color: #0d56ff;
  font-size: 14px;
  font-weight: 800;
}

.smm-free-card label {
  display: block;
  margin: 13px 0 7px;
  color: #07183d;
  font-size: 12px;
  font-weight: 800;
}

.smm-free-card select,
.smm-free-card input {
  width: 100%;
  height: 38px;
  border: 1px solid #dce4f2;
  border-radius: 6px;
  padding: 0 12px;
  color: #536483;
  outline: none;
}

.smm-free-card button {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg,#1765ff,#0d4ee8);
  color: #fff;
  font-weight: 900;
  margin-top: 16px;
}

@media (max-width: 1100px) {
  .smm-info-grid,
  .smm-info-grid.second {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .smm-free-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .smm-section-two {
    padding: 60px 0;
  }

  .smm-info-text h2,
  .smm-free-head h2 {
    font-size: 32px;
  }

  .smm-free-grid {
    grid-template-columns: 1fr;
  }
}
.smm-section-two {
  margin-top: -1px;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 60% 20%, rgba(30,111,255,0.10), transparent 35%),
    radial-gradient(circle at 20% 70%, rgba(30,111,255,0.05), transparent 35%),
    linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
}

.smm-image-one{
  background:
    url("https://storage.perfectcdn.com/nwryxi/g1btks17hzaxxyki.png") center/contain no-repeat;
}

.smm-image-two{
  background:
    url("https://storage.perfectcdn.com/nwryxi/jop5gkqncwchbuej.png") center/contain no-repeat;
}

.smm-info-image {
  position: relative;
  overflow: hidden;
}

.smm-info-grid {
  margin-bottom: 70px;
}

.smm-info-text h2 {
  max-width: 620px;
}

.smm-info-text p {
  max-width: 620px;
}
.free-card-new{
  width:320px;
  background:#fff;
  border-radius:24px;
  overflow:visible;
  box-shadow:0 30px 80px rgba(15,56,120,.10);
  transition:.25s;
}

.free-card-new:hover{
  transform:translateY(-4px);
}

.free-card-top{
padding:25px;
text-align:center;
border-bottom:1px solid #eef1f7;
}

.free-card-top img{
width:75px;
height:75px;
}

.free-card-title{
padding:30px;
text-align:center;
border-bottom:1px solid #ececec;
}

.free-card-title h3{
  font-size:28px;
  line-height:1.1;
  margin:0 0 8px;
  font-weight:800;
  color:#071847;
}

.free-card-title span{
display:block;
margin-top:6px;
font-size:16px;
font-weight:700;
color:#5b6885;
}

.free-card-body{
padding: 20px 20px 26px;
}

.free-card-body label{
  display:block;
  font-size:15px;
  font-weight:700;
  color:#071847;
  margin-bottom:6px;
}

.free-card-body select,
.free-card-body input{
  width:100%;
  height:46px;
  border:2px solid #dfe5f2;
  border-radius:14px;
  padding:0 16px;
  font-size:16px;
  background:#fff;
  color:#071847;
}

.free-card-body select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;

  padding-right:50px;

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23071847' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:16px;
}

.free-card-body button{
  width:100%;
  height:50px;
  border:none;
  border-radius:14px;
  background:#1f5cff;
  color:#fff;
  font-size:16px;
  font-weight:700;

  margin-top:20px;

  box-shadow:0 8px 20px rgba(31,92,255,.25);
  transition:.2s;
}
.free-card-body button:hover{
  transform:translateY(-2px);
}
.free-dropdown{
  position:relative;
  margin-bottom:14px;
}

.free-dropdown-selected{
  height:46px;
  border:2px solid #dfe5f2;
  border-radius:14px;
  padding:0 14px;
  background:#fff;
  color:#071847;
  font-size:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.free-dropdown-selected:after{
  content:"▾";
  margin-left:10px;
  font-size:18px;
  color:#071847;
}

.free-dropdown-selected strong{
  margin-left:auto;
  margin-right:12px;
  color:#0d56ff;
  font-size:13px;
}

.free-dropdown-menu{
  display:none;
  position:absolute;
  top:46px;
  left:0;
  right:0;
  background:#fff;
  border:2px solid #dfe5f2;
  border-radius:14px;
  overflow:hidden;
  z-index:20;
  box-shadow:0 20px 45px rgba(15,56,120,.14);
  
  max-height:230px;
  overflow-y:auto;
}

.free-dropdown:hover .free-dropdown-menu{
  display:block;
}

.free-dropdown-item{
  height:42px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:15px;
  color:#071847;
  cursor:pointer;
}

.free-dropdown-item:nth-child(even){
  background:#f6f8fc;
}

.free-dropdown-item.active strong{
  color:#0d56ff;
  font-size:13px;
}

.free-dropdown-item.locked{
  color:#56627a;
  cursor:not-allowed;
}

.free-dropdown-item.locked strong{
  font-size:16px;
}
.free-dropdown-item:hover{
  background:#edf3ff !important;
  color:#0d56ff;
}
.free-flag{
    width:22px;
    height:22px;
    object-fit:contain;
    vertical-align:middle;
    margin-right:10px;
}
.smm-platform-section{
  padding:90px 0;
  background:linear-gradient(180deg,#f7fbff 0%,#ffffff 100%);
}

.smm-platform-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.smm-platform-text h2{
  font-size:46px;
  line-height:1.1;
  margin:18px 0 22px;
  color:#071847;
  font-weight:900;
}

.smm-platform-text p{
  font-size:17px;
  line-height:1.7;
  color:#20345c;
  max-width:620px;
}

.smm-platform-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 28px;
  margin:28px 0 32px;
}

.smm-platform-features span{
  font-size:16px;
  font-weight:700;
  color:#071847;
}

.smm-platform-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#1f5cff;
  color:#fff !important;
  height:52px;
  padding:0 28px;
  border-radius:14px;
  font-size:16px;
  font-weight:800;
  text-decoration:none !important;
  box-shadow:0 12px 30px rgba(31,92,255,.28);
  transition:.25s;
}

.smm-platform-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(31,92,255,.35);
}

.smm-platform-icons{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.platform-card{
  height:130px;
  background:#fff;
  border:1px solid #e7edf7;
  border-radius:18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  font-size:36px;
  font-weight:900;
  color:#071847;
  box-shadow:0 20px 50px rgba(15,56,120,.08);
  transition:.25s;
}

.platform-card:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 60px rgba(15,56,120,.12);
}

.platform-card span{
  font-size:15px;
  margin-top:12px;
  font-weight:800;
}

@media(max-width:900px){
  .smm-platform-section{
    padding:70px 0;
  }

  .smm-platform-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .smm-platform-text h2{
    font-size:34px;
  }

  .smm-platform-icons{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:520px){
  .smm-platform-features{
    grid-template-columns:1fr;
  }

  .smm-platform-icons{
    grid-template-columns:1fr;
  }
}
.platform-logo{
  width:52px;
  height:52px;
  object-fit:contain;
  margin-bottom:12px;
}
.smm-review-section{
  padding:100px 0 110px;
  background:linear-gradient(180deg,#f7fbff 0%,#ffffff 100%);
}

.smm-review-head{
  text-align:center;
  margin-bottom:55px;
}

.smm-review-head h2{
  font-size:52px;
  line-height:1.1;
  font-weight:900;
  color:#071847;
  margin:18px 0 14px;
}

.smm-review-head p{
  font-size:18px;
  color:#44506e;
  margin:0;
}

.smm-review-slider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
}

.review-slides{
  width:100%;
  max-width:960px;
}

.review-slide{
  display:none;
  grid-template-columns:1fr 1fr;
  gap:26px;
}

.review-slide.active{
  display:grid;
}

.review-card{
  min-height:250px;
  background:linear-gradient(135deg,#0d56ff 0%,#0641bd 100%);
  border-radius:14px;
  padding:34px;
  color:#fff;
  box-shadow:0 24px 60px rgba(13,86,255,.22);
}

.review-user{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:20px;
}

.review-avatar{
  width:54px;
  height:54px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  border:2px solid rgba(255,255,255,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.review-user strong,
.review-stars,
.review-card p{
  color:#fff;
}

.review-stars{
  letter-spacing:2px;
  font-size:14px;
  margin-top:6px;
}

.review-card p{
  line-height:1.7;
  font-size:16px;
  font-weight:700;
  margin:0;
}

.review-arrow{
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#071847;
  box-shadow:0 12px 32px rgba(15,56,120,.13);
  font-size:34px;
  cursor:pointer;
}

.review-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:34px;
}

.review-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#c7d0df;
  cursor:pointer;
}

.review-dots span.active{
  background:#0d56ff;
}

@media(max-width:900px){
  .review-slide{
    grid-template-columns:1fr;
  }

  .review-arrow{
    display:none;
  }

  .smm-review-head h2{
    font-size:36px;
  }
}
.smm-footer{
  background:linear-gradient(135deg,#155fb8 0%,#258cff 100%);
  color:#fff;
  padding:95px 0 95px;
  margin:0;
}

.smm-footer .smm-container{
  position:relative;
  z-index:2;
}

.smm-footer-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:80px;
}

.smm-footer-brand{
  max-width:520px;
}

.smm-footer-brand h3{
  font-size:32px;
  font-weight:900;
  color:#fff;
  margin:0 0 34px;
  letter-spacing:.5px;
}

.smm-footer-brand p{
  font-size:22px;
  line-height:1.25;
  color:#fff;
  margin:0 0 58px;
  max-width:520px;
}

.smm-footer-socials{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:22px;
  font-weight:500;
}

.smm-footer-socials a{
  color:#fff;
  text-decoration:none;
}

.smm-footer-right{
  min-width:520px;
  text-align:center;
}

.smm-payment-title{
  font-size:22px;
  font-weight:500;
  margin-bottom:18px;
}

.smm-payment-icons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  margin-bottom:58px;
}

.smm-payment-icons img{
  height:50px;
  width:auto;
  object-fit:contain;
  border-radius:6px;
}

.smm-footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  font-size:22px;
  font-weight:500;
}

.smm-footer-links a,
.smm-footer-links span{
  color:#fff;
  text-decoration:none;
}

@media(max-width:900px){
  .smm-footer{
    padding:80px 0 80px;
  }

  .smm-footer-top{
    flex-direction:column;
    text-align:center;
    gap:55px;
  }

  .smm-footer-brand{
    max-width:100%;
  }

  .smm-footer-brand p{
    margin-left:auto;
    margin-right:auto;
  }

  .smm-footer-right{
    min-width:0;
    width:100%;
  }

  .smm-payment-icons{
    flex-wrap:wrap;
  }
}
.smm-live-stats{
  padding:95px 0 90px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.smm-live-stats-box{
  background:#fff;
  border:1px solid #e6edf7;
  border-radius:30px;
  padding:24px 28px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  box-shadow:0 30px 80px rgba(15,56,120,.10);
  overflow:hidden;
}
.smm-live-stat{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 26px;
  color:#071847;
  position:relative;
}

.smm-live-stat:not(:last-child):after{
  content:"";
  position:absolute;
  right:0;
  top:18px;
  bottom:18px;
  width:1px;
  background:#e6edf7;
}

.smm-live-icon{
  width:64px;
  height:64px;
  border-radius:18px;
  background:rgba(255,255,255,.13);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.15);
}

.smm-live-icon img{
  width:36px;
  height:36px;
  object-fit:contain;
}

.smm-live-stat span{
  display:block;
  font-size:14px;
  font-weight:800;
  color:#536483;
  margin-bottom:6px;
}

.smm-live-stat strong{
  display:block;
  font-size:32px;
  line-height:1;
  font-weight:900;
  color:#071847;
}

@media(max-width:1100px){
  .smm-live-stats-box{
    grid-template-columns:repeat(2,1fr);
  }

  .smm-live-stat:nth-child(2):after{
    display:none;
  }
}

@media(max-width:650px){
  .smm-live-stats{
    padding:25px 0 60px;
  }

  .smm-live-stats-box{
    grid-template-columns:1fr;
    border-radius:24px;
  }

  .smm-live-stat:after{
    display:none;
  }
}