/* =====================================================
   RESET
===================================================== */

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

:root{

    --primary:#ffd400;
    --dark:#0b0b0b;
    --text:#ffffff;
    --muted:#d8d8d8;
    --radius:16px;
    --container:1220px;
    --transition:.35s;

}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#050505;
    color:#fff;
    overflow-x:hidden;

}

img{

    display:block;
    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(var(--container),calc(100% - 48px));
    margin:auto;

}


/* =====================================================
   HEADER
===================================================== */

.header{

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

    transition:.35s;

}

.header.scrolled{

    background:rgba(8,8,8,.93);

    backdrop-filter:blur(18px);

    box-shadow:0 8px 25px rgba(0,0,0,.25);

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar{

    height:90px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/* =====================================================
   LOGO
===================================================== */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    color:#fff;

}

.logo-box{

    width:56px;

    height:56px;

    border-radius:18px;

    background:linear-gradient(135deg,#ffe600,#ffc400);

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:900;

    font-size:22px;

    box-shadow:

    0 15px 40px rgba(255,208,0,.30);

}

.logo-text{

    font-size:25px;

    font-weight:800;

    line-height:1.1;

    color:#fff;

}

.logo-text span{

    display:block;

    font-size:15px;

    font-weight:600;

    color:#bdbdbd;

}


/* =====================================================
   MENU
===================================================== */

.menu{

    display:flex;

    align-items:center;

    gap:42px;

}

.menu a{

    color:#fff;

    font-weight:500;

    font-size:16px;

    transition:.3s;

    position:relative;

}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-7px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.menu a:hover{

    color:var(--primary);

}

.menu a:hover::after{

    width:100%;

}


/* =====================================================
   RIGHT
===================================================== */

.right-menu{

    display:flex;

    align-items:center;

    gap:14px;

}


/* =====================================================
   DARK BUTTON
===================================================== */

.theme-btn{

    width:48px;

    height:48px;

    border-radius:50%;

    border:none;

    background:#1f1f1f;

    color:#fff;

    font-size:20px;

    cursor:pointer;

    transition:.3s;

}

.theme-btn:hover{

    transform:rotate(15deg);

    background:#2a2a2a;

}


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

.btn-daftar{

    height:56px;

    padding:0 28px;

    border-radius:999px;

    background:linear-gradient(180deg,#ffe564,#ffd000);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#000;

    font-weight:800;

    font-size:15px;

    box-shadow:

    0 15px 35px rgba(255,214,0,.35);

    transition:.35s;

}

.btn-daftar:hover{

    transform:translateY(-3px);

}


/* =====================================================
   HAMBURGER
===================================================== */

.hamburger{

    width:52px;

    height:52px;

    display:none;

    border:none;

    background:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:28px;

    height:3px;

    background:#fff;

    margin:5px auto;

    border-radius:50px;

}


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

@media(max-width:991px){

.menu{

    display:none;

}

.btn-daftar{

    display:none;

}

.hamburger{

    display:block;

}

.logo-box{

    width:48px;

    height:48px;

    font-size:19px;

}

.logo-text{

    font-size:22px;

}

.logo-text span{

    font-size:13px;

}

.navbar{

    height:78px;

}

.container{

    width:calc(100% - 32px);

}

}

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

.hero{

    position:relative;

    padding-top:150px;

    padding-bottom:90px;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,#1d1d1d 0%,#0b0b0b 45%,#000 100%);

}

.hero::before{

    content:"";

    position:absolute;

    width:900px;
    height:900px;

    background:radial-gradient(circle,
    rgba(255,214,0,.12),
    transparent 70%);

    right:-300px;
    top:-260px;

    pointer-events:none;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:70px;

    align-items:center;

}

/*=========================
BADGE
=========================*/

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:999px;

    background:rgba(255,212,0,.12);

    border:1px solid rgba(255,212,0,.30);

    color:#ffd400;

    font-weight:700;

    font-size:14px;

    letter-spacing:.4px;

    margin-bottom:26px;

}

/*=========================
TITLE
=========================*/

.hero-left h1{

    font-size:64px;

    line-height:1.08;

    font-weight:900;

    letter-spacing:-1.8px;

    margin-bottom:22px;

}

.hero-left h1 span{

    color:#ffd400;

}

/*=========================
TEXT
=========================*/

.hero-left p{

    max-width:560px;

    color:#d3d3d3;

    font-size:19px;

    line-height:1.8;

    margin-bottom:40px;

}

/*=========================
CHECKLIST
=========================*/

.hero-list{

    display:grid;

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

    gap:18px 28px;

    margin-bottom:34px;

}

.hero-list .item{

    display:flex;

    align-items:center;

    gap:14px;

}

.check{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#ffd400;

    color:#000;

    font-size:17px;

    font-weight:900;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    box-shadow:0 10px 25px rgba(255,212,0,.30);

}

.hero-list span{

    font-size:17px;

    color:#f4f4f4;

    font-weight:600;

}

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

.feature-list{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-bottom:42px;

}

.feature{

    padding:12px 20px;

    border-radius:999px;

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

    background:#111;

    color:#fff;

    font-size:14px;

    font-weight:600;

}

/*=========================
BUTTON
=========================*/

.hero-button a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    min-width:260px;

    height:66px;

    border-radius:999px;

    background:linear-gradient(180deg,#ffe76b,#ffd000);

    color:#000;

    font-size:18px;

    font-weight:800;

    transition:.35s;

    box-shadow:0 22px 45px rgba(255,212,0,.35);

}

.hero-button a:hover{

    transform:translateY(-5px);

}

.hero-button span{

    font-size:24px;

}

/*=========================
RIGHT IMAGE
=========================*/

.hero-right{

    position:relative;

}

.hero-card{

    position:relative;

    border-radius:34px;

    overflow:hidden;

    background:#fff;

    padding:14px;

    box-shadow:

    0 40px 80px rgba(0,0,0,.45);

}

.hero-card::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    left:24px;

    top:24px;

    border-radius:34px;

    background:#ffd400;

    z-index:-1;

}

.hero-card img{

    width:100%;

    display:block;

    border-radius:24px;

    aspect-ratio:4/5;

    object-fit:cover;

}

/*=========================
FLOAT STICKER
=========================*/

.sticker{

    position:absolute;

    background:#fff;

    color:#111;

    padding:12px 18px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

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

    animation:floatY 5s ease-in-out infinite;

}

.sticker1{

    top:28px;

    left:-45px;

}

.sticker2{

    top:170px;

    right:-36px;

}

.sticker3{

    bottom:38px;

    left:-25px;

}

/*=========================
ICON BULAT
=========================*/

.circle{

    position:absolute;

    width:74px;

    height:74px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 18px 40px rgba(0,0,0,.25);

    animation:floatY 6s ease-in-out infinite;

}

.circle img{

    width:42px;

    height:42px;

    object-fit:contain;

}

.circle1{

    right:-26px;

    top:70px;

}

.circle2{

    left:-36px;

    bottom:135px;

}

.circle3{

    right:60px;

    bottom:-20px;

}

/*=========================
FLOAT WA
=========================*/

.floating-wa{

    position:fixed;

    right:24px;

    bottom:24px;

    width:70px;

    height:70px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 18px 35px rgba(0,0,0,.30);

    z-index:999;

    transition:.35s;

}

.floating-wa img{

    width:36px;

}

.floating-wa:hover{

    transform:scale(1.08);

}

/*=========================
ANIMATION
=========================*/

@keyframes floatY{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*====================================================
=            HERO MOBILE
====================================================*/

@media (max-width:991px){

.hero{

    padding-top:110px;
    padding-bottom:70px;

}

.hero-grid{

    grid-template-columns:1fr;
    gap:55px;

}

.hero-left{

    order:2;

}

.hero-right{

    order:1;

}

.hero-left{

    text-align:center;

}

.badge{

    margin:0 auto 24px;

    font-size:13px;

    padding:10px 18px;

}

.hero-left h1{

    font-size:42px;
    line-height:1.15;
    letter-spacing:-1px;

}

.hero-left p{

    font-size:16px;
    line-height:1.7;
    margin:22px auto 34px;
    max-width:100%;

}

.hero-list{

    grid-template-columns:1fr;
    gap:16px;

}

.hero-list .item{

    justify-content:flex-start;

}

.feature-list{

    justify-content:center;

}

.hero-button{

    display:flex;
    justify-content:center;

}

.hero-button a{

    width:100%;
    max-width:340px;

    height:60px;

    font-size:17px;

}

.hero-card{

    max-width:420px;
    margin:auto;

}

.hero-card::before{

    left:16px;
    top:16px;

}

.sticker{

    font-size:12px;
    padding:9px 15px;

}

.sticker1{

    left:-15px;
    top:18px;

}

.sticker2{

    right:-12px;
    top:120px;

}

.sticker3{

    left:-8px;
    bottom:25px;

}

.circle{

    width:60px;
    height:60px;

}

.circle img{

    width:34px;
    height:34px;

}

.circle1{

    right:-14px;
    top:50px;

}

.circle2{

    left:-14px;
    bottom:110px;

}

.circle3{

    right:35px;
    bottom:-12px;

}

.floating-wa{

    width:64px;
    height:64px;

    right:18px;
    bottom:18px;

}

.floating-wa img{

    width:34px;

}

}


/*====================================================
=            SMALL PHONE
====================================================*/

@media (max-width:576px){

.container{

    width:calc(100% - 24px);

}

.hero{

    padding-top:95px;
    padding-bottom:60px;

}

.logo-box{

    width:44px;
    height:44px;

    border-radius:14px;

    font-size:18px;

}

.logo-text{

    font-size:18px;

}

.logo-text span{

    font-size:12px;

}

.hero-left h1{

    font-size:34px;

}

.hero-left p{

    font-size:15px;

}

.badge{

    font-size:12px;
    padding:9px 15px;

}

.hero-list{

    margin-bottom:28px;

}

.hero-list .item{

    gap:12px;

}

.hero-list span{

    font-size:15px;

}

.check{

    width:30px;
    height:30px;

    font-size:15px;

}

.feature{

    width:100%;
    justify-content:center;

    display:flex;

}

.hero-button a{

    max-width:100%;
    height:58px;

    font-size:16px;

}

.hero-card{

    border-radius:24px;
    padding:10px;

}

.hero-card::before{

    border-radius:24px;

}

.hero-card img{

    border-radius:18px;

}

.sticker{

    display:none;

}

.circle{

    display:none;

}

}

/*======================================
SCROLL EFFECT
======================================*/

.scroll-element{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.show-element{

    opacity:1;

    transform:none;

}


/*======================================
MOBILE MENU
======================================*/

@media(max-width:991px){

.menu{

    position:fixed;

    top:78px;

    left:-100%;

    width:100%;

    background:#0b0b0b;

    flex-direction:column;

    padding:30px;

    gap:24px;

    transition:.35s;

}

.menu.show{

    left:0;

}

.menu a{

    font-size:18px;

}

}


/*======================================
INSTAGRAM
======================================*/

.instagram-section{

    padding:120px 0;

    background:#111;

    overflow:hidden;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.mini-badge{

    display:inline-block;

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

    border-radius:100px;

    padding:10px 22px;

    color:#bbb;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:26px;

}

.section-title h2{

    font-size:58px;

    font-weight:900;

    margin-bottom:20px;

}

.section-title h2 span{

    background:#FFD33D;

    color:#000;

    padding:2px 10px;

}

.section-title p{

    color:#a5a5a5;

    font-size:20px;

}

.instagram-slider{

    position:relative;

}

.slider-track{

    display:flex;

    gap:26px;

    width:max-content;

    animation:sliderMove 35s linear infinite;

}

.slider-track img{

    width:345px;

    border-radius:18px;

    flex-shrink:0;

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

}

.fade-left{

    position:absolute;

    left:0;

    top:0;

    width:140px;

    height:100%;

    z-index:10;

    background:linear-gradient(to right,#111,transparent);

}

.fade-right{

    position:absolute;

    right:0;

    top:0;

    width:140px;

    height:100%;

    z-index:10;

    background:linear-gradient(to left,#111,transparent);

}

@keyframes sliderMove{

0%{

transform:translateX(0);

}

100%{

transform:translateX(-50%);

}

}

@media(max-width:768px){

.instagram-section{

padding:80px 0;

}

.section-title h2{

font-size:38px;

}

.section-title p{

font-size:16px;

}

.slider-track img{

width:260px;

}

.fade-left,.fade-right{

width:60px;

}

}

/*==================================================
=              DULU VS SEKARANG
==================================================*/

.compare-section{

    background:#090909;

    padding:120px 0;

    position:relative;

    overflow:hidden;

}

.compare-heading{

    max-width:980px;

    margin:0 auto 70px;

    text-align:center;

}

.compare-heading h2{

    font-size:62px;

    line-height:1.08;

    font-weight:900;

    letter-spacing:-2px;

    color:#fff;

}

.compare-heading span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 12px;

    line-height:1.1;

}

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

.compare-grid{

    display:grid;

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

    gap:26px;

    margin-bottom:55px;

}

/*==============================
CARD
==============================*/

.compare-card{

    border-radius:24px;

    padding:34px;

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

    background:#0d0d0d;

    transition:.35s;

}

.compare-card:hover{

    transform:translateY(-8px);

}

.old-card{

    background:#0b0b0b;

}

.new-card{

    background:linear-gradient(180deg,#19160c,#101010);

    border-top:4px solid #FFD33D;

}

/*==============================
TITLE
==============================*/

.compare-card h3{

    font-size:22px;

    margin-bottom:28px;

    color:#fff;

    font-weight:800;

}

/*==============================
LIST
==============================*/

.compare-card ul{

    list-style:none;

}

.compare-card li{

    display:flex;

    align-items:flex-start;

    gap:16px;

    padding:18px 0;

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

}

.compare-card li:last-child{

    border:none;

}

.compare-card li span:last-child{

    color:#f0f0f0;

    line-height:1.8;

    font-size:17px;

}

/*==============================
ICON
==============================*/

.icon{

    width:28px;

    height:28px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:900;

    flex-shrink:0;

    font-size:15px;

}

.icon.gray{

    background:#2a2a2a;

    color:#d4d4d4;

}

.icon.yellow{

    background:#FFD33D;

    color:#000;

}

/*==============================
BUTTON
==============================*/

.compare-action{

    text-align:center;

}

.compare-action a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    min-width:250px;

    height:66px;

    border-radius:999px;

    background:linear-gradient(180deg,#FFE36A,#FFD33D);

    color:#000;

    font-weight:800;

    font-size:18px;

    transition:.35s;

    box-shadow:0 18px 35px rgba(255,211,61,.30);

}

.compare-action a:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 45px rgba(255,211,61,.40);

}

.compare-action span{

    font-size:24px;

}

/*==================================================
=            COMPARE MOBILE
==================================================*/

@media (max-width:991px){

.compare-section{

    padding:90px 0;

}

.compare-heading{

    margin-bottom:45px;

}

.compare-heading h2{

    font-size:46px;

    line-height:1.15;

    letter-spacing:-1px;

}

.compare-heading span{

    padding:2px 10px;

}

.compare-grid{

    grid-template-columns:1fr;

    gap:24px;

}

.compare-card{

    padding:28px;

    border-radius:22px;

}

.compare-card h3{

    font-size:26px;

    line-height:1.3;

}

.compare-card li{

    padding:18px 0;

}

.compare-card li span:last-child{

    font-size:17px;

    line-height:1.7;

}

.compare-action{

    margin-top:20px;

}

.compare-action a{

    width:100%;

    max-width:360px;

    height:62px;

    font-size:17px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.compare-section{

    padding:70px 0;

}

.compare-heading{

    margin-bottom:34px;

}

.compare-heading h2{

    font-size:28px;

    line-height:1.18;

    letter-spacing:-0.5px;

}

.compare-heading span{

    display:inline;

    padding:2px 6px;

}

.compare-grid{

    gap:18px;

}

.compare-card{

    padding:18px;

    border-radius:18px;

}

.compare-card h3{

    font-size:18px;

    margin-bottom:16px;

}

.compare-card li{

    gap:12px;

    padding:15px 0;

}

.compare-card li span:last-child{

    font-size:15px;

    line-height:1.6;

}

.icon{

    width:24px;

    height:24px;

    font-size:13px;

}

.compare-action{

    margin-top:26px;

}

.compare-action a{

    width:100%;

    max-width:260px;

    height:56px;

    font-size:16px;

}

}

/*==========================================
COMPARE ANIMATION
==========================================*/

.compare-card{

    transform-style:preserve-3d;

    will-change:transform;

}

.compare-show{

    animation:compareFade .8s ease both;

}

@keyframes compareFade{

0%{

opacity:0;

transform:translateY(40px);

}

100%{

opacity:1;

transform:none;

}

}


/*==========================================
BUTTON RIPPLE
==========================================*/

.compare-action a{

    position:relative;

    overflow:hidden;

}

.compare-action a::before{

    content:"";

    position:absolute;

    left:var(--x);

    top:var(--y);

    width:0;

    height:0;

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

    border-radius:50%;

    transform:translate(-50%,-50%);

    transition:.45s;

}

.compare-action a:hover::before{

    width:320px;

    height:320px;

}

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

.business-section{

    padding:120px 0;

    background:#0b0b0b;

    position:relative;

    overflow:hidden;

}

.business-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:70px;

    align-items:center;

}

.business-left h2{

    font-size:62px;

    line-height:1.08;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:30px;

}

.business-left h2 span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 12px;

}

.business-desc{

    color:#9d9d9d;

    font-size:19px;

    line-height:1.9;

    max-width:720px;

    margin-bottom:34px;

}

.business-left h3{

    font-size:34px;

    font-weight:800;

    margin-bottom:30px;

}

.business-highlight{

    display:flex;

    gap:24px;

    align-items:flex-start;

    margin-bottom:45px;

}

.business-highlight .line{

    width:5px;

    min-width:5px;

    height:92px;

    background:#FFD33D;

    border-radius:20px;

}

.business-highlight strong{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:4px 12px;

    font-size:44px;

    font-weight:900;

    margin-bottom:8px;

}

.business-highlight div:last-child{

    font-size:44px;

    font-weight:800;

    line-height:1.15;

}

.business-list{

    display:grid;

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

    gap:18px 40px;

    margin-bottom:42px;

}

.business-list div{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:18px;

    color:#f2f2f2;

}

.business-list span{

    width:34px;

    height:34px;

    border-radius:50%;

    background:#FFD33D;

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:900;

    flex-shrink:0;

}

.business-text{

    font-size:22px;

    color:#ececec;

    line-height:1.8;

    margin-bottom:28px;

}

.business-text strong{

    color:#fff;

}

.business-text2{

    color:#8c8c8c;

    font-size:19px;

    line-height:1.9;

}

.business-right{

    display:flex;

    justify-content:center;

}

.business-image{

    position:relative;

    border-radius:28px;

    background:#fff;

    padding:10px;

    overflow:hidden;

    box-shadow:0 40px 90px rgba(0,0,0,.45);

}

.business-image::before{

    content:"";

    position:absolute;

    top:16px;

    left:16px;

    width:100%;

    height:100%;

    background:#FFD33D;

    border-radius:28px;

    z-index:-1;

}

.business-image img{

    width:100%;

    max-width:470px;

    border-radius:20px;

    display:block;

    aspect-ratio:4/5;

    object-fit:cover;

    transition:.45s;

}

.business-image:hover img{

    transform:scale(1.03);

}

/*==================================================
=            BUSINESS MOBILE
==================================================*/

@media (max-width:991px){

.business-section{

    padding:90px 0;

}

.business-grid{

    grid-template-columns:1fr;

    gap:50px;

}

.business-left{

    order:1;

}

.business-right{

    order:2;

}

.business-left h2{

    font-size:46px;

    line-height:1.12;

    letter-spacing:-1px;

}

.business-desc{

    font-size:17px;

    line-height:1.8;

}

.business-left h3{

    font-size:30px;

}

.business-highlight{

    gap:18px;

}

.business-highlight .line{

    height:78px;

}

.business-highlight strong{

    font-size:34px;

}

.business-highlight div:last-child{

    font-size:34px;

}

.business-list{

    grid-template-columns:1fr;

    gap:16px;

}

.business-list div{

    font-size:17px;

}

.business-text{

    font-size:19px;

}

.business-text2{

    font-size:17px;

}

.business-image{

    max-width:470px;

    margin:auto;

}

}


/*==================================================
=            SMALL PHONE
==================================================*/

@media (max-width:576px){

.business-section{

    padding:70px 0;

}

.business-left h2{

    font-size:30px;

    line-height:1.15;

    letter-spacing:-.5px;

}

.business-left h2 span{

    display:inline-block;

    padding:2px 8px;

}

.business-desc{

    font-size:15px;

    line-height:1.9;

    margin-bottom:24px;

}

.business-left h3{

    font-size:18px;

    margin-bottom:18px;

}

.business-highlight{

    margin-bottom:28px;

    gap:14px;

}

.business-highlight .line{

    width:4px;

    min-width:4px;

    height:58px;

}

.business-highlight strong{

    font-size:20px;

    padding:2px 8px;

    margin-bottom:2px;

}

.business-highlight div:last-child{

    font-size:20px;

    line-height:1.25;

}

.business-list{

    margin-bottom:26px;

}

.business-list div{

    font-size:15px;

    gap:12px;

}

.business-list span{

    width:28px;

    height:28px;

    font-size:14px;

}

.business-text{

    font-size:15px;

    line-height:1.8;

    margin-bottom:18px;

}

.business-text2{

    font-size:15px;

    line-height:1.8;

}

.business-image{

    margin-top:10px;

    padding:8px;

    border-radius:22px;

}

.business-image::before{

    top:12px;

    left:12px;

    border-radius:22px;

}

.business-image img{

    border-radius:16px;

    max-width:100%;

}

}


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

.target-section{

    padding:120px 0;

    background:#090909;

    position:relative;

}

.target-title{

    text-align:center;

    margin-bottom:70px;

}

.target-title h2{

    font-size:64px;

    font-weight:900;

    line-height:1.1;

    letter-spacing:-2px;

}

.target-title span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 14px;

}

.target-grid{

    display:grid;

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

    gap:18px;

    margin-bottom:65px;

}

.target-item{

    height:88px;

    border-radius:18px;

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

    background:#0d0d0d;

    display:flex;

    align-items:center;

    padding:0 22px;

    gap:14px;

    color:#fff;

    font-size:20px;

    font-weight:600;

    transition:.35s;

}

.target-item:hover{

    border-color:#FFD33D;

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(255,211,61,.12);

}

.target-item span{

    width:28px;

    height:28px;

    min-width:28px;

    border-radius:50%;

    background:#FFD33D;

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:900;

    font-size:15px;

}

.target-bottom{

    text-align:center;

    font-size:30px;

    font-weight:700;

    color:#fff;

    margin-bottom:46px;

    line-height:1.6;

}

.target-bottom span{

    background:#FFD33D;

    color:#000;

    padding:3px 10px;

}

.target-button{

    display:flex;

    justify-content:center;

}

.target-button a{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    width:285px;

    height:70px;

    border-radius:18px;

    background:linear-gradient(180deg,#FFE66E,#FFD33D);

    color:#000;

    font-size:20px;

    font-weight:800;

    transition:.35s;

    box-shadow:0 18px 40px rgba(255,211,61,.28);

}

.target-button a:hover{

    transform:translateY(-4px);

    box-shadow:0 24px 55px rgba(255,211,61,.40);

}

.target-button strong{

    font-size:24px;

}


/*==================================================
=            TARGET SECTION MOBILE
==================================================*/

@media (max-width:991px){

.target-section{

    padding:90px 0;

}

.target-title{

    margin-bottom:45px;

}

.target-title h2{

    font-size:48px;

    line-height:1.15;

    letter-spacing:-1px;

}

.target-grid{

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

    gap:16px;

    margin-bottom:45px;

}

.target-item{

    height:78px;

    padding:0 18px;

    font-size:17px;

    border-radius:16px;

}

.target-item span{

    width:26px;

    height:26px;

    min-width:26px;

    font-size:14px;

}

.target-bottom{

    font-size:24px;

    line-height:1.5;

    margin-bottom:38px;

}

.target-button a{

    width:260px;

    height:64px;

    font-size:18px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.target-section{

    padding:70px 0;

}

.target-title{

    margin-bottom:34px;

}

.target-title h2{

    font-size:30px;

    line-height:1.18;

    letter-spacing:-.5px;

}

.target-title span{

    display:inline-block;

    padding:2px 8px;

}

.target-grid{

    grid-template-columns:1fr;

    gap:14px;

    margin-bottom:34px;

}

.target-item{

    height:72px;

    padding:0 18px;

    font-size:16px;

    border-radius:14px;

}

.target-item span{

    width:24px;

    height:24px;

    min-width:24px;

    font-size:13px;

}

.target-bottom{

    font-size:18px;

    line-height:1.7;

    padding:0 10px;

    margin-bottom:30px;

}

.target-bottom span{

    display:inline;

    padding:2px 6px;

}

.target-button{

    justify-content:center;

}

.target-button a{

    width:240px;

    height:58px;

    font-size:16px;

    border-radius:16px;

}

.target-button strong{

    font-size:20px;

}

}

/*==================================================
=            SECTION 6 - PILAR
==================================================*/

.pillar-section{

    padding:120px 0;

    background:#090909;

    position:relative;

    overflow:hidden;

}

.pillar-heading{

    max-width:900px;

    margin:0 auto 60px;

}

.pillar-heading h2{

    color:#fff;

    font-size:60px;

    line-height:1.08;

    font-weight:900;

    letter-spacing:-2px;

    margin-bottom:20px;

}

.pillar-heading span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 12px;

}

.pillar-heading p{

    color:#8d8d8d;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

}

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

.pillar-grid{

    display:grid;

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

    gap:22px;

    margin-top:70px;

    margin-bottom:70px;

}

/*==============================
CARD
==============================*/

.pillar-card{

    background:#0d0d0d;

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

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.pillar-card:hover{

    transform:translateY(-8px);

    border-color:#FFD33D;

}

.pillar-image{

    position:relative;

    overflow:hidden;

}

.pillar-image img{

    width:100%;

    display:block;

    aspect-ratio:16/10;

    object-fit:cover;

    transition:.45s;

}

.pillar-card:hover img{

    transform:scale(1.04);

}

.pillar-badge{

    position:absolute;

    top:16px;

    left:16px;

    background:#FFD33D;

    color:#000;

    font-size:13px;

    font-weight:800;

    padding:9px 16px;

    border-radius:999px;

}

.pillar-body{

    padding:26px;

}

.pillar-icon{

    font-size:30px;

    margin-bottom:14px;

}

.pillar-body h3{

    color:#fff;

    font-size:38px;

    font-weight:900;

    margin-bottom:18px;

}

.pillar-body p{

    color:#9d9d9d;

    font-size:17px;

    line-height:1.9;

}

/*==============================
PRICE BOX
==============================*/

.price-box{

    position:relative;

    background:#FFD54A;

    border-radius:22px;

    padding:55px;

    text-align:center;

    overflow:visible;

}

.price-box::after{

    content:"";

    position:absolute;

    top:14px;

    right:-14px;

    width:100%;

    height:100%;

    background:#efefef;

    border-radius:22px;

    z-index:-1;

}

.price-top{

    font-size:13px;

    letter-spacing:3px;

    font-weight:800;

    color:#000;

    margin-bottom:14px;

}

.price-old{

    color:#5a4b00;

    text-decoration:line-through;

    font-size:30px;

    font-weight:700;

    margin-bottom:14px;

}

.price-info{

    color:#000;

    font-size:18px;

    margin-bottom:22px;

}

.price-main{

    color:#000;

    font-weight:900;

    line-height:1;

    margin-bottom:18px;

}

.price-main{

    font-size:72px;

}

.price-main span{

    display:block;

    font-size:108px;

}

.price-small{

    color:#000;

    font-size:20px;

    margin-bottom:36px;

}

.price-button{

    display:flex;

    justify-content:center;

}

.price-button a{

    width:360px;

    height:74px;

    border-radius:16px;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    color:#D8A800;

    font-size:22px;

    font-weight:900;

    box-shadow:0 8px 0 rgba(0,0,0,.28);

    transition:.35s;

}

.price-button a:hover{

    transform:translateY(-4px);

}

.price-button strong{

    font-size:26px;

}

/*==================================================
=            SECTION 6 MOBILE
==================================================*/

@media (max-width:991px){

.pillar-section{

    padding:90px 0;

}

.pillar-heading{

    margin-bottom:45px;

}

.pillar-heading h2{

    font-size:46px;

    line-height:1.15;

    letter-spacing:-1px;

}

.pillar-heading p{

    font-size:17px;

    line-height:1.8;

}

.pillar-grid{

    grid-template-columns:1fr;

    gap:22px;

    margin-top:45px;

    margin-bottom:50px;

}

.pillar-card{

    max-width:520px;

    width:100%;

    margin:auto;

}

.pillar-body{

    padding:24px;

}

.pillar-body h3{

    font-size:30px;

}

.pillar-body p{

    font-size:16px;

}

.price-box{

    padding:45px 30px;

}

.price-box::after{

    right:-10px;

    top:10px;

}

.price-top{

    font-size:12px;

}

.price-old{

    font-size:24px;

}

.price-info{

    font-size:16px;

    line-height:1.7;

}

.price-main{

    font-size:54px;

}

.price-main span{

    font-size:84px;

}

.price-small{

    font-size:18px;

}

.price-button a{

    width:320px;

    height:66px;

    font-size:19px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.pillar-section{

    padding:70px 0;

}

.pillar-heading{

    margin-bottom:34px;

}

.pillar-heading h2{

    font-size:30px;

    line-height:1.18;

    letter-spacing:-.5px;

}

.pillar-heading span{

    display:inline-block;

    padding:2px 8px;

}

.pillar-heading p{

    font-size:15px;

    line-height:1.8;

}

.pillar-grid{

    gap:18px;

    margin-top:34px;

    margin-bottom:38px;

}

.pillar-card{

    border-radius:18px;

}

.pillar-image img{

    aspect-ratio:16/10;

}

.pillar-badge{

    top:12px;

    left:12px;

    padding:8px 14px;

    font-size:12px;

}

.pillar-body{

    padding:18px;

}

.pillar-icon{

    font-size:24px;

    margin-bottom:10px;

}

.pillar-body h3{

    font-size:18px;

    margin-bottom:12px;

}

.pillar-body p{

    font-size:15px;

    line-height:1.8;

}

.price-box{

    padding:34px 18px;

    border-radius:18px;

}

.price-box::after{

    top:8px;

    right:-8px;

    border-radius:18px;

}

.price-top{

    font-size:11px;

    letter-spacing:2px;

}

.price-old{

    font-size:18px;

    margin-bottom:10px;

}

.price-info{

    font-size:14px;

    line-height:1.6;

    margin-bottom:14px;

}

.price-main{

    font-size:34px;

    margin-bottom:10px;

}

.price-main span{

    font-size:64px;

}

.price-small{

    font-size:16px;

    margin-bottom:24px;

}

.price-button{

    justify-content:center;

}

.price-button a{

    width:100%;

    max-width:250px;

    height:58px;

    font-size:16px;

    border-radius:14px;

}

.price-button strong{

    font-size:20px;

}

}

/*==================================================
=            SECTION 7 - FOUNDER
==================================================*/

.founder-section{

    padding:120px 0;

    background:#0b0b0b;

    position:relative;

    overflow:hidden;

}

.founder-grid{

    display:grid;

    grid-template-columns:440px 1fr;

    gap:70px;

    align-items:start;

}

/*==============================
LEFT
==============================*/

.founder-photo{

    position:relative;

    background:#fff;

    border-radius:24px;

    padding:8px;

    overflow:hidden;

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

}

.founder-photo::before{

    content:"";

    position:absolute;

    left:18px;

    top:18px;

    width:100%;

    height:100%;

    background:#FFD33D;

    border-radius:24px;

    z-index:-1;

}

.founder-photo img{

    width:100%;

    display:block;

    border-radius:18px;

    aspect-ratio:4/5;

    object-fit:cover;

    transition:.45s;

}

.founder-photo:hover img{

    transform:scale(1.03);

}

/*==============================
VERIFIED
==============================*/

.verified-badge{

    position:absolute;

    left:18px;

    bottom:18px;

    background:#FFD33D;

    color:#000;

    height:42px;

    border-radius:999px;

    padding:0 18px;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:14px;

    font-weight:800;

}

.verified-badge span{

    width:22px;

    height:22px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

}

/*==============================
NAME CARD
==============================*/

.founder-card{

    margin-top:28px;

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

    border-radius:22px;

    background:#101010;

    padding:26px;

}

.mini-label{

    display:inline-flex;

    align-items:center;

    background:#FFD33D;

    color:#000;

    padding:8px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:800;

    margin-bottom:18px;

}

.founder-card h2{

    color:#fff;

    font-size:52px;

    line-height:1.05;

    font-weight:900;

    margin-bottom:14px;

}

.founder-card p{

    color:#979797;

    font-size:16px;

    line-height:1.8;

}

/*==============================
RIGHT
==============================*/

.founder-right blockquote{

    position:relative;

    padding-left:28px;

    color:#fff;

    font-size:40px;

    font-weight:800;

    line-height:1.45;

    margin-bottom:36px;

    font-style:italic;

}

.founder-right blockquote::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    border-radius:10px;

    background:#FFD33D;

}

.founder-right p{

    color:#A8A8A8;

    font-size:18px;

    line-height:2;

    margin-bottom:24px;

}

/*==============================
STAT
==============================*/

.founder-stats{

    display:grid;

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

    gap:18px;

    margin-top:45px;

}

.stat-box{

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

    border-left:5px solid #FFD33D;

    border-radius:18px;

    padding:28px;

    background:#111;

    transition:.35s;

}

.stat-box:hover{

    transform:translateY(-6px);

    border-left-width:8px;

}

.stat-box h3{

    color:#FFD33D;

    font-size:54px;

    line-height:1;

    font-weight:900;

    margin-bottom:10px;

}

.stat-box span{

    color:#9b9b9b;

    font-size:16px;

}

/*==================================================
=            SECTION 7 MOBILE
==================================================*/

@media (max-width:991px){

.founder-section{

    padding:90px 0;

}

.founder-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.founder-left{

    max-width:520px;

    width:100%;

    margin:auto;

}

.founder-right{

    order:2;

}

.founder-card{

    margin-top:24px;

}

.founder-card h2{

    font-size:42px;

}

.founder-card p{

    font-size:16px;

}

.founder-right blockquote{

    font-size:32px;

    line-height:1.45;

}

.founder-right p{

    font-size:17px;

    line-height:1.9;

}

.founder-stats{

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

}

.stat-box{

    padding:22px;

}

.stat-box h3{

    font-size:40px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.founder-section{

    padding:70px 0;

}

.founder-grid{

    gap:34px;

}

.founder-photo{

    border-radius:20px;

    padding:6px;

}

.founder-photo::before{

    left:10px;

    top:10px;

    border-radius:20px;

}

.founder-photo img{

    border-radius:16px;

}

.verified-badge{

    left:12px;

    bottom:12px;

    height:34px;

    padding:0 12px;

    font-size:11px;

    gap:8px;

}

.verified-badge span{

    width:18px;

    height:18px;

    font-size:10px;

}

.founder-card{

    padding:18px;

    border-radius:18px;

}

.mini-label{

    font-size:11px;

    padding:7px 12px;

    margin-bottom:14px;

}

.founder-card h2{

    font-size:26px;

    line-height:1.15;

    margin-bottom:10px;

}

.founder-card p{

    font-size:14px;

    line-height:1.7;

}

.founder-right blockquote{

    font-size:18px;

    line-height:1.65;

    padding-left:18px;

    margin-bottom:24px;

}

.founder-right blockquote::before{

    width:4px;

}

.founder-right p{

    font-size:15px;

    line-height:1.9;

    margin-bottom:18px;

}

.founder-stats{

    grid-template-columns:1fr;

    gap:14px;

    margin-top:28px;

}

.stat-box{

    padding:18px;

    border-radius:16px;

}

.stat-box h3{

    font-size:24px;

    margin-bottom:8px;

}

.stat-box span{

    font-size:14px;

}

}

/*==================================================
=            SECTION 8 - MODULE
==================================================*/

.module-section{

    padding:120px 0;

    background:#0b0b0b;

    position:relative;

    overflow:hidden;

}

/*==============================
TITLE
==============================*/

.module-heading{

    margin-bottom:60px;

}

.module-heading h2{

    font-size:60px;

    line-height:1.08;

    font-weight:900;

    letter-spacing:-2px;

    color:#fff;

}

.module-heading span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 12px;

}

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

.module-grid{

    display:grid;

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

    gap:18px;

}

/*==============================
CARD
==============================*/

.module-card{

    position:relative;

    background:#0f0f0f;

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

    border-radius:22px;

    padding:24px;

    transition:.35s;

    overflow:hidden;

}

.module-card:hover{

    transform:translateY(-8px);

    border-color:#FFD33D;

    box-shadow:0 22px 60px rgba(0,0,0,.35);

}

/*==============================
FEATURED
==============================*/

.module-card.featured{

    border:2px solid #FFD33D;

}

.module-card.featured::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:5px;

    height:100%;

    background:#FFD33D;

}

/*==============================
TOP
==============================*/

.module-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:20px;

    margin-bottom:18px;

}

.module-no{

    color:#6f6f6f;

    font-size:13px;

    letter-spacing:2px;

    font-weight:800;

    margin-bottom:8px;

}

.module-top h3{

    font-size:34px;

    line-height:1.2;

    color:#fff;

    font-weight:800;

}

.module-price{

    background:#FFD33D;

    color:#000;

    min-width:120px;

    height:38px;

    border-radius:999px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:15px;

    font-weight:900;

    padding:0 16px;

    flex-shrink:0;

}

/*==============================
DESCRIPTION
==============================*/

.module-desc{

    color:#9d9d9d;

    font-size:17px;

    line-height:1.9;

    margin-bottom:20px;

}

/*==============================
LIST
==============================*/

.module-card ul{

    list-style:none;

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

    padding-top:18px;

}

.module-card li{

    display:flex;

    align-items:center;

    gap:10px;

    color:#f2f2f2;

    font-size:16px;

    margin-bottom:12px;

}

.module-card li:last-child{

    margin-bottom:0;

}

.module-card li::before{

    content:"✓";

    width:18px;

    height:18px;

    min-width:18px;

    border-radius:50%;

    background:#FFD33D;

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:11px;

    font-weight:900;

}

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

.module-footer{

    margin-top:70px;

    text-align:center;

}

.module-footer h3{

    color:#fff;

    font-size:42px;

    line-height:1.45;

    font-weight:800;

    max-width:900px;

    margin:auto auto 38px;

}

.module-footer strong{

    color:#fff;

}

.module-footer a{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:16px;

    width:290px;

    height:68px;

    background:#FFD33D;

    color:#000;

    border-radius:18px;

    font-size:20px;

    font-weight:900;

    transition:.35s;

    box-shadow:0 14px 35px rgba(255,211,61,.25);

}

.module-footer a:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(255,211,61,.35);

}

.module-footer span{

    font-size:24px;

}

/*==================================================
=            SECTION 8 MOBILE
==================================================*/

@media (max-width:991px){

.module-section{

    padding:90px 0;

}

.module-heading{

    margin-bottom:42px;

}

.module-heading h2{

    font-size:46px;

    line-height:1.15;

    letter-spacing:-1px;

}

.module-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.module-card{

    max-width:620px;

    width:100%;

    margin:auto;

}

.module-top h3{

    font-size:28px;

}

.module-price{

    min-width:110px;

    height:36px;

    font-size:14px;

}

.module-desc{

    font-size:16px;

}

.module-card li{

    font-size:15px;

}

.module-footer{

    margin-top:55px;

}

.module-footer h3{

    font-size:32px;

}

.module-footer a{

    width:280px;

    height:64px;

    font-size:18px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.module-section{

    padding:70px 0;

}

.module-heading{

    margin-bottom:34px;

}

.module-heading h2{

    font-size:30px;

    line-height:1.15;

    letter-spacing:-.5px;

}

.module-heading span{

    display:inline-block;

    padding:2px 8px;

}

.module-grid{

    gap:18px;

}

.module-card{

    padding:18px;

    border-radius:18px;

}

.module-top{

    gap:10px;

    align-items:flex-start;

}

.module-top h3{

    font-size:17px;

    line-height:1.35;

}

.module-no{

    font-size:11px;

    letter-spacing:2px;

    margin-bottom:6px;

}

.module-price{

    min-width:92px;

    height:30px;

    padding:0 10px;

    font-size:12px;

    border-radius:999px;

}

.module-desc{

    font-size:15px;

    line-height:1.8;

    margin-bottom:16px;

}

.module-card ul{

    padding-top:14px;

}

.module-card li{

    font-size:14px;

    line-height:1.6;

    margin-bottom:10px;

}

.module-card li::before{

    width:16px;

    height:16px;

    min-width:16px;

    font-size:10px;

}

.module-footer{

    margin-top:42px;

    padding:0 10px;

}

.module-footer h3{

    font-size:18px;

    line-height:1.7;

    margin-bottom:26px;

}

.module-footer a{

    width:100%;

    max-width:250px;

    height:56px;

    border-radius:16px;

    font-size:16px;

}

.module-footer span{

    font-size:20px;

}

}

/*==================================================
=            SECTION 9 - TESTIMONIAL
==================================================*/

.testimonial-section{

    padding:120px 0;

    background:#0b0b0b;

    position:relative;

    overflow:hidden;

}

/*==============================
TITLE
==============================*/

.testimonial-heading{

    text-align:center;

    margin-bottom:55px;

}

.testimonial-heading h2{

    font-size:62px;

    font-weight:900;

    line-height:1.08;

    letter-spacing:-2px;

    color:#fff;

}

.testimonial-heading span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 12px;

}

/*==============================
SLIDER
==============================*/

.testimonial-slider{

    max-width:760px;

    margin:auto;

    overflow:hidden;

}

.testimonial-track{

    display:flex;

    transition:transform .55s cubic-bezier(.22,.61,.36,1);

}

.testimonial-card{

    min-width:100%;

    background:#0d0d0d;

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

    border-radius:24px;

    padding:34px;

    transition:.35s;

}

.testimonial-card:hover{

    border-color:#FFD33D;

}

/*==============================
STAR
==============================*/

.testimonial-stars{

    color:#FFD33D;

    font-size:28px;

    letter-spacing:4px;

    margin-bottom:24px;

}

/*==============================
TEXT
==============================*/

.testimonial-card blockquote{

    color:#fff;

    font-size:36px;

    line-height:1.55;

    font-weight:700;

    margin-bottom:34px;

}

.testimonial-user{

    display:flex;

    align-items:center;

    gap:18px;

    padding-top:28px;

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

}

.testimonial-avatar{

    width:52px;

    height:52px;

    border-radius:50%;

    background:#FFD33D;

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:900;

    border:3px solid #fff;

}

.testimonial-user h4{

    color:#fff;

    font-size:22px;

    margin-bottom:4px;

}

.testimonial-user span{

    color:#8d8d8d;

    font-size:16px;

}

/*==============================
NAVIGATION
==============================*/

.testimonial-nav{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:26px;

    margin-top:38px;

}

.testimonial-prev,
.testimonial-next{

    width:54px;

    height:54px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.10);

    background:#0d0d0d;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    transition:.35s;

}

.testimonial-prev:hover,
.testimonial-next:hover{

    background:#FFD33D;

    color:#000;

    border-color:#FFD33D;

}

.testimonial-dots{

    display:flex;

    gap:12px;

}

.testimonial-dots span{

    width:10px;

    height:10px;

    border-radius:50%;

    background:#3d3d3d;

    transition:.35s;

}

.testimonial-dots span.active{

    width:28px;

    border-radius:999px;

    background:#FFD33D;

}

/*==================================================
=            SECTION 9 MOBILE
==================================================*/

@media (max-width:991px){

.testimonial-section{

    padding:90px 0;

}

.testimonial-heading{

    margin-bottom:42px;

}

.testimonial-heading h2{

    font-size:46px;

    line-height:1.15;

    letter-spacing:-1px;

}

.testimonial-slider{

    max-width:680px;

}

.testimonial-card{

    padding:30px;

}

.testimonial-stars{

    font-size:24px;

}

.testimonial-card blockquote{

    font-size:28px;

    line-height:1.55;

}

.testimonial-user h4{

    font-size:20px;

}

.testimonial-nav{

    margin-top:34px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.testimonial-section{

    padding:70px 0;

}

.testimonial-heading{

    margin-bottom:34px;

}

.testimonial-heading h2{

    font-size:30px;

    line-height:1.18;

    letter-spacing:-.5px;

}

.testimonial-heading span{

    display:inline-block;

    padding:2px 8px;

}

.testimonial-slider{

    width:100%;

}

.testimonial-card{

    padding:24px;

    border-radius:18px;

}

.testimonial-stars{

    font-size:18px;

    letter-spacing:2px;

    margin-bottom:18px;

}

.testimonial-card blockquote{

    font-size:17px;

    line-height:1.8;

    margin-bottom:22px;

}

.testimonial-user{

    gap:12px;

    padding-top:18px;

}

.testimonial-avatar{

    width:42px;

    height:42px;

    font-size:18px;

    border-width:2px;

}

.testimonial-user h4{

    font-size:16px;

    margin-bottom:2px;

}

.testimonial-user span{

    font-size:13px;

}

.testimonial-nav{

    gap:16px;

    margin-top:28px;

}

.testimonial-prev,
.testimonial-next{

    width:42px;

    height:42px;

    font-size:18px;

}

.testimonial-dots{

    gap:8px;

}

.testimonial-dots span{

    width:8px;

    height:8px;

}

.testimonial-dots span.active{

    width:24px;

}

}

/*==================================================
=            SECTION 10 - FAQ
==================================================*/

.faq-section{

    padding:120px 0;

    background:#0b0b0b;

    position:relative;

}

.faq-heading{

    text-align:center;

    margin-bottom:60px;

}

.faq-heading h2{

    color:#fff;

    font-size:60px;

    line-height:1.08;

    font-weight:900;

    letter-spacing:-2px;

}

.faq-heading span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 14px;

}

.faq-list{

    max-width:1000px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:18px;

}

/*==============================
ITEM
==============================*/

.faq-item{

    background:#0f0f0f;

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

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

}

.faq-item.active{

    border-color:#FFD33D;

}

.faq-item:hover{

    border-color:#FFD33D;

}

/*==============================
QUESTION
==============================*/

.faq-question{

    width:100%;

    background:none;

    border:none;

    color:#fff;

    cursor:pointer;

    padding:28px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    text-align:left;

    font-size:32px;

    font-weight:800;

    gap:20px;

}

.faq-question span{

    flex:1;

}

/*==============================
ICON
==============================*/

.faq-icon{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#FFD33D;

    color:#000;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:900;

    flex-shrink:0;

    transition:.3s;

}

/*==============================
ANSWER
==============================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    color:#9d9d9d;

    font-size:18px;

    line-height:2;

    padding:26px 30px 34px;

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

}

/*==============================
ACTIVE
==============================*/

.faq-item.active .faq-answer{

    max-height:400px;

}

.faq-item.active .faq-icon{

    transform:rotate(180deg);

}

.faq-item.active .faq-question{

    padding-bottom:22px;

}

/*==============================
HOVER
==============================*/

.faq-item{

    transition:

    border-color .35s,

    transform .35s,

    box-shadow .35s;

}

.faq-item:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 45px rgba(0,0,0,.28);

}

.faq-icon{

    transition:

    transform .35s,

    background .35s;

}

/*==================================================
=            SECTION 10 MOBILE
==================================================*/

@media (max-width:991px){

.faq-section{

    padding:90px 0;

}

.faq-heading{

    margin-bottom:45px;

}

.faq-heading h2{

    font-size:46px;

    line-height:1.15;

    letter-spacing:-1px;

}

.faq-list{

    max-width:700px;

}

.faq-question{

    padding:24px 26px;

    font-size:26px;

}

.faq-answer p{

    font-size:17px;

    line-height:1.9;

    padding:22px 26px 30px;

}

.faq-icon{

    width:40px;

    height:40px;

    font-size:24px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.faq-section{

    padding:70px 0;

}

.faq-heading{

    margin-bottom:34px;

}

.faq-heading h2{

    font-size:30px;

    line-height:1.18;

    letter-spacing:-.5px;

}

.faq-heading span{

    display:inline-block;

    padding:2px 8px;

}

.faq-list{

    gap:14px;

}

.faq-item{

    border-radius:18px;

}

.faq-question{

    padding:20px 18px;

    font-size:16px;

    line-height:1.55;

    gap:14px;

}

.faq-icon{

    width:34px;

    height:34px;

    min-width:34px;

    font-size:20px;

}

.faq-answer p{

    padding:18px;

    font-size:15px;

    line-height:1.9;

}

.faq-item.active .faq-question{

    padding-bottom:16px;

}

}

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

.footer{

    background:#0b0b0b;

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

    padding:35px 20px;

    text-align:center;

}

.footer p{

    color:#9a9a9a;

    font-size:16px;

}

.footer strong{

    color:#fff;

}

/*==================================================
FLOATING WHATSAPP
==================================================*/

.floating-whatsapp{

    position:fixed;

    right:22px;

    bottom:22px;

    width:90px;

    height:90px;

    border-radius:50%;

    background:#2ED15E;

    display:flex;

    justify-content:center;

    align-items:center;

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

    z-index:9999;

    transition:.3s;

}

.floating-whatsapp:hover{

    transform:scale(1.08);

}

.floating-whatsapp img{

    width:50px;

    height:50px;

}

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

.mobile-bottom-bar{

    display:none;

}

/*==================================================
PHONE
==================================================*/

@media (max-width:768px){

.footer{

    padding-bottom:110px;

}

.mobile-bottom-bar{

    position:fixed;

    left:0;

    bottom:0;

    width:100%;

    height:74px;

    background:#111;

    border-top:2px solid #FFD33D;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 12px;

    z-index:9998;

}

.mobile-price{

    display:flex;

    flex-direction:column;

}

.mobile-price strong{

    color:#FFD33D;

    font-size:22px;

    font-weight:900;

    line-height:1;

}

.mobile-price span{

    color:#cfcfcf;

    font-size:13px;

}

.mobile-register{

    background:#FFD33D;

    color:#000;

    width:150px;

    height:48px;

    border-radius:14px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    font-size:16px;

    font-weight:900;

}

.floating-whatsapp{

    width:60px;

    height:60px;

    right:12px;

    bottom:86px;

}

.floating-whatsapp img{

    width:52px;

    height:52px;

}

}

/*==================================================
=            SECTION 11 - CONTACT FORM
==================================================*/

.contact-section{

    padding:120px 0;

    background:#0b0b0b;

    position:relative;

    overflow:hidden;

}

.contact-card{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    background:#101010;

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

    border-radius:26px;

    padding:55px;

    position:relative;

}

.contact-card::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:26px;

    background:linear-gradient(
        135deg,
        rgba(255,211,61,.45),
        transparent 45%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}

/*==============================
LEFT
==============================*/

.contact-label{

    display:inline-flex;

    align-items:center;

    background:#FFD33D;

    color:#000;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:22px;

}

.contact-left h2{

    color:#fff;

    font-size:54px;

    line-height:1.08;

    font-weight:900;

    margin-bottom:22px;

}

.contact-left h2 span{

    display:inline-block;

    background:#FFD33D;

    color:#000;

    padding:2px 10px;

}

.contact-left p{

    color:#A5A5A5;

    font-size:18px;

    line-height:1.9;

    margin-bottom:36px;

}

.contact-feature{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.contact-feature div{

    background:#0d0d0d;

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

    border-radius:14px;

    padding:16px 18px;

    color:#fff;

    font-size:17px;

    transition:.35s;

}

.contact-feature div:hover{

    border-color:#FFD33D;

    transform:translateX(8px);

}

/*==============================
FORM
==============================*/

.form-grid{

    display:grid;

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

    gap:20px;

}

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    color:#fff;

    font-size:15px;

    font-weight:700;

    margin-bottom:10px;

}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    background:#090909;

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

    border-radius:14px;

    padding:16px 18px;

    color:#fff;

    font-size:16px;

    transition:.35s;

    outline:none;

}

.form-group textarea{

    resize:vertical;

    min-height:120px;

}

.form-group select{

    cursor:pointer;

}

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#777;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:#FFD33D;

    box-shadow:
        0 0 0 4px rgba(255,211,61,.12);

}

/*==============================
BUTTON
==============================*/

.contact-button{

    width:100%;

    height:66px;

    border:none;

    border-radius:18px;

    background:#FFD33D;

    color:#000;

    font-size:20px;

    font-weight:900;

    cursor:pointer;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:16px;

    transition:.35s;

    margin-top:12px;

    box-shadow:0 15px 35px rgba(255,211,61,.20);

}

.contact-button:hover{

    transform:translateY(-5px);

    box-shadow:0 22px 45px rgba(255,211,61,.30);

}

.contact-button span{

    font-size:24px;

}

/*==============================
PLACEHOLDER
==============================*/

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder{

    color:#666;

}

/*==================================================
=            SECTION 11 MOBILE
==================================================*/

@media (max-width:991px){

.contact-section{

    padding:90px 0;

}

.contact-card{

    grid-template-columns:1fr;

    gap:40px;

    padding:40px;

}

.contact-left{

    text-align:center;

}

.contact-left h2{

    font-size:42px;

}

.contact-left p{

    font-size:17px;

    max-width:650px;

    margin:0 auto 30px;

}

.contact-feature{

    max-width:500px;

    margin:auto;

}

.form-grid{

    grid-template-columns:1fr;

    gap:0;

}

.contact-button{

    height:62px;

    font-size:18px;

}

}


/*==================================================
=            PHONE
==================================================*/

@media (max-width:576px){

.contact-section{

    padding:70px 0;

}

.contact-card{

    padding:22px;

    border-radius:20px;

    gap:30px;

}

.contact-label{

    font-size:11px;

    padding:7px 12px;

    margin-bottom:18px;

}

.contact-left{

    text-align:left;

}

.contact-left h2{

    font-size:30px;

    line-height:1.18;

    margin-bottom:16px;

}

.contact-left h2 span{

    padding:2px 8px;

}

.contact-left p{

    font-size:15px;

    line-height:1.8;

    margin-bottom:22px;

}

.contact-feature{

    gap:10px;

}

.contact-feature div{

    padding:13px 14px;

    font-size:14px;

    border-radius:12px;

}

.form-group{

    margin-bottom:18px;

}

.form-group label{

    font-size:14px;

    margin-bottom:8px;

}

.form-group input,
.form-group textarea,
.form-group select{

    padding:14px 15px;

    font-size:15px;

    border-radius:12px;

}

.form-group textarea{

    min-height:100px;

}

.contact-button{

    height:56px;

    border-radius:14px;

    font-size:16px;

    gap:10px;

    margin-top:8px;

}

.contact-button span{

    font-size:20px;

}

}

.floating-phone{

position:fixed;

left:20px;
bottom:65px;

width:90px;
height:90px;

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

background:#0B6EF3;

border-radius:50%;

box-shadow:0 12px 30px rgba(0,0,0,.18);

z-index:999;

transition:.3s;

}

.floating-phone:hover{

transform:translateY(-5px);

}

.floating-phone img{

width:50px;
height:50px;

display:block;

}

@media(max-width:768px){

.floating-phone{

left:15px;
bottom:80px;

width:60px;
height:60px;

}

.floating-phone img{

width:47px;
height:47px;

}

}