/* ==========================================
SMSVN.ONLINE PREMIUM STYLE
========================================== */

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

:root{

--primary:#00e5ff;
--secondary:#0099ff;

--dark:#07111f;
--dark2:#0d1b2a;

--card:#101f32;

--text:#ffffff;
--muted:#8ca3b8;

--border:rgba(255,255,255,.08);

--gradient:
linear-gradient(
135deg,
#00e5ff,
#0099ff
);

}

body{

font-family:'Inter',sans-serif;
background:var(--dark);
color:white;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:white;

}

.container{

width:90%;
max-width:1280px;
margin:auto;

}

/* HEADER */

.header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;

background:
rgba(7,17,31,.85);

backdrop-filter:
blur(18px);

border-bottom:
1px solid var(--border);

}

.header .container{

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

height:80px;

}

.logo{

display:flex;
align-items:center;
gap:12px;

font-size:24px;
font-weight:800;

}

.logo img{

height:42px;

}

.navbar{

display:flex;
gap:35px;

}

.navbar a{

font-weight:600;
color:#d7e5f4;

transition:.3s;

}

.navbar a:hover{

color:var(--primary);

}

.header-right{

display:flex;
align-items:center;
gap:15px;

}

.telegram-btn{

padding:12px 24px;

background:var(--gradient);

border-radius:10px;

font-weight:700;

transition:.3s;

}

.telegram-btn:hover{

transform:translateY(-2px);

}

/* HERO */

.hero{

position:relative;

padding-top:140px;
padding-bottom:100px;

min-height:100vh;

display:flex;
align-items:center;

overflow:hidden;

}

.hero::before{

content:"";

position:absolute;
width:700px;
height:700px;

background:
radial-gradient(
circle,
rgba(0,229,255,.15),
transparent
);

top:-250px;
right:-150px;

}

.hero-grid{

display:grid;

grid-template-columns:
1fr 1fr;

gap:80px;

align-items:center;

}

.hero-content h1{

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

line-height:1.1;

margin-bottom:25px;

}

.hero-content h1 span{

background:var(--gradient);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero-content p{

font-size:20px;

line-height:1.8;

color:var(--muted);

margin-bottom:35px;

}

.hero-badge{

display:inline-block;

padding:10px 18px;

border:1px solid rgba(0,229,255,.3);

border-radius:999px;

margin-bottom:25px;

font-size:14px;
font-weight:700;

color:var(--primary);

background:
rgba(0,229,255,.08);

}

.hero-buttons{

display:flex;
gap:20px;

margin-bottom:35px;

}

.btn-primary{

background:var(--gradient);

padding:16px 30px;

border-radius:12px;

font-weight:700;

transition:.3s;

}

.btn-primary:hover{

transform:translateY(-3px);

}

.btn-secondary{

padding:16px 30px;

border-radius:12px;

border:1px solid rgba(255,255,255,.15);

background:
rgba(255,255,255,.03);

}

.hero-feature-list{

display:grid;

grid-template-columns:
repeat(2,1fr);

gap:12px;

}

.hero-feature{

padding:12px;

background:
rgba(255,255,255,.03);

border:
1px solid var(--border);

border-radius:12px;

}

/* HERO IMAGE */

.hero-image img{

border-radius:25px;

box-shadow:
0 30px 60px rgba(0,0,0,.45);

}

/* COUNTER */

.counter-section{

padding:80px 0;

background:var(--dark2);

}

.counter-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

}

.counter-card{

background:var(--card);

padding:40px;

border-radius:20px;

text-align:center;

border:
1px solid var(--border);

}

.counter-card h2{

font-size:48px;

font-weight:800;

color:var(--primary);

margin-bottom:10px;

}

.counter-card p{

color:var(--muted);

font-size:15px;

}

/* SECTION TITLE */

.section-header{

text-align:center;

margin-bottom:60px;

}

.section-header span{

color:var(--primary);

font-weight:700;

letter-spacing:2px;

}

.section-header h2{

font-size:48px;

margin-top:10px;
margin-bottom:15px;

}

.section-header p{

max-width:700px;

margin:auto;

color:var(--muted);

line-height:1.8;

}
/* ==========================
   PAYMENT SECTION
========================== */

.payment-section {
    padding: 100px 0;
    background: #081325;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 50px;
}

.payment-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 35px;
    transition: .4s;
}

.payment-card:hover {
    transform: translateY(-10px);
    border-color: #00ffb2;
    box-shadow: 0 0 30px rgba(0,255,178,.15);
}

.payment-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(0,255,178,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.payment-icon i {
    font-size: 28px;
    color: #00ffb2;
}

.payment-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.payment-card p {
    color: #9ba9c9;
    line-height: 1.8;
}

.payment-features {
    margin-top: 20px;
}

.payment-features li {
    margin-bottom: 10px;
    color: #cfd8f0;
}

.payment-features li i {
    color: #00ffb2;
    margin-right: 10px;
}

/* ==========================
   OTP SECTION
========================== */

.otp-section {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #09182d 0%,
        #07101f 100%
    );
}

.otp-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.otp-content h2 {
    font-size: 52px;
    margin-bottom: 25px;
}

.otp-content p {
    color: #9ba9c9;
    line-height: 1.9;
    margin-bottom: 25px;
}

.otp-list {
    list-style: none;
}

.otp-list li {
    margin-bottom: 15px;
    color: #d6e2ff;
}

.otp-list li i {
    color: #00ffb2;
    margin-right: 12px;
}

.otp-image {
    position: relative;
}

.otp-image img {
    width: 100%;
    border-radius: 25px;
}

.otp-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(
        transparent,
        rgba(0,255,178,.1)
    );
}

/* ==========================
   STATS
========================== */

.stats {
    padding: 80px 0;
    background: #050d18;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 35px 20px;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #00ffb2;
}

.stat-label {
    color: #9ba9c9;
    margin-top: 10px;
}

/* ==========================
   ADVANTAGES
========================== */

.advantage-section {
    padding: 110px 0;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.advantage-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    transition: .4s;
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: #00ffb2;
}

.advantage-card i {
    font-size: 48px;
    color: #00ffb2;
    margin-bottom: 20px;
}

.advantage-card h4 {
    margin-bottom: 15px;
    font-size: 22px;
}

.advantage-card p {
    color: #9ba9c9;
}

/* ==========================
   TESTIMONIAL
========================== */

.testimonial {
    padding: 100px 0;
    background: #081325;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.review-card {
    background: rgba(255,255,255,.04);
    border-radius: 20px;
    padding: 30px;
}

.review-stars {
    color: #ffd700;
    margin-bottom: 15px;
}

.review-card p {
    color: #b9c7e6;
    line-height: 1.8;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #00ffb2,
        #00b8ff
    );
}

.review-name {
    font-weight: 700;
}

.review-role {
    color: #93a7cf;
    font-size: 14px;
}

/* ==========================
   CTA
========================== */

.cta-section {
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0,255,178,.06);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    filter: blur(120px);
}

.cta-section h2 {
    font-size: 60px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: #9ba9c9;
    font-size: 20px;
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}
/* ==========================
   FOOTER
========================== */

.footer {
    background: #040b15;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
}

.footer-desc {
    color: #93a7cf;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover {
    background: #00ffb2;
    color: #051018;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9ba9c9;
    transition: .3s;
}

.footer-links a:hover {
    color: #00ffb2;
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 25px;
    text-align: center;
    color: #8091b3;
}

/* ==========================
   FLOATING BUTTONS
========================== */

.telegram-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #0088cc,
        #00c8ff
    );
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 0 30px rgba(0,136,204,.4);
    animation: pulse 2s infinite;
}

.telegram-float i {
    font-size: 28px;
    color: white;
}

.back-top {
    position: fixed;
    right: 25px;
    bottom: 105px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #00ffb2;
    color: #051018;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 999;
}

.back-top.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #07101f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #00ffb2,
        #00b8ff
    );
    border-radius: 50px;
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0,255,178,.5);
    }

    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 20px rgba(0,255,178,0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px rgba(0,255,178,.2);
    }

    50% {
        box-shadow: 0 0 35px rgba(0,255,178,.5);
    }

    100% {
        box-shadow: 0 0 15px rgba(0,255,178,.2);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(50px);
}

.fade-up.show {
    animation: fadeUp .8s ease forwards;
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media(max-width:1200px){

    .container{
        width:90%;
    }

    .hero-title{
        font-size:60px;
    }

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

@media(max-width:992px){

    .hero-wrapper,
    .sms-wrapper,
    .otp-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .hero-content{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

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

    .service-grid,
    .payment-grid,
    .testimonial-grid,
    .advantage-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title{
        font-size:42px;
    }

    .cta-section h2{
        font-size:46px;
    }
}

@media(max-width:768px){

    .navbar{
        padding:18px 0;
    }

    .nav-menu{
        display:none;
    }

    .hero{
        padding-top:140px;
    }

    .hero-title{
        font-size:48px;
        line-height:1.2;
    }

    .hero-desc{
        font-size:18px;
    }

    .section-title{
        font-size:36px;
    }

    .service-grid,
    .payment-grid,
    .testimonial-grid,
    .advantage-grid{
        grid-template-columns:1fr;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

    .cta-section h2{
        font-size:38px;
    }

    .telegram-float{
        width:60px;
        height:60px;
    }

    .back-top{
        width:50px;
        height:50px;
    }
}

@media(max-width:576px){

    .hero-title{
        font-size:38px;
    }

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

    .btn-primary,
    .btn-secondary{
        width:100%;
        justify-content:center;
    }

    .section-title{
        font-size:30px;
    }

    .section-desc{
        font-size:16px;
    }

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

    .stat-number{
        font-size:42px;
    }

    .cta-section h2{
        font-size:30px;
    }

    .cta-section p{
        font-size:16px;
    }

    .payment-card,
    .service-card,
    .advantage-card,
    .review-card{
        padding:25px;
    }
}

/* ==========================
   ULTRA PREMIUM EFFECTS
========================== */

.glow-green {
    animation: glow 3s infinite;
}

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

.rotate-animation {
    animation: rotate 20s linear infinite;
}

.text-gradient {
    background: linear-gradient(
        90deg,
        #00ffb2,
        #00d8ff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.border-gradient {
    border: 1px solid transparent;
    background:
      linear-gradient(#081325,#081325) padding-box,
      linear-gradient(135deg,#00ffb2,#00b8ff) border-box;
}

.shadow-neon {
    box-shadow:
      0 0 20px rgba(0,255,178,.2),
      0 0 60px rgba(0,255,178,.08);
}