.hero-section{

    width:100%;

    background:#ffffff;

    padding:60px 0;

}

.hero-container{

    max-width:1200px;

    margin:auto;

    padding:0 24px;

}

.hero-category{

    display:inline-block;

    background:#29B8F2;

    color:#ffffff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:700;

    margin-bottom:20px;

}

.hero-title h1{

    font-size:44px;

    line-height:1.22;

    color:#111111;

    margin-bottom:16px;

    font-weight:800;

    letter-spacing:-0.5px;

}

.hero-title p{

    max-width:760px;

    font-size:18px;

    color:#666666;

    line-height:1.8;

}

.hero-image{

    margin-top:40px;

}

.hero-image img{

    width:100%;

    border-radius:16px;

    display:block;

}

.hero-buttons{

    display:grid;

    grid-template-columns:1fr 1fr;

    margin-top:12px;

}

.hero-login,
.hero-register{

    text-decoration:none;

    text-align:center;

    padding:18px;

    color:#ffffff;

    font-weight:700;

}

.hero-login{

    background:#0089d6;

}

.hero-register{

    background:#00a9ff;

}

/* ======================================================
   HERO LAYOUT
====================================================== */

.hero-layout{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:24px;

    margin-top:40px;

    align-items:start;

}

.hero-left{

    width:100%;

}

.hero-right{

    min-height:560px;

    background:#ffffff;

    border:1px solid #e8e8e8;

    border-radius:14px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.hero-image{

    margin-top:0;

}

.hero-image img{

    width:100%;

    height:560px;

    object-fit:cover;

    border-radius:14px;

    display:block;

}

.hero-buttons{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:0;

}

.hero-login{

    border-radius:0 0 0 14px;

}

.hero-register{

    border-radius:0 0 14px 0;

}

/* ======================================================
   ARTICLE
====================================================== */

.article-section{

    padding:60px 0 80px;

    background:#ffffff;

}

.news-card{

    background:#171717;

    border:2px solid #1FA8E3;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.news-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:18px 24px;

    background:#101010;

    border-bottom:2px solid #1FA8E3;

}

.news-header h2{

    margin:0;

    color:#ffffff;

    font-size:24px;

    line-height:1.4;

    font-weight:800;

    flex:1;

}

.news-live{

    background:#1FA8E3;

    color:#ffffff;

    padding:6px 12px;

    border-radius:20px;

    font-size:12px;

    font-weight:700;

    white-space:nowrap;

}

.news-body{

    padding:30px;

}

.news-body p{

    margin:0 0 22px;

    color:#d8d8d8;

    line-height:1.9;

    font-size:17px;
}

.news-body strong{

    color:#ffffff;
}

/* ======================================================
   REVIEW PANEL
====================================================== */

.review-panel{

    display:flex;

    flex-direction:column;

    height:100%;

}

.review-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:14px 16px;

    border-bottom:1px solid #e8e8e8;

    font-weight:700;

}

.review-title{

    color:#111111;

}

.review-stars{

    color:#f6b800;

}

.review-item{

    display:grid;

    grid-template-columns:56px 1fr;

    min-height:92px;

    border-bottom:1px solid #ececec;

}

.review-number{

    display:flex;

    align-items:center;

    justify-content:center;

    background:#29B8F2;

    color:#ffffff;

    font-size:34px;

    font-weight:700;

}

.review-text{

    display:flex;

    align-items:center;

    padding:12px;

    color:#444444;

    font-size:14px;

    line-height:1.5;

}

/* ======================================================
   FAQ
====================================================== */

.faq-section{

    padding:70px 0;

    background:#ffffff;

}

.faq-card{

    background:#171717;

    border:2px solid #1FA8E3;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.25);

}

.faq-header{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:28px;

    border-bottom:2px solid #1FA8E3;

}

.faq-accent{

    width:4px;

    height:58px;

    background:#29B8F2;

    border-radius:3px;

    flex-shrink:0;

}

.faq-heading{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.faq-heading h2{

    margin:0;

    color:#ffffff;

    font-size:34px;

    font-weight:800;

    line-height:1.1;

}

.faq-heading p{

    margin:0;

    color:#8d8d8d;

    font-size:12px;

    font-weight:700;

    letter-spacing:4px;

    text-transform:uppercase;

}

.faq-item{

    border-bottom:1px solid #2d2d2d;

}

.faq-question{

    width:100%;

    background:#171717;

    color:#ffffff;

    border:none;

    padding:20px 28px;

    text-align:left;

    cursor:pointer;

    font-size:17px;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

    transition:.25s;
}

.faq-question::after{

    content:"+";

    color:#29B8F2;

    font-size:22px;

    font-weight:700;

}

.faq-question:hover{

    background:#1e1e1e;

}

/* ======================================================
   FAQ ANSWER
====================================================== */

.faq-answer{

    max-height:0;

    overflow:hidden;

    opacity:0;

    padding:0 28px;

    background:#101010;

    transition:
        max-height .35s ease,
        opacity .30s ease,
        padding .30s ease;

}

.faq-answer p{

    margin:0;

    padding:0 0 0 18px;

    border-left:3px solid #29B8F2;

    color:#d7d7d7;

    font-size:15px;

    line-height:2;

    letter-spacing:.2px;

}

/* FAQ aktif */

.faq-item.active .faq-answer{

    max-height:260px;

    opacity:1;

    padding:22px 32px 28px;

    border-top:1px solid rgba(255,255,255,.05);

}

.faq-item.active .faq-question::after{

    content:"−";

}

/* ======================================================
   FOOTER
====================================================== */

.site-footer{

    background:#090909;

    padding:70px 0 35px;

    margin-top:80px;

    border-top:2px solid #1FA8E3;

}

.footer-content{

    display:grid;

    grid-template-columns:420px 1fr 1fr 1fr;

    gap:60px;

    align-items:flex-start;

}

.footer-brand h3{

    position:relative;

    display:inline-block;

    overflow:hidden;

    margin:0 0 10px;

    color:#29B8F2;

    font-size:32px;

    font-weight:900;

    letter-spacing:1px;

    line-height:1.1;

    text-shadow:
        0 0 8px rgba(41,184,242,.55),
        0 0 18px rgba(41,184,242,.35);

    transition:.35s;

}

.footer-tagline{

    margin:8px 0 10px;

    color:#8d8d8d;

    font-size:14px;

    line-height:1.6;

}

.footer-brand h3::before{

    content:"";

    position:absolute;

    top:-40%;

    left:-45%;

    width:28%;

    height:180%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.95),
        transparent
    );

    transform:skewX(-25deg);

    animation:footerLogoShine 4s linear infinite;

}

.footer-brand h3:hover{

    color:#5dd8ff;

    text-shadow:
        0 0 12px rgba(41,184,242,.85),
        0 0 28px rgba(41,184,242,.65),
        0 0 40px rgba(41,184,242,.45);

}

@keyframes footerLogoShine{

    from{

        left:-45%;

    }

    to{

        left:145%;

    }

}

.footer-social{

    display:grid;

    grid-template-columns:repeat(3,56px);

    gap:12px;

    margin-top:12px;

    margin-bottom:18px;

}

.footer-download{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:8px;

}

.footer-awards{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:12px;

}

.footer-social a,
.footer-download a{

    color:#d7d7d7;

    text-decoration:none;

    font-size:14px;

}

.award-badge{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 12px;

    background:#141414;

    border:1px solid rgba(255,255,255,.15);

    border-radius:10px;

    color:#ffffff;

    text-decoration:none;

    font-size:13px;

    transition:.28s;

}

.award-badge i{

    color:#f4c542;

    font-size:16px;

}

.award-badge:hover{

    border-color:#29B8F2;

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(41,184,242,.22);

}

.award-badge:hover i{

    color:#29B8F2;

}

.social-btn{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.30);

    border-radius:50%;

    background:#111111;

    color:#ffffff !important;

    font-size:17px !important;

    font-weight:700;

    transition:.25s;

}

.social-btn:hover{

    background:#29B8F2;

    border-color:#29B8F2;

    transform:translateY(-3px);

}

.footer-register{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    margin-top:28px;

    padding:16px 42px;

    background:linear-gradient(180deg,#2DBBFF,#1793E8);

    color:#ffffff;

    text-decoration:none;

    font-weight:700;

    letter-spacing:.5px;

    border-radius:12px;

    box-shadow:0 10px 24px rgba(31,168,227,.35);

    transition:.25s;

}

.footer-register:hover{

    transform:translateY(-3px);

    box-shadow:0 16px 30px rgba(31,168,227,.45);

}

.footer-download{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-top:20px;

}

.footer-download a{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0;

    background:transparent;

    border:none;

    border-radius:10px;

    transition:.25s;

}

.store-badge{

    display:block;

    width:150px;

    height:auto;

    transition:.25s;

}

.footer-download a:hover{

    transform:translateY(-3px);

}

.footer-download a:hover .store-badge{

    filter:drop-shadow(0 8px 18px rgba(41,184,242,.35));

}

.footer-links h4{

    margin:0 0 24px;

    color:#ffffff;

    font-size:22px;

    font-weight:700;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links a{

    color:#bdbdbd;

    text-decoration:none;

    margin-bottom:12px;

    transition:.25s;

}

.footer-links a:hover{

    color:#29B8F2;

}

.footer-bottom{

    margin-top:60px;

    padding-top:24px;

    border-top:1px solid rgba(255,255,255,.10);

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:18px;

}

.footer-bottom-links{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:26px;

}

.footer-bottom-links a{

    color:#b8b8b8;

    text-decoration:none;

    font-size:14px;

    transition:.25s;

}

.footer-bottom-links a:hover{

    color:#29B8F2;

}

.footer-copyright{

    color:#8b8b8b;

    font-size:14px;

    text-align:center;

}

/* ======================================================
   HERO MOBILE
====================================================== */

@media (max-width:768px){

.hero-section{

    padding:30px 0;

}

.hero-container{

    padding:0 16px;

}

.hero-title h1{

    font-size:26px;

    line-height:1.35;

}

.hero-layout{

    grid-template-columns:1fr;

    gap:18px;

}

.hero-right{

    min-height:auto;

}

.hero-image img{

    height:auto;

    max-height:420px;

    object-fit:cover;

}

.review-item{

    grid-template-columns:54px 1fr;

}

.review-number{

    font-size:28px;

}

.review-text{

    font-size:14px;

}

.hero-buttons{

    grid-template-columns:1fr 1fr;

}

}
