/* ===========================
   BEJO CUN UI 2026
=========================== */

:root{

--bg:#060b16;
--bg2:#0f1728;
--primary:#00d4ff;
--secondary:#7b2cff;
--accent:#00ffb3;
--white:#ffffff;
--text:#d8d8d8;

--radius:18px;

--shadow:
0 15px 35px rgba(0,0,0,.35);

}

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

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:
linear-gradient(rgba(5,10,20,.90),rgba(5,10,20,.92)),
url("https://images.unsplash.com/photo-1542751371-adc38448a05e?q=80&w=1920&auto=format&fit=crop");

background-size:cover;
background-position:center;
background-attachment:fixed;

color:white;

overflow-x:hidden;

}

/* scrollbar */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-thumb{

background:
linear-gradient(
180deg,
var(--primary),
var(--secondary));

border-radius:50px;

}

/* loader */

#loader{

position:fixed;

inset:0;

background:#05070f;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

}

.loader-logo{

font-size:42px;

font-weight:800;

letter-spacing:5px;

background:
linear-gradient(
90deg,
#00e5ff,
#00ffb3,
#7b2cff);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

animation:pulse 1.5s infinite;

}

@keyframes pulse{

50%{

transform:scale(1.08);

}

}

/* NAVBAR */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 8%;

display:flex;

justify-content:space-between;

align-items:center;

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

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.08);

z-index:999;

}

.logo{

font-size:30px;

font-weight:800;

text-decoration:none;

color:white;

}

.menu{

display:flex;

gap:35px;

list-style:none;

}

.menu a{

text-decoration:none;

color:white;

transition:.3s;

font-weight:500;

}

.menu a:hover{

color:var(--primary);

}

/* HERO */

.hero{

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

padding:120px 8%;

gap:60px;

}

.hero-left h1{

font-size:64px;

line-height:1.15;

margin-bottom:25px;

}

.hero-left span{

background:
linear-gradient(
90deg,
#00e5ff,
#00ffb3,
#7b2cff);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero-left p{

font-size:18px;

color:#ddd;

line-height:1.8;

margin-bottom:35px;

}

/* tombol */

.hero-button{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.btn{

position:relative;

padding:15px 34px;

border-radius:999px;

text-decoration:none;

color:white;

font-weight:600;

overflow:hidden;

background:#0f1728;

transition:.3s;

}

.btn::before{

content:"";

position:absolute;

inset:-2px;

border-radius:999px;

background:
linear-gradient(
90deg,
#00e5ff,
#00ffb3,
#7b2cff,
#ff00ff,
#00e5ff);

background-size:300%;

animation:borderMove 5s linear infinite;

z-index:-2;

}

.btn::after{

content:"";

position:absolute;

inset:2px;

background:#0f1728;

border-radius:999px;

z-index:-1;

}

.btn:hover{

transform:translateY(-4px);

box-shadow:

0 0 25px rgba(0,212,255,.5);

}

@keyframes borderMove{

100%{

background-position:300%;

}

}

/* HERO IMAGE */

.hero-right{

display:flex;

justify-content:center;

}

.hero-right img{

width:100%;

max-width:520px;

border-radius:24px;

box-shadow:var(--shadow);

}

/* COUNTER */

.counter{

padding:70px 8%;

display:grid;

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

gap:25px;

}

.counter div{

padding:35px;

border-radius:18px;

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

backdrop-filter:blur(18px);

text-align:center;

}

.counter h2{

font-size:38px;

color:var(--primary);

margin-bottom:10px;

}

/* MOBILE */

.menu-btn{

display:none;

cursor:pointer;

}

.menu-btn span{

display:block;

width:30px;

height:3px;

background:white;

margin:6px 0;

border-radius:20px;

}

@media(max-width:900px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero-left h1{

font-size:42px;

}

.hero-right{

order:-1;

}

.counter{

grid-template-columns:1fr 1fr;

}

.menu{

display:none;

}

.menu-btn{

display:block;

}

.hero-button{

justify-content:center;

}

.navbar{

padding:18px 5%;

}

}

@media(max-width:600px){

.counter{

grid-template-columns:1fr;

}

.hero{

padding-top:110px;

}

.hero-left h1{

font-size:34px;

}

.hero-left p{

font-size:15px;

}

.btn{

width:100%;

text-align:center;

}

.hero-right img{

max-width:100%;

}

}

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

.section{

padding:90px 8%;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:42px;

font-weight:700;

margin-bottom:15px;

}

.section-title h2 span{

background:linear-gradient(
90deg,
#00e5ff,
#00ffb3,
#7b2cff);

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

}

.section-title p{

max-width:700px;
margin:auto;
color:#cfcfcf;
line-height:1.8;

}

/* =========================================
FEATURE GRID
========================================= */

.feature-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:28px;

}

.feature-card{

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

backdrop-filter:blur(20px);

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

padding:35px;

border-radius:20px;

transition:.35s;

position:relative;

overflow:hidden;

}

.feature-card::before{

content:"";

position:absolute;

top:0;
left:-100%;

width:100%;
height:100%;

background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.12),
transparent);

transition:.7s;

}

.feature-card:hover::before{

left:100%;

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:

0 20px 45px rgba(0,212,255,.25);

}

.icon{

width:70px;

height:70px;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

border-radius:18px;

margin-bottom:20px;

background:

linear-gradient(
135deg,
#00d4ff,
#7b2cff);

}

.feature-card h3{

margin-bottom:15px;

}

.feature-card p{

color:#d5d5d5;

line-height:1.8;

}

/* =========================================
GALLERY
========================================= */

.gallery{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.gallery img{

width:100%;

height:240px;

object-fit:cover;

border-radius:20px;

transition:.45s;

cursor:pointer;

}

.gallery img:hover{

transform:scale(1.05);

box-shadow:

0 0 30px rgba(0,229,255,.35);

}

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

.cta{

padding:90px 8%;

text-align:center;

background:

linear-gradient(
135deg,
rgba(0,212,255,.08),
rgba(123,44,255,.12));

}

.cta h2{

font-size:42px;

margin-bottom:18px;

}

.cta p{

max-width:720px;

margin:auto;

margin-bottom:35px;

line-height:1.8;

color:#ddd;

}

/* =========================================
ARTICLE
========================================= */

.article-box{

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

backdrop-filter:blur(15px);

padding:40px;

border-radius:22px;

line-height:2;

}

.article-box h3{

font-size:30px;

margin-bottom:25px;

color:#00d4ff;

}

.article-box p{

margin-bottom:22px;

color:#ddd;

}

/* =========================================
FAQ
========================================= */

.faq{

max-width:900px;

margin:auto;

}

.faq details{

margin-bottom:18px;

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

border-radius:16px;

padding:20px;

cursor:pointer;

}

.faq summary{

font-size:18px;

font-weight:600;

list-style:none;

}

.faq summary::-webkit-details-marker{

display:none;

}

.faq p{

margin-top:15px;

color:#d6d6d6;

line-height:1.8;

}

/* =========================================
FOOTER
========================================= */

footer{

padding:70px 8%;

margin-top:80px;

background:#05070f;

}

.footer-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:35px;

}

.footer-grid h3{

margin-bottom:18px;

}

.footer-grid a{

display:block;

text-decoration:none;

color:#d6d6d6;

margin:10px 0;

transition:.3s;

}

.footer-grid a:hover{

color:#00d4ff;

padding-left:8px;

}

.copy{

text-align:center;

margin-top:50px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.08);

color:#aaa;

}

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

@media(max-width:768px){

.section{

padding:70px 20px;

}

.section-title h2{

font-size:30px;

}

.cta h2{

font-size:30px;

}

.article-box{

padding:25px;

}

.gallery img{

height:210px;

}

.feature-card{

padding:28px;

}

}

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

.section{

padding:90px 8%;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:42px;

font-weight:700;

margin-bottom:15px;

}

.section-title h2 span{

background:linear-gradient(
90deg,
#00e5ff,
#00ffb3,
#7b2cff);

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

}

.section-title p{

max-width:700px;
margin:auto;
color:#cfcfcf;
line-height:1.8;

}

/* =========================================
FEATURE GRID
========================================= */

.feature-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:28px;

}

.feature-card{

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

backdrop-filter:blur(20px);

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

padding:35px;

border-radius:20px;

transition:.35s;

position:relative;

overflow:hidden;

}

.feature-card::before{

content:"";

position:absolute;

top:0;
left:-100%;

width:100%;
height:100%;

background:

linear-gradient(
90deg,
transparent,
rgba(255,255,255,.12),
transparent);

transition:.7s;

}

.feature-card:hover::before{

left:100%;

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:

0 20px 45px rgba(0,212,255,.25);

}

.icon{

width:70px;

height:70px;

display:flex;

justify-content:center;

align-items:center;

font-size:32px;

border-radius:18px;

margin-bottom:20px;

background:

linear-gradient(
135deg,
#00d4ff,
#7b2cff);

}

.feature-card h3{

margin-bottom:15px;

}

.feature-card p{

color:#d5d5d5;

line-height:1.8;

}

/* =========================================
GALLERY
========================================= */

.gallery{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));

gap:25px;

}

.gallery img{

width:100%;

height:240px;

object-fit:cover;

border-radius:20px;

transition:.45s;

cursor:pointer;

}

.gallery img:hover{

transform:scale(1.05);

box-shadow:

0 0 30px rgba(0,229,255,.35);

}

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

.cta{

padding:90px 8%;

text-align:center;

background:

linear-gradient(
135deg,
rgba(0,212,255,.08),
rgba(123,44,255,.12));

}

.cta h2{

font-size:42px;

margin-bottom:18px;

}

.cta p{

max-width:720px;

margin:auto;

margin-bottom:35px;

line-height:1.8;

color:#ddd;

}

/* =========================================
ARTICLE
========================================= */

.article-box{

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

backdrop-filter:blur(15px);

padding:40px;

border-radius:22px;

line-height:2;

}

.article-box h3{

font-size:30px;

margin-bottom:25px;

color:#00d4ff;

}

.article-box p{

margin-bottom:22px;

color:#ddd;

}

/* =========================================
FAQ
========================================= */

.faq{

max-width:900px;

margin:auto;

}

.faq details{

margin-bottom:18px;

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

border-radius:16px;

padding:20px;

cursor:pointer;

}

.faq summary{

font-size:18px;

font-weight:600;

list-style:none;

}

.faq summary::-webkit-details-marker{

display:none;

}

.faq p{

margin-top:15px;

color:#d6d6d6;

line-height:1.8;

}

/* =========================================
FOOTER
========================================= */

footer{

padding:70px 8%;

margin-top:80px;

background:#05070f;

}

.footer-grid{

display:grid;

grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:35px;

}

.footer-grid h3{

margin-bottom:18px;

}

.footer-grid a{

display:block;

text-decoration:none;

color:#d6d6d6;

margin:10px 0;

transition:.3s;

}

.footer-grid a:hover{

color:#00d4ff;

padding-left:8px;

}

.copy{

text-align:center;

margin-top:50px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.08);

color:#aaa;

}

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

@media(max-width:768px){

.section{

padding:70px 20px;

}

.section-title h2{

font-size:30px;

}

.cta h2{

font-size:30px;

}

.article-box{

padding:25px;

}

.gallery img{

height:210px;

}

.feature-card{

padding:28px;

}

}.slider{max-width:1000px;margin:auto;overflow:hidden;position:relative}.slides{display:flex;transition:.5s}.slides img{min-width:100%;height:520px;object-fit:cover}.prev,.next{position:absolute;top:50%}.review-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}
.slider{max-width:900px;margin:auto;overflow:hidden;position:relative;border-radius:20px}
.slides{display:flex;transition:.5s}
.slides img{flex:0 0 100%;height:420px;object-fit:contain;background:#111}
.prev,.next{position:absolute;top:50%;transform:translateY(-50%);padding:12px 16px;cursor:pointer}
.prev{left:10px}.next{right:10px}
.review-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:24px}
.review-card{background:rgba(255,255,255,.06);padding:24px;border-radius:16px}
.review-header{display:flex;justify-content:space-between;align-items:center}
.review-rating{font-weight:700;color:#ffd54a}
.review-card p{margin-top:10px;color:#ddd}
