/* ======================
    CSS VALIABLES
========================= */


:root {
    /* ======== Background ========= */

  --bg-body:linear-gradient(135deg, #fbfbfb, #6b5d63);
  --bg-surface:#ededed;

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

   --text-primary: #060101;
   --text-secondary: #888;
   --text-light: #fff;

   /* ======== BRAND ========= */

   --primary-color:#201baf;
   --accent-color:#829a44;

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

   --cta-gradient-start: #11998e;
   --cta-gradient-end: #38ef7d;

   /* ===== LAYOUT ===== */

   --container-width: 900px;

   /* ===== RADIUS ===== */

   --radius-md: 10px;
   --radius-full: 999px;

   /* ===== SHADOW ===== */

   --shadow-btn: 0 8px 20px rgba(255,106,0,.35);
   --shadow-btn-hover: 0 15px 35px rgba(255,106,0,.45);

   /* ===== TRANSITION ===== */

   --transition-fast: .3s;

}
*,*::before,
*::after{

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body{

    font-family:"Be Vietnam Pro",sans-serif;
    background: var(--bg-body);

}
.container{

    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-surface);

}
.hero__title{

    color: var(--primary-color);
    line-height: 1.5;

}
.btn{

    display: block;
    background: linear-gradient(135deg,
     var(--cta-gradient-start), var(--cta-gradient-end));  
    border-radius: var(--radius-full);
    color: white;
    padding: 16px 36px;
    font-weight: 700;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-btn);
    text-decoration: none;

}
/* BUtton CTA */
.btn:hover{

    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-hover);

}
.btn:active{

    transform: scale(.98);

}
.hero{

    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;

}
.video-card{
    background:#fff;
    padding:12px;
    border-radius:16px;
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.video-card video{
    width:100%;
    display:block;
    border-radius:10px;
}
.video-badge{
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 12px;

    background: var(--accent-color);
    color: #fff;
    border-radius: 999px;
    font-size: .875rem;
    font-weight: 600;
}
.story__video-title{

    margin-bottom: 2rem;
    color: var(--accent-color);
    line-height: 2;
    font-weight: 800;
    font-size: 1.625rem;
    text-transform: uppercase;

}
.story__content p{

    line-height: 3;
    font-size: 1.375rem;

}
.benefits .benefits__image  img{

    width: 100%;
    height: 100%;

}
.benefits .benefits__content {

    margin-bottom: 2rem;
    font-size: 1.375rem;
    line-height: 3;

}
.cta p{

    color: var(--accent-color);
    font-size: 1.625rem;
    text-transform: uppercase;
    line-height: 2.4;
    font-weight: 800;

}
.testimonial{
    margin-top: 15px;
}
.testimonial__content p{

    font-size: 1.5rem;
    line-height: 2.5;

}
.testimonial__content span{

    color: var(--accent-color);
    font-size: 1.625rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.5;

}
.testimonial__images img{

    width: 100%;
    height: 100%;

}
.cta--bottom .cta__text p{

    margin-top: 10px;
    text-transform: uppercase;
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 2;
    color: var(--accent-color);

}
/* Footer End */
footer{

    max-width: 900px;
    color:var(--text-primary);
    text-align:center;
    padding:50px 20px;

}

.footer__title{

    color:var(--accent-color);
    margin-bottom:15px;

}

.footer__text{

    max-width:700px;
    margin:10px auto;
    line-height:1.8;
    font-size: 18px;

}

.footer__links{

    display:flex;
    justify-content:center;
    gap:30px;
    margin:25px 0;
    flex-wrap:wrap;

}

.footer__copyright{

    color:var(--text-secondary);

}
   

/* dektop big */
@media (min-width: 1200px) {

}
/* Laptop */
@media (max-width:1199px) {

}
/* Tablet */
@media (max-width:992px) {
    
}
/* Mobile */
@media (max-width:768px) {

}
/* Mobile */
@media (max-width:576px) {

}
