/* =========================================
   HEADER
========================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:28px 0;
    transition:.45s ease;
}

.header.scrolled{
    padding:18px 0;
    background:rgba(12,12,12,.55);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.container{
    width:94%;
    max-width:1650px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LOGO */

.logo img{
    height:60px;
    transition:.35s;
}

.header.scrolled .logo img{
    height:52px;
}

/* NAVIGATION */

.navbar ul{
    display:flex;
    gap:55px;
    list-style:none;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    letter-spacing:1px;
    text-transform:uppercase;
    position:relative;
    transition:.35s;
}

.navbar a:after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#d8b15d;

    transition:.35s;

}

.navbar a:hover{

    color:#d8b15d;

}

.navbar a:hover:after{

    width:100%;

}

/* BUTTON */

.header-btn{

    padding:16px 30px;

    border-radius:50px;

    background:#fff;

    color:#111;

    font-weight:600;

    transition:.35s;

}

.header-btn:hover{

    transform:translateY(-4px);

    background:#d8b15d;

}


/* =========================================
   HERO
========================================= */

.video-hero{

    position:relative;

    height:100vh;

    overflow:hidden;

}

.hero-video{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

}

.video-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(0,0,0,.82) 5%,
    rgba(0,0,0,.35) 45%,
    rgba(0,0,0,.72) 100%);

}

.hero-container{

    position:relative;

    z-index:5;

    width:94%;

    max-width:1650px;

    margin:auto;

    height:100%;

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    padding-bottom:70px;

}

/* LEFT */

.hero-left{

    width:60%;

}

.hero-left h1{

    font-size:clamp(65px,7vw,110px);

    font-weight:800;

    line-height:.95;

    letter-spacing:-4px;

    color:#fff;

    margin-bottom:50px;

}

.hero-left h1 span{

    display:block;

    margin-top:12px;

}

.hero-left p{

    width:520px;

    color:#e5e5e5;

    font-size:22px;

    line-height:1.6;

    font-weight:300;

}

/* RIGHT */

.hero-right{

    width:360px;

}

.hero-right ul{

    list-style:none;

}

.hero-right li{

    display:flex;

    gap:18px;

    padding:14px 0;

    color:#fff;

    font-size:22px;

    border-bottom:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.hero-right li span{

    width:55px;

    font-style:italic;

    opacity:.65;

}

.hero-right li:hover{

    transform:translateX(8px);

    color:#d8b15d;

}

/* BUTTON */

.demo-btn{

    display:flex;

    justify-content:space-between;

    align-items:center;

    width:240px;

    margin-top:45px;

    padding:6px 6px 6px 28px;

    border-radius:60px;

    background:#fff;

    color:#111;

    font-weight:600;

    text-decoration:none;

}

.demo-btn span{

    display:flex;

    align-items:center;

    justify-content:center;

    width:52px;

    height:52px;

    border-radius:50%;

    background:#111;

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.demo-btn:hover span{

    transform:translateX(5px);

}

/* MOBILE */

@media(max-width:991px){

.navbar{

display:none;

}

.hero-container{

flex-direction:column;

justify-content:center;

align-items:flex-start;

padding-top:130px;

padding-bottom:70px;

}

.hero-left{

width:100%;

}

.hero-left h1{

font-size:58px;

letter-spacing:-2px;

}

.hero-left p{

width:100%;

font-size:18px;

margin-bottom:40px;

}

.hero-right{

width:100%;

}

}




/*=============================
SECTION 2
=============================*/

.experience{

    padding:80px 6%;

    background:#f7f7f7;

}

.experience-title{

    max-width:850px;

    margin:0 auto 80px;

    text-align:center;

}

.experience-title h2{

    font-size:62px;

    line-height:1.05;

    font-weight:800;

    color:#111;

    margin-bottom:10px;

    letter-spacing:-2px;

}

.experience-title p{

    font-size:20px;

    color:#666;

    line-height:1.8;

    max-width:700px;

    margin:auto;

}

.experience-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.experience-card{

    position:relative;

    height:460px;

    border-radius:28px;

    overflow:hidden;

    cursor:pointer;

    background:#000;

    transition:.45s;

}

.experience-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .8s;

}

.experience-card:hover img{

    transform:scale(1.08);

}

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.25),
        rgba(0,0,0,.05)
    );

}

.content{

    position:absolute;

    left:35px;

    right:35px;

    bottom:35px;

    color:#fff;

}

.content span{

    display:inline-block;

    width:44px;

    height:44px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.4);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

    font-size:15px;

}

.content h3{

    font-size:38px;

    line-height:1.15;

    margin-bottom:18px;

    font-weight:700;

}

.content p{

    font-size:18px;

    line-height:1.8;

    color:rgba(255,255,255,.88);

}

/* Hover */

.experience-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.18);

}

/* Responsive */

@media(max-width:1200px){

.experience-grid{

grid-template-columns:1fr;

}

.experience-card{

height:650px;

}

}

@media(max-width:768px){

.experience{

padding:90px 20px;

}

.experience-title h2{

font-size:46px;

}

.experience-title p{

font-size:17px;

}

.content h3{

font-size:30px;

}

}

/*==================================
SECTION 3
==================================*/

.project-video{

    padding:70px 0 100px;

    background:#ffffff;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title h2{

    font-size:clamp(54px,6vw,88px);

    line-height:1.05;

    font-weight:700;

    letter-spacing:-2px;

    color:#111;

}

.video-wrapper iframe{
    width:100%;
    height:100%;
    border:0;
}

/* VIDEO */

.video-wrapper{

    width:92%;

    max-width:950px;

    margin:auto;

    height:460px;

    overflow:hidden;

    border-radius:28px;

    background:#000;

    box-shadow:0 25px 80px rgba(0,0,0,.12);

}

.video-wrapper video{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    object-position:center;

}

/* CONTENT */

.section-content{

    max-width:900px;

    margin:60px auto 0;

    text-align:center;

    padding:0 20px;

}

.section-content p{

    font-size:22px;

    line-height:1.8;

    color:#666;

    margin-bottom:45px;

}

.view-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:15px;

    padding:18px 36px;

    border-radius:60px;

    background:#111;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s ease;

}

.view-btn:hover{

    background:#d6b056;

    color:#111;

    transform:translateY(-3px);

}

/* TABLET */

@media(max-width:1200px){

.video-wrapper{

    height:600px;

}

}

/* MOBILE */

@media(max-width:768px){

.project-video{

    padding:90px 0;

}

.section-title h2{

    font-size:42px;

    letter-spacing:-1px;

}

.video-wrapper{

    width:95%;

    height:300px;

    border-radius:18px;

}

.section-content p{

    font-size:18px;

}

.view-btn{

    width:100%;

    max-width:280px;

}

}


/*==================================
FEATURE SHOWCASE
==================================*/

/*==================================
HORIZONTAL FEATURE
==================================*/

.feature-gallery{

    height:650vh;
    background:#0b0b0b;
    position:relative;

}

.feature-sticky{

    position:sticky;
    top:0;

    height:100vh;

    overflow:hidden;

}

.feature-slide{

    position:absolute;
    inset:0;

    width:100%;

    display:grid;

    grid-template-columns:45% 55%;

    align-items:center;

    gap:80px;

    padding:0 8%;

    will-change:transform;

}

.feature-content{

    color:#fff;

}

.feature-tag{

    color:#d7b04c;

    letter-spacing:3px;

    font-size:14px;

}

.feature-content h2{

    font-size:58px;

    font-weight:700;

    line-height:1.05;

    margin:25px 0;

}

.feature-content p{

    color:#bbb;

    line-height:1.8;

    margin-bottom:40px;

    font-size:18px;

}

.feature-btn{

    display:inline-block;

    padding:16px 34px;

    border-radius:50px;

    background:#fff;

    color:#111;

    text-decoration:none;

    transition:.35s;

}

.feature-btn:hover{

    background:#d7b04c;

}

.feature-image{

    overflow:hidden;

    border-radius:28px;

    height:720px;

}

.feature-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

@media(max-width:992px){

.feature-slide{

grid-template-columns:1fr;

padding:40px;

}

.feature-image{

height:350px;

}

.feature-content h2{

font-size:40px;

}

}


/* after scrolling */
.project-gallery{

    background:#0b0b0b;

    padding:10px 0;

}

.gallery-title{

    width:90%;

    max-width:1300px;

    margin:0 auto 70px;

    text-align:center;

}

.gallery-title h2{

    color:#fff;

    font-size:72px;

    line-height:1.05;

    margin-bottom:25px;

    font-weight:800;

}

.gallery-title p{

    color:#bdbdbd;

    font-size:20px;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.gallery-wrapper{

    width:92%;

    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:380px 1fr;

    gap:60px;

    align-items:center;

}

.gallery-menu{

    display:flex;

    flex-direction:column;

}

.gallery-item{

    background:none;

    border:none;

    border-bottom:1px solid rgba(255,255,255,.08);

    color:#888;

    text-align:left;

    padding:28px 0;

    font-size:28px;

    cursor:pointer;

    transition:.35s;

}

.gallery-item span{

    margin-right:15px;

    color:#d4af37;

    font-style:italic;

}

.gallery-item:hover{

    color:#fff;

    padding-left:20px;

}

.gallery-item.active{

    color:#fff;

}

.gallery-preview{

    overflow:hidden;

    border-radius:24px;

    background:#111;

}

.gallery-preview img{

    width:100%;

    display:block;

    transition:.6s ease;

}

.gallery-preview img.fade{

    opacity:.2;

    transform:scale(.98);

}

@media(max-width:1000px){

.gallery-wrapper{

grid-template-columns:1fr;

}

.gallery-item{

font-size:22px;

}

.gallery-title h2{

font-size:46px;

}

}


/*=========================
RESULTS TITLE
=========================*/

.results-section{

    padding:60px 20px;

    background:#fff;

    text-align:center;

}

.results-top{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    margin-bottom:28px;

    color:#444;

    font-size:17px;

    font-weight:400;

}

.star{

    font-size:18px;

    color:#111;

}

.results-title{

    margin:0;

    font-family:'Poppins',sans-serif;

    font-size:clamp(42px,5vw,72px);

    line-height:1.08;

    font-weight:600;

    color:#111;

    letter-spacing:-2px;

}

.script-word{

    font-family:'Cormorant Garamond',serif;

    font-size:1.1em;

    font-style:italic;

    font-weight:500;

    margin:0 10px;

    letter-spacing:0;

}

@media(max-width:768px){

.results-section{

    padding:80px 20px;

}

.results-title{

    font-size:42px;

    letter-spacing:-1px;

    line-height:1.15;

}

.results-top{

    font-size:15px;

}

.script-word{

    display:inline;

}

}


/* cards  */
/*=========================
MINI GALLERY
=========================*/

.mini-gallery{

    padding:10px 0;

    background:#fff;

}

.gallery-grid{

    width:92%;

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.gallery-card{

    overflow:hidden;

    border-radius:18px;

    background:#f5f5f5;

    cursor:pointer;

    transition:.35s ease;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.gallery-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.gallery-card img{

    width:100%;

    height:240px;

    display:block;

    object-fit:cover;

    transition:.5s ease;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

/* Tablet */

@media(max-width:992px){

.gallery-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-card img{

    height:220px;

}

}

/* numbres loading */

/*==================================================
PREMIUM STATS SECTION
==================================================*/

.stats-section{

    padding:40px 0;

    background:#ffffff;

    position:relative;

    overflow:hidden;

}

.stats-container{

    width:92%;

    max-width:1450px;

    margin:auto;

    display:grid;

    grid-template-columns:430px 1fr;

    gap:90px;

    align-items:start;

}

/*=====================
LEFT SIDE
=====================*/

.stats-left{

    position:sticky;

    top:120px;

}

.stats-subtitle{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#777;

    font-size:15px;

    font-weight:500;

    letter-spacing:.5px;

    margin-bottom:18px;

}

.stats-left h2{

    font-size:64px;

    line-height:1.05;

    font-weight:600;

    color:#111;

    letter-spacing:-2px;

    margin-bottom:28px;

}

.stats-left h2 span{

    font-family:"Cormorant Garamond",serif;

    font-style:italic;

    font-weight:500;

    color:#111;

}

.stats-left p{

    color:#666;

    font-size:17px;

    line-height:1.9;

    margin-bottom:40px;

}

/*=====================
BUTTON
=====================*/

.stats-btn{

    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:16px 34px;

    border-radius:60px;

    background:#111;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s ease;

}

.stats-btn:hover{

    background:#c8a24d;

    color:#111;

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(200,162,77,.25);

}

/*=====================
RIGHT SIDE
=====================*/

.stats-right{

    display:flex;

    flex-direction:column;

    gap:12px;

}

/*=====================
ITEM
=====================*/

.stat-item{

    display:grid;

    grid-template-columns:170px 1fr;

    gap:40px;

    align-items:center;

    padding:28px 25px;

    border-radius:18px;

    border:1px solid #ececec;

    transition:.35s ease;

    background:#fff;

}

.stat-item:hover{

    transform:translateX(10px);

    border-color:#d7b04c;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

/*=====================
NUMBER
=====================*/

.stat-number{

    font-size:64px;

    font-weight:600;

    color:#111;

    letter-spacing:-2px;

    line-height:1;

}

.stat-number span{

    color:#111;

}

/*=====================
TEXT
=====================*/

.stat-text h4{

    font-size:25px;

    color:#111;

    margin-bottom:8px;

    font-weight:600;

}

.stat-text p{

    color:#666;

    line-height:1.8;

    font-size:16px;

    margin:0;

}

/*=====================
RESPONSIVE
=====================*/

@media(max-width:1100px){

.stats-container{

    grid-template-columns:1fr;

    gap:60px;

}

.stats-left{

    position:relative;

    top:auto;

}

}

@media(max-width:768px){

.stats-section{

    padding:40px 20px;

}

.stats-left h2{

    font-size:46px;

}

.stat-item{

    grid-template-columns:1fr;

    gap:15px;

    padding:25px;

}

.stat-number{

    font-size:52px;

}

.stat-text h4{

    font-size:22px;

}

}

/* background 6 videos section */

/*====================================
FEATURED PROJECT
====================================*/

.featured-project{

    position:relative;

    width:92%;
    max-width:1500px;
    height:70vh;

    margin:100px auto;

    overflow:hidden;

    border-radius:24px;

    background:#000;

    padding:0;


}

.featured-video{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

    object-position:center center;

}

.featured-highlight:hover .featured-video{

    transform:scale(1.06);

}

.featured-overlay{

    position:absolute;

    top:0;
    left:0;
    right:0;
    bottom:0;

    z-index:1;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.58) 0%,
        rgba(0,0,0,.15) 45%,
        rgba(0,0,0,.42) 100%
    );

}

/*=========================
CONTENT
=========================*/

.featured-content{

    position:absolute;

    z-index:2;

    left:70px;

    top:50%;

    transform:translateY(-50%);

    max-width:520px;

    color:#fff;

}

.featured-highlight video{

    vertical-align:middle;

}

.featured-label{

    display:inline-flex;

    align-items:center;

    padding:10px 22px;

    margin-bottom:30px;

    border-radius:40px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(10px);

    font-size:12px;

    text-transform:uppercase;

    letter-spacing:3px;

    color:#e1b85c;

}

.featured-content h2{

    font-size:48px;

    font-weight:500;

    line-height:1.08;

    margin-bottom:22px;

    letter-spacing:-1px;

}

.featured-content h2 span{

    display:block;

    margin-top:6px;

    font-family:"Cormorant Garamond",serif;

    font-size:56px;

    font-style:italic;

    font-weight:400;

    color:#fff;

}

.featured-content p{

    max-width:430px;

    font-size:17px;

    line-height:1.9;

    color:rgba(255,255,255,.82);

}

/*=========================
BOTTOM
=========================*/

.featured-footer{

    position:absolute;

    left:90px;

    right:90px;

    bottom:45px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.featured-location{

    display:inline-flex;

    align-items:center;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.16);

    backdrop-filter:blur(14px);

    color:#fff;

    font-size:14px;

    letter-spacing:.5px;

}

.featured-btn{

    display:inline-flex;

    align-items:center;

    gap:16px;

    padding:8px 8px 8px 26px;

    background:#fff;

    color:#111;

    border-radius:50px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.35s ease;

}

.project-btn span{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#111;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s ease;

}

.project-btn:hover{

    background:#d7b04c;

    color:#111;

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(215,176,76,.30);

}

.project-btn:hover span{

    transform:translateX(5px);

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

.project-highlight{

    width:94%;

    height:72vh;

}

.project-content{

    justify-content:flex-end;

    padding:45px;

    max-width:100%;

}

.project-content h2{

    font-size:38px;

}

.project-content h2 span{

    font-size:46px;

}

.project-content p{

    font-size:15px;

}

.project-footer{

    position:relative;

    left:auto;

    right:auto;

    bottom:auto;

    margin-top:35px;

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

}

}

@media(max-width:768px){

.project-highlight{

    height:65vh;

    border-radius:18px;

}

.project-content{

    padding:30px;

}

.project-content h2{

    font-size:30px;

}

.project-content h2 span{

    font-size:36px;

}

.project-label{

    font-size:11px;

}

.project-content p{

    font-size:14px;

    line-height:1.8;

}

.featured-btn{

    padding:8px 8px 8px 20px;

    font-size:14px;

}

.featured-btn span{

    width:42px;

    height:42px;

}

}

/*====================================
SIMPLE & EASY PROCESS
====================================*/

.easy-process{

    position:relative;
    height:300vh;
    overflow:clip;
    background:#f6f6f4;

}

.easy-process-sticky{

    position:sticky;
    top:0;
    display:grid;
    grid-template-columns:1fr 310px 1fr;
    align-items:center;
    min-height:100vh;
    padding:64px 7%;

}

.easy-process-heading{

    display:flex;
    flex-direction:column;
    color:#111;
    font-size:clamp(42px, 5vw, 76px);
    line-height:.9;
    letter-spacing:-.07em;

}

.easy-process-heading--left{

    align-items:flex-end;
    padding-right:clamp(28px, 7vw, 120px);

}

.easy-process-heading--right{

    align-items:flex-start;
    padding-left:clamp(28px, 7vw, 120px);

}

.easy-process-heading span{

    font-family:"Cormorant Garamond", serif;
    font-size:1.18em;
    font-style:italic;
    font-weight:600;
    letter-spacing:-.08em;

}

.easy-process-heading strong{

    font-family:"Inter", sans-serif;
    font-size:.76em;
    font-weight:600;

}

.easy-process-heading--right span{

    font-family:"Inter", sans-serif;
    font-size:.76em;
    font-style:normal;
    font-weight:600;
    letter-spacing:-.07em;

}

.easy-process-heading--right strong{

    font-size:.76em;

}

.easy-process-cards{

    position:relative;
    width:310px;
    height:390px;
    margin:auto;

}

.easy-process-card{

    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    padding:18px 19px;
    border:1px solid rgba(17,17,17,.1);
    border-radius:15px;
    background:#fff;
    box-shadow:0 14px 32px rgba(0,0,0,.07);
    will-change:transform, opacity;

}

.easy-process-card__top{

    display:flex;
    justify-content:space-between;
    gap:15px;
    align-items:flex-start;
    min-height:45px;

}

.easy-process-card h3{

    margin:0;
    color:#111;
    font-family:"Inter", sans-serif;
    font-size:19px;
    font-weight:600;
    line-height:1.12;
    letter-spacing:-.06em;

}

.easy-process-card__top > span{

    white-space:nowrap;
    color:#111;
    font-size:15px;
    letter-spacing:3px;

}

.easy-process-card img{

    width:100%;
    min-height:0;
    flex:1;
    margin:8px 0 12px;
    object-fit:cover;
    object-position:center;

}

.easy-process-card p{

    margin:0;
    color:#555;
    font-size:12px;
    line-height:1.35;

}

.easy-process-card__number{

    position:absolute;
    right:18px;
    bottom:15px;
    color:#111;
    font-size:11px;
    font-weight:700;
    opacity:.45;

}

@media(max-width:900px){

    .easy-process-sticky{

        grid-template-columns:1fr 1fr;
        grid-template-rows:auto 1fr;
        column-gap:16px;
        row-gap:32px;
        padding:36px 28px;

    }

    .easy-process-heading{

        align-items:flex-start;
        padding:0;
        text-align:left;
        font-size:clamp(31px, 9vw, 44px);

    }

    .easy-process-heading--right{

        order:initial;
        align-items:flex-end;
        text-align:right;

    }

    .easy-process-cards{

        grid-column:1 / -1;
        order:initial;
        width:240px;
        height:315px;
        margin:auto;

    }

}

/*====================================
PROOF / POST-PROJECT CONTENT
====================================*/

.proof-section{padding:clamp(80px,11vw,150px) 24px;background:#f6f6f4;color:#111}
.proof-heading{max-width:680px;margin:0 auto 70px;text-align:center}
.proof-heading p{margin:0 0 18px;color:#777;font-size:13px}
.proof-heading h2,.virtue-cta h2{margin:0;font-size:clamp(48px,7vw,92px);font-weight:600;letter-spacing:-.085em;line-height:.9}
.proof-heading em,.virtue-cta em{font-family:"Cormorant Garamond",serif;font-size:1.15em;font-weight:600}
.proof-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:16px;width:min(100%,900px);margin:auto}
.proof-showreel{position:relative;min-height:350px;overflow:hidden;border-radius:18px;background:#111}
.proof-showreel img{width:100%;height:100%;object-fit:cover;opacity:.72}
.proof-showreel::after{position:absolute;inset:0;content:"";background:linear-gradient(0deg,rgba(0,0,0,.72),transparent 65%)}
.proof-showreel__label{position:absolute;z-index:1;top:22px;left:22px;color:#fff;font-size:11px;letter-spacing:.12em}
.proof-showreel button{position:absolute;z-index:1;right:22px;bottom:22px;width:55px;height:55px;border:0;border-radius:50%;background:#fff;color:#111;font-size:17px;cursor:pointer}
.proof-stat,.proof-quote{min-height:167px;padding:25px;border-radius:18px;background:#fff}
.proof-stat--large{background:#d9ff4e}
.proof-stat span{display:block;font-size:42px;font-weight:600;letter-spacing:-.07em;line-height:1}
.proof-stat small{font-size:16px;font-weight:500}
.proof-stat p{margin:12px 0 0;color:#555;font-size:13px;line-height:1.45}.proof-stat div{margin-top:14px;font-size:12px;letter-spacing:2px}
.proof-quote{grid-column:2;color:#fff;background:#191919}.proof-quote p{margin:0 0 20px;font-size:14px;line-height:1.55}.proof-quote strong{color:#d9ff4e;font-size:11px;font-weight:600}
.virtue-cta{position:relative;padding:clamp(80px,11vw,145px) max(24px,calc((100% - 900px)/2)) 35px;overflow:hidden;background:#111;color:#fff}
.virtue-cta__video{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover;pointer-events:none}
.virtue-cta::before{position:absolute;inset:0;z-index:1;content:"";background:linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.4));opacity:.55}
.virtue-cta>*{position:relative;z-index:2}.virtue-cta__video{position:absolute;z-index:0}.virtue-cta__tag{margin:0 0 16px;color:#d9ff4e;font-size:13px}.virtue-cta h2{max-width:920px;font-size:clamp(38px,5.7vw,82px)}
.virtue-cta__copy{max-width:470px;margin:30px 0;color:rgba(255,255,255,.74);font-size:15px;line-height:1.7}

.virtue-cta__button{

    display:inline-flex;
    align-items:center;
    gap:22px;
    padding:7px 7px 7px 24px;
    border-radius:99px;
    background:#d8ff4d;
    color:#111;
    font-size:14px;
    font-weight:700;
    text-decoration:none;

}

.virtue-cta__button span{

    display:grid;
    width:42px;
    height:42px;
    place-items:center;
    border-radius:50%;
    background:#111;
    color:#fff;
    font-size:18px;
    transition:transform .25s ease;

}

.virtue-cta__button:hover span{

    transform:translateX(4px);

}

.virtue-footer-mini{display:flex;justify-content:space-between;gap:20px;margin-top:clamp(85px,12vw,150px);padding-top:18px;border-top:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.58);font-size:11px}

@media(max-width:760px){

    .proof-section{padding:80px 20px}.proof-heading{margin-bottom:45px}.proof-grid{grid-template-columns:1fr;width:min(100%,360px)}.proof-showreel{min-height:205px}.proof-stat,.proof-quote{min-height:130px}.proof-quote{grid-column:auto}.virtue-cta{padding:80px 24px 28px}.virtue-footer-mini{flex-wrap:wrap;margin-top:80px}

}

/* End-of-page redesign */
.featured-project{width:min(92%,1280px);height:clamp(360px,48vw,570px);margin:110px auto 0;border-radius:28px}
.featured-video{filter:saturate(.8) contrast(1.05);transform:scale(1.02)}
.featured-overlay{background:linear-gradient(90deg,rgba(5,8,10,.78),rgba(5,8,10,.22) 60%,rgba(5,8,10,.48))}
.featured-content{left:clamp(28px,6vw,76px);max-width:440px}.featured-label{padding:8px 14px;margin-bottom:18px;font-size:10px;letter-spacing:.16em;color:#fff;background:rgba(255,255,255,.1)}
.featured-content h2{margin:0 0 24px;font-size:clamp(34px,4vw,60px);font-weight:500;letter-spacing:-.065em}.featured-footer{position:static}.featured-btn{gap:13px;padding:7px 7px 7px 21px}.featured-btn span{display:grid;width:38px;height:38px;place-items:center;border-radius:50%;background:#111;color:#fff}

.easy-process{height:420vh;background:#f7f7f5}.easy-process-sticky{grid-template-columns:minmax(0,1fr) 260px minmax(0,1fr);max-width:1280px;margin:auto;padding:56px 24px}.easy-process-heading{font-size:clamp(43px,5vw,74px)}.easy-process-heading--left{padding-right:clamp(24px,5vw,80px)}.easy-process-heading--right{padding-left:clamp(24px,5vw,80px)}.easy-process-cards{width:260px;height:350px}.easy-process-card{padding:18px;border-radius:16px;box-shadow:0 18px 40px rgba(20,20,20,.09)}.easy-process-card h3{font-size:18px}.easy-process-card img{margin:10px 0 14px;border-radius:5px}.easy-process-card__top>span{font-size:14px}.easy-process-card p{font-size:12px}

.proof-section{padding:clamp(100px,13vw,175px) 24px;background:#f7f7f5}.proof-heading{max-width:780px;margin-bottom:70px}.proof-heading p{font-size:12px;letter-spacing:.06em;text-transform:uppercase}.proof-heading h2{font-size:clamp(52px,7.2vw,100px)}.proof-grid{grid-template-columns:1.35fr .9fr;grid-template-rows:repeat(2,220px);gap:18px;width:min(100%,1040px)}.proof-showreel{grid-row:span 2;min-height:0;border-radius:24px}.proof-showreel video{width:100%;height:100%;object-fit:cover;opacity:.78}.proof-showreel button{width:58px;height:58px;border-radius:50%;transition:transform .25s ease}.proof-showreel button:hover{transform:scale(1.08)}.proof-stat,.proof-quote{min-height:0;padding:30px;border-radius:24px}.proof-stat span{font-size:52px}.proof-quote{grid-column:2}.proof-quote p{font-size:15px}

.virtue-cta{padding:clamp(100px,13vw,170px) max(24px,calc((100% - 1040px)/2)) 36px;min-height:600px}.virtue-cta::before{background:linear-gradient(90deg,rgba(5,7,10,.9),rgba(5,7,10,.48))}.virtue-cta h2{font-size:clamp(48px,6vw,88px);line-height:.94}.virtue-cta__copy{font-size:16px}.virtue-cta__button{margin-top:4px;background:#fff}.virtue-footer-mini{margin-top:140px}

.site-footer{padding:55px max(24px,calc((100% - 1040px)/2)) 28px;background:#0b0b0d;color:#fff}.site-footer__top{display:grid;grid-template-columns:1.2fr 1.4fr 1fr 1fr;gap:35px;align-items:start;padding-bottom:55px}.site-footer__brand img{width:120px;max-height:42px;object-fit:contain;filter:brightness(0) invert(1)}.site-footer p,.site-footer address,.site-footer a{margin:0;color:rgba(255,255,255,.66);font-size:13px;font-style:normal;line-height:1.65;text-decoration:none}.site-footer__contact{display:grid;gap:7px}.site-footer a:hover{color:#fff}.site-footer__bottom{display:flex;justify-content:space-between;gap:20px;padding-top:22px;border-top:1px solid rgba(255,255,255,.13);color:rgba(255,255,255,.42);font-size:11px}.site-footer__bottom div{display:flex;gap:18px}.site-footer__bottom a{font-size:11px}

@media(max-width:760px){.featured-project{width:100%;height:360px;margin:0;border-radius:0}.featured-content{left:24px;right:24px}.easy-process{height:360vh}.easy-process-sticky{grid-template-columns:1fr 1fr;grid-template-rows:auto 1fr;align-content:center;padding:30px 25px}.easy-process-heading{font-size:34px}.easy-process-heading--left,.easy-process-heading--right{padding:0}.easy-process-cards{grid-column:1/-1;width:220px;height:300px}.proof-section{padding:85px 20px}.proof-grid{grid-template-columns:1fr;grid-template-rows:220px auto;width:min(100%,360px)}.proof-showreel{grid-row:auto}.proof-stat,.proof-quote{min-height:145px}.proof-quote{grid-column:auto}.virtue-cta{min-height:0;padding:85px 24px 28px}.virtue-footer-mini{margin-top:85px}.site-footer{padding:48px 24px 24px}.site-footer__top{grid-template-columns:1fr 1fr;gap:28px;padding-bottom:40px}.site-footer__top p{grid-column:1/-1}.site-footer__bottom{display:grid;gap:16px}.site-footer__bottom div{gap:14px}}

/* ==================================================
   PREMIUM UI POLISH — EXISTING STRUCTURE ONLY
================================================== */
:root{--ink:#101111;--muted:#6d706e;--paper:#f7f7f4;--line:rgba(16,17,17,.10);--gold:#d5b163;--ease:cubic-bezier(.22,1,.36,1)}
body{color:var(--ink);font-family:"Inter",sans-serif;-webkit-font-smoothing:antialiased}
h1,h2,h3,h4,p{max-width:100%}p{line-height:1.72}h1,h2,h3{letter-spacing:-.055em}
.experience,.project-video,.project-gallery,.results-section,.mini-gallery,.stats-section,.featured-project,.proof-section{position:relative}
.experience,.project-video,.results-section,.mini-gallery,.stats-section{padding-top:clamp(80px,9vw,140px);padding-bottom:clamp(80px,9vw,140px)}

/* Navigation and all existing buttons */
.header-btn,.demo-btn,.view-btn,.feature-btn,.stats-btn,.featured-btn,.virtue-cta__button{box-shadow:0 10px 28px rgba(0,0,0,.11);transition:transform .35s var(--ease),box-shadow .35s var(--ease),background-color .35s var(--ease),color .35s var(--ease)}
.header-btn:hover,.demo-btn:hover,.view-btn:hover,.feature-btn:hover,.stats-btn:hover,.featured-btn:hover,.virtue-cta__button:hover{transform:translateY(-3px);box-shadow:0 18px 34px rgba(0,0,0,.18)}
.demo-btn span,.featured-btn span,.virtue-cta__button span{transition:transform .35s var(--ease)}
.demo-btn:hover span,.featured-btn:hover span,.virtue-cta__button:hover span{transform:translateX(4px)}

/* Experience, feature and gallery cards */
.experience-title h2,.section-title h2,.gallery-title h2{letter-spacing:-.065em}.experience-title p,.gallery-title p{max-width:620px;line-height:1.75}
.experience-card,.gallery-card,.gallery-preview,.feature-image{border:1px solid rgba(255,255,255,.10);box-shadow:0 18px 45px rgba(0,0,0,.11)}
.experience-card,.gallery-card{transition:transform .5s var(--ease),box-shadow .5s var(--ease)}
.experience-card:hover,.gallery-card:hover{transform:translateY(-8px);box-shadow:0 30px 55px rgba(0,0,0,.17)}
.experience-card img,.gallery-card img,.feature-image img{transition:transform .7s var(--ease)}
.experience-card:hover img,.gallery-card:hover img{transform:scale(1.06)}
.gallery-item{letter-spacing:-.035em}.gallery-item.active{color:#fff}.gallery-item.active span{color:var(--gold)}

/* Results, mini gallery and statistics (existing sections) */
.results-section{background:var(--paper)}.results-title{font-size:clamp(50px,6vw,86px);line-height:.94;letter-spacing:-.075em}.results-top{font-size:13px;letter-spacing:.05em;text-transform:uppercase}
.mini-gallery{background:var(--paper)}.gallery-grid{gap:24px}.gallery-card{border-radius:22px}.gallery-card img{height:280px}
.stats-section{background:var(--paper)}.stats-container{max-width:1240px;gap:clamp(45px,8vw,110px)}.stats-left h2{font-size:clamp(48px,5vw,72px);letter-spacing:-.07em}.stat-item{padding:30px;border-radius:20px;border-color:var(--line);box-shadow:0 8px 25px rgba(0,0,0,.025);transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s var(--ease)}.stat-item:hover{transform:translateX(6px);border-color:rgba(213,177,99,.75);box-shadow:0 20px 40px rgba(0,0,0,.08)}

/* Featured transition */
.featured-project{box-shadow:0 30px 70px rgba(0,0,0,.22)}.featured-content{display:flex;flex-direction:column;align-items:flex-start}.featured-label{backdrop-filter:blur(12px)}.featured-btn{margin-top:4px}.featured-btn span{display:grid;place-items:center}

/* Simple & Easy */
.easy-process-heading{letter-spacing:-.08em}.easy-process-card{border-color:var(--line);transition:box-shadow .45s var(--ease)}.easy-process-card:hover{box-shadow:0 24px 55px rgba(0,0,0,.12)}.easy-process-card img{box-shadow:inset 0 0 0 1px rgba(0,0,0,.04)}

/* Proof, CTA and footer */
.proof-heading h2{letter-spacing:-.09em}.proof-showreel,.proof-stat,.proof-quote{box-shadow:0 20px 42px rgba(0,0,0,.09)}.proof-stat{border:1px solid rgba(0,0,0,.04)}.proof-showreel video{transition:transform .7s var(--ease)}.proof-showreel:hover video{transform:scale(1.04)}.proof-showreel button{box-shadow:0 10px 22px rgba(0,0,0,.2)}
.virtue-cta{isolation:isolate}.virtue-cta h2{letter-spacing:-.08em}.virtue-cta__button{font-size:13px;letter-spacing:.01em}.virtue-footer-mini{font-size:10px;letter-spacing:.08em;text-transform:uppercase}
.site-footer{border-top:1px solid rgba(255,255,255,.08)}.site-footer__brand{display:inline-flex;align-items:center}.site-footer__contact a,.site-footer__bottom a{transition:color .25s var(--ease),transform .25s var(--ease)}.site-footer__contact a:hover,.site-footer__bottom a:hover{color:#fff;transform:translateY(-1px)}

@media(max-width:992px){.experience-grid{gap:20px}.stats-container{gap:55px}.featured-project{margin-top:70px}.site-footer__top{grid-template-columns:1fr 1fr}.site-footer__top p{grid-column:1/-1;max-width:430px}}
@media(max-width:760px){.experience,.project-video,.results-section,.mini-gallery,.stats-section{padding-top:75px;padding-bottom:75px}.experience-title{margin-bottom:45px}.experience-title h2,.section-title h2,.gallery-title h2{letter-spacing:-.06em}.gallery-grid{gap:16px}.gallery-card{border-radius:16px}.gallery-card img{height:230px}.stat-item{padding:24px}.featured-content h2{font-size:38px}.proof-heading h2{font-size:52px}.site-footer__top{grid-template-columns:1fr}.site-footer__top p{grid-column:auto}.site-footer__bottom div{flex-wrap:wrap}}

/* Reference-style footer */
.site-footer{position:relative;overflow:hidden;padding:0;border:0;background:#080b0f;color:#fff}
.site-footer::before{position:absolute;inset:0;z-index:0;content:"";opacity:.32;background-image:radial-gradient(rgba(255,255,255,.15) .55px,transparent .8px),linear-gradient(135deg,rgba(255,255,255,.025),transparent 45%);background-size:5px 5px,100% 100%;pointer-events:none}
.site-footer::after{position:absolute;z-index:0;right:-190px;bottom:-260px;width:650px;height:650px;content:"";border:1px solid rgba(255,255,255,.055);border-radius:48% 52% 55% 45%;transform:rotate(-35deg);box-shadow:0 0 0 94px rgba(255,255,255,.018),0 0 0 188px rgba(255,255,255,.012);pointer-events:none}
.site-footer__legacy{display:none}
.footer-reference{position:relative;z-index:1;width:min(100% - 48px,700px);margin:auto;padding:70px 0 26px}
.footer-reference__top{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(42px,9vw,100px)}
.footer-connect h2{margin:0 0 15px;color:#fff;font-size:22px;font-weight:500;letter-spacing:-.055em}.footer-connect p,.footer-offices p{margin:0;color:rgba(255,255,255,.64);font-size:11px;line-height:1.55}.footer-connect p a{color:#fff;text-decoration:none}
.footer-pill{display:inline-flex;align-items:center;gap:9px;margin-top:13px;padding:7px 7px 7px 15px;border-radius:999px;background:#fff;color:#101114;font-size:10px;font-weight:700;line-height:1;text-decoration:none;transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.footer-pill span{display:grid;width:18px;height:18px;place-items:center;border-radius:50%;background:#111;color:#fff;font-size:12px;transition:transform .3s var(--ease)}
.footer-pill:hover{transform:translateY(-2px);box-shadow:0 9px 20px rgba(0,0,0,.28)}.footer-pill:hover span{transform:translateX(2px)}
.footer-offices{display:grid;gap:31px}.footer-offices>div>span{display:block;margin-bottom:8px;color:rgba(255,255,255,.4);font-size:9px;letter-spacing:.08em;text-transform:uppercase}.footer-offices h3{margin:0 0 7px;color:#fff;font-size:12px;font-weight:600;letter-spacing:-.025em}.footer-offices .footer-pill{margin-top:10px}
.footer-socials{display:flex;gap:20px;margin:75px 0 58px}.footer-socials a{display:grid;width:24px;height:24px;place-items:center;color:#fff;border:1px solid rgba(255,255,255,.8);border-radius:50%;font-size:11px;font-weight:700;line-height:1;text-decoration:none;transition:background .25s var(--ease),color .25s var(--ease),transform .25s var(--ease)}.footer-socials a:last-child{border:0;border-radius:0;font-size:21px}.footer-socials a:hover{background:#fff;color:#111;transform:translateY(-3px)}
.footer-wordmark{display:block;color:#f6f4f0;font-family:Georgia,"Times New Roman",serif;font-size:clamp(64px,13vw,142px);font-weight:700;line-height:.75;letter-spacing:-.105em;text-align:center;text-decoration:none;white-space:nowrap;transform:scaleX(1.05);transform-origin:center}
.footer-reference__bottom{display:flex;justify-content:flex-end;gap:10px;margin-top:52px;padding-top:18px;border-top:1px solid rgba(255,255,255,.18);color:rgba(255,255,255,.55);font-size:9px}.footer-reference__bottom a{color:inherit;text-decoration:none}.footer-reference__bottom a:hover{color:#fff}
@media(max-width:620px){.footer-reference{width:min(100% - 40px,430px);padding-top:54px}.footer-reference__top{grid-template-columns:1fr;gap:40px}.footer-socials{margin:55px 0 48px}.footer-wordmark{font-size:clamp(54px,17vw,86px)}.footer-reference__bottom{justify-content:space-between;margin-top:43px;font-size:8px}}

/* Footer type scale and action-label fixes */
.site-footer .footer-reference{width:min(100% - 48px,820px);padding-top:82px;padding-bottom:32px}
.site-footer .footer-reference__top{gap:clamp(55px,10vw,130px)}
.site-footer .footer-connect h2{font-size:26px;line-height:1.1}
.site-footer .footer-connect p,.site-footer .footer-offices p{font-size:12px;line-height:1.65}
.site-footer .footer-offices>div>span{font-size:10px}.site-footer .footer-offices h3{font-size:14px}
.site-footer a.footer-pill{gap:11px;padding:9px 9px 9px 17px;background:#fff;color:#111!important;font-size:11px;letter-spacing:0;line-height:1.1}
.site-footer a.footer-pill span{width:22px;height:22px;background:#111;color:#fff;font-size:14px}
.site-footer .footer-socials{margin-top:88px;margin-bottom:64px}.site-footer .footer-socials a{font-size:13px}
.site-footer a.footer-wordmark{display:block;color:#f6f4f0!important;font-family:Georgia,"Times New Roman",serif;font-size:clamp(92px,14.5vw,170px);font-weight:700;line-height:.75;letter-spacing:-.105em;text-align:center;text-decoration:none;white-space:nowrap;transform:scaleX(1.05);transform-origin:center}
.site-footer .footer-reference__bottom{font-size:10px}
@media(max-width:620px){.site-footer .footer-reference{width:min(100% - 40px,430px);padding-top:58px}.site-footer a.footer-wordmark{font-size:clamp(64px,19vw,100px)}.site-footer .footer-connect h2{font-size:23px}.site-footer .footer-connect p,.site-footer .footer-offices p{font-size:12px}}

/* Smaller visual panels in the horizontal feature gallery */
.feature-slide{grid-template-columns:44% minmax(0,1fr);gap:clamp(18px,2vw,30px)}
.feature-image{justify-self:start;width:min(100%,620px);height:clamp(390px,52vh,560px)}
@media(max-width:992px){.feature-slide{grid-template-columns:1fr;gap:28px}.feature-image{justify-self:center;width:min(100%,620px);height:330px}}
@media(max-width:560px){.feature-image{width:100%;height:260px}}

/* Reference-style feature copy */
@media(min-width:761px){
    .feature-slide{grid-template-columns:36% minmax(0,1fr);gap:clamp(80px,7vw,120px)}
    .feature-content{position:absolute;z-index:2;top:clamp(58px,7vh,96px);left:5%;max-width:440px;padding-bottom:clamp(140px,17vh,250px)}
    .feature-content .feature-tag,.feature-content .feature-btn{display:none}
    .feature-content h2{margin:0 0 10px;font-size:clamp(30px,2.8vw,42px);font-weight:600;letter-spacing:-.055em;line-height:1.12}
    .feature-content h2 br{display:none}
    .feature-content p{margin:0;color:rgba(255,255,255,.82);font-size:clamp(16px,1.45vw,21px);font-weight:400;line-height:1.45;letter-spacing:.01em}
    .feature-image{position:absolute;top:clamp(285px,38vh,360px);left:clamp(220px,22vw,330px);width:min(70vw,860px);max-width:none;height:clamp(430px,62vh,660px);margin:0;transform:none}
}

@media(max-width:760px){
    .feature-content .feature-tag,.feature-content .feature-btn{display:inline-block}
    .feature-content h2 br{display:block}
}

.demo-btn{margin-bottom:24px}


/*==========================================
PREMIUM WHITE POPUP
==========================================*/

.demo-popup{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    background:rgba(15,15,15,.45);
    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
    visibility:hidden;
    opacity:0;
    transition:.35s ease;
    z-index:999999;
}

.demo-popup.active{
    visibility:visible;
    opacity:1;
}

.popup-box{

    width:100%;
    max-width:560px;
    max-height:90vh;

    overflow-y:auto;

    background:#fff;

    border-radius:24px;

    padding:35px;

    position:relative;

    box-sizing:border-box;

    box-shadow:
    0 30px 70px rgba(0,0,0,.18);

    transform:translateY(30px) scale(.96);

    transition:.35s ease;

}

.demo-popup.active .popup-box{

    transform:translateY(0) scale(1);

}

.popup-box::-webkit-scrollbar{

    width:6px;

}

.popup-box::-webkit-scrollbar-thumb{

    background:#d5b163;

    border-radius:20px;

}

/* CLOSE */

.close-popup{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#f3f3f3;

    color:#111;

    font-size:24px;

    cursor:pointer;

    transition:.3s;

}

.close-popup:hover{

    background:#d5b163;

    color:#fff;

    transform:rotate(90deg);

}

/* TAG */

.popup-tag{

    display:inline-block;

    padding:8px 18px;

    background:#faf5ea;

    color:#b88b2d;

    border-radius:40px;

    font-size:12px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:20px;

}

/* TITLE */

.popup-box h2{

    font-size:34px;

    font-weight:700;

    line-height:1.1;

    color:#111;

    margin-bottom:10px;

    letter-spacing:-1px;

}

/* TEXT */

.popup-box p{

    color:#666;

    font-size:15px;

    line-height:1.8;

    margin-bottom:30px;

}

/* FORM */

#demoForm{

    display:flex;

    flex-direction:column;

    gap:16px;

}

/* INPUTS */

.popup-box input,
.popup-box textarea{

    width:100%;

    box-sizing:border-box;

    padding:16px 18px;

    border:1px solid #e3e3e3;

    border-radius:14px;

    background:#fafafa;

    color:#111;

    font-size:15px;

    font-family:inherit;

    outline:none;

    transition:.3s;

}

.popup-box textarea{

    resize:none;

    min-height:130px;

}

.popup-box input::placeholder,
.popup-box textarea::placeholder{

    color:#999;

}

.popup-box input:focus,
.popup-box textarea:focus{

    background:#fff;

    border-color:#d5b163;

    box-shadow:0 0 0 4px rgba(213,177,99,.12);

}

/* BUTTON */

.popup-submit{

    width:100%;

    height:56px;

    border:none;

    border-radius:50px;

    background:#111;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.popup-submit:hover{

    background:#d5b163;

    color:#111;

    transform:translateY(-2px);

}

/* SUCCESS */

#popupSuccess{

    margin-top:18px;

    text-align:center;

    color:#25a244;

    font-weight:600;

}

/* MOBILE */

@media(max-width:768px){

.demo-popup{

padding:15px;

}

.popup-box{

max-width:100%;

padding:28px 22px;

border-radius:20px;

max-height:92vh;

}

.popup-box h2{

font-size:28px;

}

.popup-box p{

font-size:14px;

margin-bottom:22px;

}

.popup-box input,
.popup-box textarea{

padding:14px 16px;

font-size:14px;

}

.popup-submit{

height:52px;

font-size:15px;

}

.close-popup{

width:38px;
height:38px;

font-size:20px;

}

}

.popup-success{

    text-align:center;

    padding:20px;

}

.success-icon{

    width:70px;
    height:70px;

    margin:0 auto 20px;

    background:#28a745;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    font-weight:bold;

}

.popup-success h3{

    margin:0 0 10px;

    color:#111;

    font-size:28px;

}

.popup-success p{

    margin:0;

    color:#666;

    line-height:1.7;

}

.popup-error{

    margin-top:20px;

    padding:15px;

    border-radius:10px;

    background:#ffeaea;

    color:#d40000;

    text-align:center;

    font-weight:600;

}

/* Default section headings: black on the left, orange on the right. */
.experience-title h2,
.section-title h2,
.results-title,
.stats-left h2,
.easy-process-heading,
.proof-heading h2{
    color:#17110e;
    background:linear-gradient(90deg,#17110e 0 50%,#f45b16 50% 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* The Featured Projects heading is on a dark section, so use white + orange. */
.project-gallery .gallery-title h2{
    color:#fff;
    background:linear-gradient(90deg,#fff 0 50%,#f45b16 50% 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Hero headline: white left half and orange right half. */
.hero-left h1{
    color:#fff;
    background:linear-gradient(90deg,#fff 0 50%,#f45b16 50% 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}
.hero-left h1 span{color:inherit;}
