@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");


.inner{
    max-width:var(--container);
    width:100%;
    margin:0 auto;
}
a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

html {
    font-family: 'Pretendard', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}





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

.header{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(20px);

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

    border-bottom:
    1px solid rgba(25,31,40,.05);

    transition:.3s ease;
}

.header.scrolled{

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

    box-shadow:
    0 8px 24px rgba(25,31,40,.04);
}

.header::before{

    content:'';

    position:absolute;

    top:-120px;
    right:220px;

    width:240px;
    height:240px;

    border-radius:50%;

    background:
    rgba(49,130,246,.08);

    filter:blur(80px);

    pointer-events:none;
}

.header .container{

    max-width:1400px;

    height:78px;

    margin:0 auto;

    padding:0 20px;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

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

.logo{

    display:flex;

    align-items:center;

    transition:.25s ease;
}

.logo img{

    width:auto;

    height:34px;
}

.logo:hover{

    opacity:.85;

    transform:translateY(-1px);
}

/* =========================================
   NAV
========================================= */

.nav ul{

    display:flex;

    align-items:center;

    gap:42px;

    list-style:none;
}

.nav li:last-child{

    margin-left:10px;
}

.nav a{

    position:relative;
  

    display:inline-flex;
    font-size:15px;

    font-weight:500;

    color:#6b7684;

    transition:.25s ease;
}

.nav a:hover{

    color:#191f28;
}

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

.nav a.active{

    color:#191f28;

    font-weight:700;
}

.nav a.active::after{

      content:'';

    position:absolute;

    left:8%;

    bottom:-6px;

    width:84%;

    height:3px;

    border-radius:999px;

    background:#3182f6;
}

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

.nav a:not(.btn-contact)::before{

    content:'';

    position:absolute;

    left:50%;

    bottom:-6px;

    width:0;

    height:2px;

    background:#3182f6;

    border-radius:999px;

    transform:translateX(-50%);

    transition:.25s ease;
}

.nav a:not(.btn-contact):hover::before{

    width:100%;
}

/* active는 hover line 안보이게 */

.nav a.active::before{

    display:none;
}

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

.btn-contact{

    display:flex;

    align-items:center;

    justify-content:center;

    height:46px;

    padding:0 22px;

    border-radius:14px;

    background:#191f28;

    color:#fff !important;

    font-size:14px;

    font-weight:600;

    letter-spacing:-0.01em;

    transition:.3s ease;
}

.btn-contact:hover{

    background:#11161f;

    transform:translateY(-2px);

    box-shadow:
    0 12px 24px rgba(25,31,40,.12);
}

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






/* Mobile Menu */


.service-tags{

    position:absolute;

    left:30px;
    bottom:30px;

    display:flex;
    gap:8px;

    flex-wrap:wrap;
}

.service-tags span{

    display:flex;
    align-items:center;

    height:24px;

    padding:0 10px;

    border-radius:999px;

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

    backdrop-filter:blur(10px);

    border:1px solid rgba(0,0,0,.05);

    font-size:11px;
    font-weight:600;

    color:var(--text-secondary);
}
.service-badge{
padding-top: 1px !important;
    display:inline-flex;
    align-items:center;
    gap:8px;

    height:30px;

    padding:0 12px;

    border-radius:999px;

      border: solid 1px var(--text);
    border-radius: 999px;
    /* background: var(--text); */
    color: var(--text);



    font-size:11px;
    font-weight:600;

    letter-spacing:.08em;

    margin-bottom:18px;
}
.section-divider{

    max-width:1200px;

    margin:0 auto;

  

    position:relative;
}
.imgbrand{
    max-height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
        height: stretch !important;
}
.section-divider::after{

    content:'';

    display:block;

    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
          rgba(49,130,246,.15),
        transparent
    );
}


/* 우측 메인 블러 */

.blur-1 {

     width:1400px;
    height:1400px;

    top:-650px;
    right:-450px;

    opacity:.8;

    background:
    rgba(49,130,246,.12);

 
}

/* 좌측 하단 보조 블러 */



.btn-primary {
    padding: 10px 32px;

    background: var(--text);
       color:var(--white);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    height: fit-content;
}

.btn-secondary {
        display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;

    border: 1px solid var(--border);
  height: fit-content;
    border-radius: 999px;
}
.btn-primary,
.btn-secondary{
    transition:.3s ease;
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.btn-secondary:hover{
    transform:translateY(-2px);
    background:#fff;
}

.floating-card {
    position: absolute;

    padding: 18px 24px;

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

    backdrop-filter: blur(20px);

    border: 1px solid rgba(0,0,0,.05);

    border-radius: 20px;

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

    animation: float 5s ease-in-out infinite;
}

.card-1{
    right:12%;
    top:25%;
    transform:rotate(-6deg);
}

.card-2{
    right:8%;
    top:50%;
    transform:rotate(4deg);
}

.card-3{
    right:18%;
    bottom:18%;
    transform:rotate(-3deg);
}
@keyframes float {

    0%,100%{
        translate:0 0;
    }

    50%{
        translate:0 -15px;
    }

}

.proof-item::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.7),
        transparent
    );

    transform:skewX(-20deg);

    animation:
    shine 6s infinite;
}
.proof-item:nth-child(2)::before{
    animation-delay:2s;
}

.proof-item:nth-child(3)::before{
    animation-delay:4s;
}

@keyframes shine{

    0%{
        left:-120%;
    }

    20%{
        left:150%;
    }

    100%{
        left:150%;
    }
}
.proof-item{
  position:relative;
    overflow:hidden;

    padding:18px 22px;

    border-radius:22px;

    background:#fff;

    border:1px solid rgba(0,0,0,.05);

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

.proof-item strong{

    display:block;

    font-size:24px;

    font-weight:800;
}

.proof-item span{

    font-size:13px;

    color:#8b95a1;
}


.showcase-main{

    overflow:hidden;

    border-radius:12px;

    background:#fff;

    box-shadow:
    0 40px 80px rgba(0,0,0,.12);
}

.showcase-main img{

    width:100%;

    display:block;
}

.showcase-floating{

    position:absolute;

    padding:18px 22px;

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

    backdrop-filter:blur(20px);

    border-radius:20px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.showcase-floating span{

    display:block;

    font-size:12px;

    color:#8b95a1;

    margin-bottom:6px;
}

.showcase-floating strong{

    font-size:20px;

    font-weight:700;
}

.card-left{

    left:-40px;
    bottom:60px;
}

.card-right{

    right:-30px;
    top:50px;
}

.blur-1{

    width:1200px;
    height:1200px;

    right:-300px;
    top:-500px;

    background:rgba(49,130,246,.12);

    filter:blur(180px);
}
.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight::after {
    content: '';

    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 0.1em;

    height: 45%;

    background: #fff176;

    z-index: -1;
    font-weight: 900;
}

.point{
    color:var(--primary);
}

.mobile-br {
    display: none;
}


.footer{
    padding:100px 20px 40px;
    border-top:1px solid rgba(0,0,0,.06);
}

.footer-inner{
    max-width:1200px;
    margin:0 auto;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;

    margin-bottom:60px;
}

.footer-logo img{
    height:28px;
    width:auto;
}

.footer-slogan{
    margin-top:20px;

    font-size:24px;
    font-weight:700;
    line-height:1.4;

    letter-spacing:-0.03em;
}

.footer-contact{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:12px;
}

.footer-email,
.footer-phone{
    font-size:16px;
    color:var(--text-secondary);

    transition:.3s;
}

.footer-email:hover,
.footer-phone:hover{
    color:var(--text);
}

.footer-cta{

    margin-top:12px;

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

    padding:12px 24px;

    background:var(--text);
    color:#fff;

    border-radius:999px;

    transition:.3s;
}

.footer-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.footer-bottom{

    padding-top:30px;

    border-top:1px solid rgba(0,0,0,.06);

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

    gap:20px;
}

.footer-links{
    display:flex;
    gap:24px;
}

.footer-links a{
    font-size:14px;
    color:var(--text-secondary);
}

.footer-copy{
    font-size:14px;
    color:var(--text-muted);
}


body.menu-open{
    overflow:hidden;
}









/* ==========================
   SERVICES
========================== */


.services-head{
    margin-bottom:60px;
}
.services-label-wrap{

    display:flex;
    align-items:center;

    gap:14px;

    margin-bottom:20px;
}

.services-label-wrap::after{

    content:'';

    width:60px;
    height:1px;

    background:
    linear-gradient(
        90deg,
           var(--primary),
        transparent
    );
}
.services-label{
    display:inline-flex;
    align-items:center;
    gap:10px;

    font-size:16px;
    font-weight:700;

    letter-spacing:.2em;

    color:var(--primary);

}

.services-head h2{
    font-size:clamp(40px,5vw,60px);

    line-height:1.05;
    letter-spacing:-0.03em;

    margin-bottom:20px;
}

.services-head p{
    max-width:540px;

    color:var(--text-secondary);

    line-height:1.8;
}

/* GRID */

.services-grid{
    display:grid;

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

    gap:24px;
}
.service-badges{

    display:flex;
    align-items:center;
    gap:8px;

   
}
.top{
    top:58px !important;
}
.card-full .service-image{

    inset:0;

    width:100%;
    height:100%;

    right:auto;
}
.card-full .service-image img{

    width:100%;
    height:100%;

    max-height:none;

    object-fit:cover;

    opacity:.9;
}
/* CARD */
.badgeimg{
    width: 44px;
}
.naver{
    border: solid 1px #03CF5D !important;

}
.service-card{
min-height: 250px;
    position:relative;



    overflow:hidden;

    border-radius:28px;

    padding:30px;

    isolation:isolate;

    border:1px solid rgba(0,0,0,.04);

    transition:.45s ease;
}

.service-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 30px 80px rgba(0,0,0,.08);
}

/* IMAGE */

.service-image{

    position:absolute;

    top:0;
 width:55%;
    right:-2%;
    height:100%;

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

    z-index:-2;
}

.service-image img{

    width:100%;
    height:auto;

    max-height:85%;

    object-fit:contain;

    opacity:1;

    transition:
    transform .7s ease,
    opacity .7s ease;

    transform:scale(1);
}

/* TEXT GRADIENT */

.service-card::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,

        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.95) 35%,
        rgba(255,255,255,.75) 55%,
        rgba(255,255,255,.15) 100%
    );

    z-index:-1;
}

/* HOVER */

.service-card:hover .service-image img{

    opacity:.75;

    transform:scale(1.06);
}


/* TITLE */

.service-card h3{

    font-size:30px;

    line-height:1.1;

    letter-spacing:-0.03em;

    margin-bottom:14px;

    max-width:200px;
}

/* DESCRIPTION */

.service-card p{

    max-width:230px;

    color:var(--text);

    line-height:1.8;

    font-size:15px;
}

/* COLORS */

.card-purple{

    background:
    linear-gradient(
        180deg,
        #faf8ff,
        #f4f1ff
    );
}

.card-blue{

    background:
    linear-gradient(
        180deg,
        #f8fbff,
        #eef4ff
    );
}

.card-white{

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f7f7f7
    );
}




.services-title{

    display:flex;
    align-items:center;
    gap:14px;

    font-size:clamp(40px,5vw,60px);

    line-height:1.05;
    letter-spacing:-0.03em;

    margin-bottom:20px;
}

.title-icon{

    width:14px;
    height:14px;

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

    border-radius:8px;

    background:rgba(49,130,246,.08);

    border:1px solid rgba(49,130,246,.12);

    flex-shrink:0;
}
.icon1{

    width:14px;
    height:14px;

    display:block;

    object-fit:contain;
}
.title-icon img{

    width:18px;
    height:18px;

    object-fit:contain;
}


/* =========================================
   PROCESS
========================================= */



.process-inner{

    position:relative;

    padding:50px;

    border-radius:40px;

    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #191f28,
        #232a35
    );
}

/* =========================================
   BACKGROUND EFFECT
========================================= */

.process-bg{

    display:none;
}

.process-inner::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    right:-180px;
    bottom:-180px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(49,130,246,.18),
        transparent 70%
    );
}

.process-inner::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    right:80px;
    top:-120px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(49,130,246,.08),
        transparent 70%
    );
}

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

.process-top{

    position:relative;

    z-index:10;

    max-width:620px;
}

.process-top h2{

    margin-top:18px;

    font-size:clamp(42px,5vw,72px);

    line-height:1.05;

    letter-spacing:-0.03em;

    color:#fff;
}

.process-top p{

    margin-top:24px;

    font-size:18px;

    line-height:1.8;

    color:
    rgba(255,255,255,.75);
}

/* =========================================
   TIMELINE
========================================= */

.process-line{

    position:relative;

    z-index:10;

    display:grid;

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

    gap:40px;

}

.process-line::before{

    content:'';

    position:absolute;

    left:0;
    right:0;

    top:12px;

    height:1px;

    background:
    rgba(255,255,255,.15);
}
.process-line::after{

    content:'';

    position:absolute;

    left:0;

    top:12px;

    height:2px;

    width:0;

    background:
    linear-gradient(
        90deg,
        #3182f6,
        rgba(49,130,246,.4)
    );

    animation:
    processLine 6s ease infinite;
}
@keyframes processLine{

    0%{
        width:0;
        opacity:1;
    }

    45%{
        width:100%;
        opacity:1;
    }

    70%{
        width:100%;
        opacity:1;
    }

    100%{
        width:100%;
        opacity:0;
    }

}
/* =========================================
   STEP
========================================= */

.process-step{

    position:relative;
}

.process-dot{
   box-shadow:
    0 0 0 6px rgba(49,130,246,.08);
    display:block;

    width:24px;
    height:24px;

    border-radius:50%;

    background:#fff;

    border:4px solid #3182f6;

    margin-bottom:30px;

    position:relative;

    z-index:2;
      animation:
    dotPulse 3s ease infinite;
}
@keyframes dotPulse{

    0%,100%{

        box-shadow:
        0 0 0 0 rgba(49,130,246,.35);
    }

    50%{

        box-shadow:
        0 0 0 8px rgba(49,130,246,0);
    }

}
.process-step h3{

    margin-bottom:12px;

    font-size:22px;

    font-weight:700;

    color:#fff;
}

.process-step p{

    font-size:15px;

    line-height:1.8;

    color:
    rgba(255,255,255,.65);
}

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

.process-btn{

    display:inline-flex;

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

    margin-top:30px;

    padding:16px 26px;

    border-radius:999px;

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

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

    color:#fff;

    font-weight:600;

    transition:.3s ease;

    position:relative;

    z-index:10;
}

.process-btn:hover{

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

    transform:translateY(-2px);
}

/* =========================================
   MOCKUP
========================================= */

.process-mockup{

    position:absolute;

    right:-100px;
    bottom:-40px;

    width:520px;

    opacity:.08;

    pointer-events:none;

    transform:
    rotate(-8deg);
}




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



.cta-box{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    padding: 50px;

    background:
    linear-gradient(
        135deg,
        #191f28,
        #232a35
    );
}

/* =========================================
   BACKGROUND
========================================= */

.cta-box::before{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    right:-250px;
    bottom:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(49,130,246,.18),
        transparent 70%
    );
}

.cta-box::after{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    right:120px;
    top:-120px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(49,130,246,.08),
        transparent 70%
    );
}

/* =========================================
   MOCKUP IMAGE
========================================= */

.cta-bg{

    position:absolute;

    right:-120px;
    top:50%;

    transform:
    translateY(-50%)
    rotate(-8deg);

    width:700px;

    pointer-events:none;

    opacity:.08;
}

.cta-bg img{

    width:100%;

    display:block;
}

/* =========================================
   CONTENT
========================================= */

.cta-content{

    position:relative;

    z-index:10;

    max-width:620px;
}
.cta-logo{

    margin-bottom:24px;
}

.cta-logo img{

    height:18px;
    width:auto;

    display:block;
}

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

.cta-content h2{

    margin-top:24px;
  font-size:
    clamp(36px,4vw,44px);

    line-height:1.3;

    letter-spacing:-0.03em;

    color:#fff;
}

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

.cta-content p{

    margin-top:24px;

    font-size:20px;

    line-height:1.8;

    color:
    rgba(255,255,255,.72);
}

/* =========================================
   BUTTONS
========================================= */

.cta-buttons{

    display:flex;

    gap:14px;

    margin-top:42px;
}

.cta-btn-primary{

    display:inline-flex;

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

    padding:16px 28px;

    border-radius:999px;

    background:var(--primary);

    color:#fff;

    font-weight:600;

    transition:.3s ease;
}

.cta-btn-primary:hover{

    transform:translateY(-2px);

    box-shadow:
    0 20px 40px rgba(49,130,246,.25);
}

.cta-btn-secondary{

    display:inline-flex;

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

    padding:16px 28px;

    border-radius:999px;

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

    color:#fff;

    transition:.3s ease;
}

.cta-btn-secondary:hover{

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

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




/* =========================================
   CONTACT PAGE
========================================= */

.contact-page{

    padding:140px 20px;
}

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

.contact-form{

    margin-top:70px;
}

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

.contact-section{

    padding:30px 0;

    border-top:1px solid #edf0f3;
}

.contact-section:first-child{

    border-top:none;

    padding-top:0;
}

.section-head{

    margin-bottom:30px;
}

.section-num{

    display:block;

    margin-bottom:10px;

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    letter-spacing:.08em;
}

.section-head h3{

    font-size:32px;

    font-weight:700;

    line-height:1.2;

    color:var(--text);
}

/* =========================================
   PROJECT TYPE
========================================= */

.service-grid{

    display:grid;

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

    gap:14px;
}

.service-btn{

    min-height:120px;

    padding:22px;

    border-radius:24px;

    border:1px solid #edf0f3;

    background:#fff;

    text-align:left;

    cursor:pointer;

    transition:.25s ease;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

.service-btn:hover{

    border-color:#d9dee5;
}

.service-btn.active{

    border-color:var(--primary);

    background:#f7fbff;

    box-shadow:
    0 0 0 3px rgba(49,130,246,.08);
}

.service-btn strong{

    display:block;

    margin-bottom:8px;

    font-size:17px;

    color:var(--text);
}

.service-btn small{

    font-size:13px;

    line-height:1.6;

    color:#8b95a1;
}

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

.form-group{

    margin-bottom:28px;
}
.form-grouptext{

    display:block;

    margin-bottom:12px;

    font-size:14px;

    font-weight:600;

    color:var(--text);
}
.form-group label{

    display:block;

    margin-bottom:12px;

    font-size:14px;

    font-weight:600;

    color:var(--text);
}

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

    width:100%;

    border:1px solid #e5e8eb;

    border-radius:18px;

    padding:16px;

    background:#fff;

    font-family:inherit;

    font-size:15px;

    color:var(--text);

    transition:.25s ease;
}

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

    height:58px;
}

.form-group textarea{

    min-height:180px;

    resize:none;
}

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

    outline:none;

    border-color:var(--primary);

    box-shadow:
    0 0 0 4px rgba(49,130,246,.08);
}

/* =========================================
   BUDGET
========================================= */

.budget-select{

    display:flex;

    gap:12px;
}

.budget-btn{

    height:54px;

    padding:0 22px;

    border-radius:16px;

    border:1px solid #e5e8eb;

    background:#fff;

    color:var(--text);

    font-family:inherit;

    cursor:pointer;

    transition:.25s ease;
}

.budget-btn.active{

    border-color:var(--primary);

    background:#f7fbff;

    box-shadow:
    0 0 0 3px rgba(49,130,246,.08);
}

.budget-wrap{

    display:none;

    margin-bottom:28px;

    padding:24px;

    border-radius:24px;

    border:1px solid #edf0f3;

    background:#fafbfd;
}

.budget-head{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:18px;
}

.budget-head span{

    color:#6b7684;
}

.budget-head strong{

    font-size:24px;

    color:var(--primary);
}

#budgetRange{

    width:100%;

    accent-color:var(--primary);
}

/* =========================================
   TIP
========================================= */

.form-tip{

    margin-bottom:12px;

    font-size:14px;

    line-height:1.7;

    color:#8b95a1;
}

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

.form-grid{

    display:grid;

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

    gap:20px;
}

/* =========================================
   AGREE
========================================= */

.agree-wrap{

    padding-top:20px;
}

.agree-wrap label{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:14px;

    color:#6b7684;
}

/* =========================================
   ERROR
========================================= */

.error-text{

    min-height:18px;

    margin-top:8px;

    font-size:13px;

    color:#ef4444;
}

.input-error{

    border-color:#ef4444 !important;

    box-shadow:
    0 0 0 4px rgba(239,68,68,.08) !important;
}

/* =========================================
   SUBMIT
========================================= */

.contact-submit{

    width:100%;

    height:66px;

    margin-top:30px;

    border:none;

    border-radius:20px;

    background:var(--text);

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.25s ease;
}

.contact-submit:hover{

    transform:translateY(-2px);

    box-shadow:
    0 16px 32px rgba(25,31,40,.12);
}

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



.required-dot{

    color:#ef4444;

    font-weight:700;

    margin-left:4px;
}
.required-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:20px;

    padding:0 8px;

    margin-left:8px;

    border-radius:999px;

    background:#fff1f2;

    color:#ef4444;

    font-size:11px;

    font-weight:600;

    vertical-align:middle;
}
.period-select{

    display:grid;

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

    gap:12px;
}

.period-btn{

    height:54px;

    border:1px solid #e5e8eb;

    border-radius:16px;

    background:#fff;

    font:inherit;

    cursor:pointer;
}

.period-btn.active{

    border-color:#3182f6;

    background:#f7fbff;

    color:#191f28;

    box-shadow:
    0 0 0 3px rgba(49,130,246,.08);
}


body,
button,
input,
textarea,
select{

    font:inherit;
}


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

.mobile-menu{
       
    position:fixed;
    inset:0;

    display:flex;
    flex-direction:column;

    padding:20px 24px 24px;
height: 100dvh;
    background:
    linear-gradient(
        180deg,
        #fff,
        #fafbfd
    );

    transform:translateX(100%);

    transition:.4s ease;

    overflow-y:auto;

    overscroll-behavior:contain;

    z-index:1001;
  
}

.mobile-menu.active{

    right:0;
}
.mobile-menu-content{

    flex:1;

    overflow-y:auto;
}

.mobile-menu::before{

    content:'';

    position:absolute;




    border-radius:50%;

    background:
    rgba(49,130,246,.08);

    filter:blur(80px);
}

.mobile-menu-label{

    font-size:12px;

    letter-spacing:.15em;

    color:#8b95a1;

    font-weight:600;
}
.mobile-link{

    display:flex;
 position:relative;
    align-items:center;

    justify-content:space-between;
 padding:18px;


    border-bottom:
    1px solid #f2f4f6;
}
.mobile-link:not(.active){

    border-radius:16px;
}

.mobile-link strong{

    display:block;

    font-size:22px;

    font-weight:700;

    color:#191f28;
}
.mobile-link span{

    display:block;

    margin-top:4px;

    font-size:13px;

    color:#8b95a1;
}

.mobile-link em{
    flex-shrink:0;

    margin-left:20px;

    font-size:18px;

    font-style:normal;

      color:#8b95a1;

    
}
.mobile-link.active em{
    color:var(--primary);
}
.mobile-link.active{
      background:
    rgba(49,130,246,.035);

    border:
    1px solid rgba(49,130,246,.08);
    border-radius:14px;

   padding:16px 18px;
}

.mobile-link.active strong{

        color:#191f28;
}
.mobile-link.active::before{

    content:'';

    position:absolute;

    left:-18px;
    top:50%;

    transform:translateY(-50%);

    width:4px;
    height:24px;

    border-radius:999px;

    background:#3182f6;
}
.mt-10p{
    margin-top: 10%;
}
.mobile-footer-text{

       margin-top:auto;

    font-size:13px;

    color:#8b95a1;

    text-align:center;

    padding-bottom:12px;



    

}
.mobile-brand{

    display:flex;

    align-items:center;

    gap:12px;
}
.mobile-brand img{

    height:34px;

    width:auto;

    flex-shrink:0;
}
.mobile-brand-text{

    display:flex;

    flex-direction:column;
}

.mobile-brand-text strong{

    font-size:18px;

    font-weight:700;

    color:#191f28;

    line-height:1.1;
}

.mobile-brand-text span{

    margin-top:2px;

    font-size:12px;

    color:#8b95a1;
}
.mobile-brand p{

    margin-top:10px;

    font-size:12px;

    color:#8b95a1;

    letter-spacing:.08em;
}
.mobile-btn{

    display:none;

    position:relative;

    width:42px;
    height:42px;

    border:none;

    border-radius:12px;

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

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(25,31,40,.06);

    cursor:pointer;

    z-index:3000;

    transition:.3s ease;
}

.mobile-btn span{

    position:absolute;

    left:50%;

    width:18px;
    height:2px;

    background:#191f28;

    border-radius:999px;

    transition:.3s ease;
}

.mobile-btn span:nth-child(1){

    top:14px;

    transform:translateX(-50%);
}

.mobile-btn span:nth-child(2){

    top:20px;

    transform:translateX(-50%);
}

.mobile-btn span:nth-child(3){

    top:26px;

    transform:translateX(-50%);
}

/* ACTIVE */

.mobile-btn.active{

    background:#191f28;
}

.mobile-btn.active span{

    background:#fff;
}

.mobile-btn.active span:nth-child(1){

    top:20px;

    transform:
    translateX(-50%)
    rotate(45deg);
}

.mobile-btn.active span:nth-child(2){

    opacity:0;
}

.mobile-btn.active span:nth-child(3){

    top:20px;

    transform:
    translateX(-50%)
    rotate(-45deg);
}

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


.mobile-menu.active{

    transform:
    translateX(0);
}

/* =========================================
   GLOW
========================================= */

.mobile-menu::before{

    content:'';

    position:absolute;

    border-radius:50%;

    background:
    rgba(49,130,246,.08);

    filter:blur(90px);
}

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

.mobile-menu-top{

     position:relative;

    padding-bottom:24px;

   margin-bottom:32px;
}
.mobile-menu-top::after{
    height:1px;

    background:
    linear-gradient(
        90deg,
        rgba(25,31,40,.08),
        rgba(25,31,40,.02)
    );
    content:'';

    position:absolute;

    left:0;
    bottom:0;

    width:100%;
  
}
.mobile-menu-logo{

    display:flex;

    align-items:center;
}

.mobile-menu-logo img{

    height:30px;

    width:auto;
}
.mobile-menu-label{

    font-size:12px;

    letter-spacing:.15em;

    color:#8b95a1;

    font-weight:600;
}

/* =========================================
   LINK
========================================= */


/* =========================================
   CONTACT
========================================= */

.mobile-contact{

      height:56px;

    border-radius:16px;

    background:#191f28;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:15px;

    font-weight:700;

    transition:.3s ease;

    margin-bottom:env(safe-area-inset-bottom);
}

.mobile-contact:hover{

    transform:translateY(-2px);
}
.mobile-contact:hover{

    transform:
    translateY(-2px);
}

/* =========================================
   BODY LOCK
========================================= */

body.menu-open{

    overflow:hidden;
}

.slider-arrow{
  transition:.3s ease;
     position:absolute;

    top:70px;

    z-index:20;

    width:56px;
    height:56px;

    border:none;

    background:none;

    padding:0;

    cursor:pointer;
}
.slider-arrow.disabled{

    opacity:.25;

    pointer-events:none;

    cursor:default;

    transform:scale(.95);
}
.slider-arrow:hover{


}

.slider-arrow img{

  
    width:100%;
    height:100%;

    display:block;
}

.prev{

    left:-6%;
}

.next{

    right:-6%;
}
.subtitle{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--primary);
    margin-bottom: 20px;
}

.project-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    height:38px;

    padding:0 16px;

    margin-bottom:18px;

    border-radius:999px;

    background:#fff;

    border:1px solid rgba(0,0,0,.06);

    font-size:12px;

    font-weight:700;

    letter-spacing:.08em;

    color:var(--text);

    box-shadow:
    0 10px 20px rgba(0,0,0,.04);
}

.badge-dot{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#22c55e;

    animation:pulseDot 2s infinite;
}

@keyframes pulseDot{

    0%,100%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:.5;
        transform:scale(1.4);
    }
}


.dot{

    width:10px;
    height:10px;

    border:none;

    border-radius:999px;

    background:#d5dbe2;

    cursor:pointer;

    transition:.3s ease;
}

.dot.active{

    width:32px;

    background:var(--primary);
}



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

.hero{

    position:relative;

    overflow:hidden;
z-index:2;
padding-bottom: 20px;

}

.hero::after{

    content:'';

    position:absolute;

    inset:0;

    background:
        url('../asset/img/background.png')
        no-repeat right center;

    background-size:58% auto;

    opacity:.95;

    pointer-events:none;
}

.hero-grid{

  
    position:relative;

    z-index:2;
    margin:0 auto;

    display:grid;


    align-items:center;

    gap:80px;
}

/* LEFT */

.hero-content{

    position:relative;

    z-index:10;
}

.hero-label{

    display:block;

    margin-bottom:24px;

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    letter-spacing:.12em;

    text-transform:uppercase;
}

.hero-content h1{

    font-size:clamp(54px,5vw,75px);

    line-height:1.15;

       letter-spacing: -0.03em;

    font-weight:800;

    color:var(--text);

    margin-bottom:32px;
}

.hero-content p{

    max-width:520px;

    font-size:22px;

    line-height:1.8;

    color:var(--text-secondary);
}

/* BUTTONS */

.hero-buttons{

    display:flex;
   
    gap:14px;

    margin-top:40px;
}

.hero-buttons a{

    min-width:180px;
}
.naho{
    width: 500px;
}
/* STATS */
.hero-stats{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}
.w100{
    width: 100%;
}
.hero-stat-card{
    padding:12px 18px;
    border-radius:999px;

    background:rgba(255,255,255,.8);
    backdrop-filter:blur(12px);

    border:1px solid rgba(49,130,246,.08);

    display:flex;
    align-items:center;
    gap:10px;
}

.hero-stat-card strong{
    font-size:14px;
    font-weight:700;
    color:#191f28;
}

.hero-stat-card span{
    font-size:13px;
    color:#8b95a1;
}

.hero-trust{
    display:flex;
    gap:40px;

    margin-top:40px;
}

.trust-item{
    position:relative;
}

.trust-item:not(:last-child)::after{
    content:'';

    position:absolute;

    right:-20px;
    top:50%;

    width:1px;
    height:34px;

    background:#edf0f3;

    transform:translateY(-50%);
}

.trust-item strong{
    display:block;

    font-size:15px;
    font-weight:700;

    color:#191f28;

    margin-bottom:4px;
}

.trust-item span{
    display:block;

    font-size:13px;

    color:#8b95a1;

    line-height:1.5;
}

.stat-item{

        position:relative;

    overflow:hidden;

    border-radius:20px;

    padding:18px 22px;

    background:
    linear-gradient(
        135deg,
        rgba(49,130,246,.08),
        rgba(49,130,246,.02)
    );

    border:
    1px solid rgba(49,130,246,.12);

    transition:.4s ease;
}
.stat-item::before{

     content:'';

    position:absolute;

    top:0;

    left:-200%;

    width:80px;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(49,130,246,.15),
        transparent
    );

    transform:skewX(-20deg);

    animation:
    shine 5s infinite;
}
.stat-item:nth-child(2)::before{
    animation-delay:2s;
}

.stat-item:nth-child(3)::before{
    animation-delay:4s;
}
@keyframes shine{

    0%{
        left:-200%;
    }

    30%{
        left:150%;
    }

    100%{
        left:150%;
    }

}
.stat-item:not(:last-child)::after{

    content:'';

    position:absolute;

    top:4px;

    right:-25px;

    width:1px;

    height:46px;

    background:#e5e8eb;
}

.stat-item strong{

       font-size:52px;

    font-weight:800;

    background:
    linear-gradient(
        180deg,
        #191f28,
        #3182f6
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.stat-item span{

    display:block;

    margin-top:6px;

    color:#8b95a1;

    font-size:15px;
}

/* RIGHT */

.hero-mockup{

    position:relative;

    display:flex;

    justify-content:flex-end;
}

.hero-mockup img{

    width:120%;

    max-width:none;

    display:block;

    user-select:none;

    pointer-events:none;
}

/* ==========================
   TABLET
========================== */

/* ==========================
   PROJECT SHOWCASE
========================== */

.project-showcase{

    padding:120px 20px;
}

.section-top{

    display:flex;

    justify-content:space-between;

    

    gap:20px;
    align-items: flex-end;
    margin-bottom:40px;
}



.section-top h2{

    font-size:36px;

    line-height:1.1;

    letter-spacing:-0.04em;

    color:var(--text);
}

.section-top a{

    color:#6b7684;

    font-size:15px;

    transition:.3s;
}

.section-top a:hover{

    transform:translateX(4px);

    color:var(--text);
}

/* GRID */

.project-grid{

  display:flex;

    gap:24px;

    overflow-x:auto;



    scrollbar-width:none;

    cursor:grab;
 scroll-behavior:smooth;
    user-select:none;
 scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
}

.project-grid.dragging{

    cursor:grabbing;
}
.project-grid.active{

    cursor:grabbing;
}
.project-slider-wrap{
    position:relative;
}
.project-grid::-webkit-scrollbar{
    display:none;
}

.project-card{

    flex:0 0 calc((100% - 72px) / 4);
  scroll-snap-align:start;
    min-width:280px;
}

/* CARD */

.project-card{

    display:block;
}

.project-thumb{

    overflow:hidden;

    border-radius:18px;

    aspect-ratio:16/10;

    background:#f7f7f7;

    margin-bottom:16px;
}

.project-thumb img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.5s ease;
}

.project-card:hover img{

    transform:scale(1.04);
}
.project-card h3{

    font-size:22px;

    line-height:1.3;

    margin-bottom:8px;

    letter-spacing:-0.03em;
}

.project-card p{

    font-size:14px;

    line-height:1.7;

    color:#8b95a1;
}
.hero-glow{
 
  position:absolute;




    pointer-events:none;

  


top:-250px;
right:-350px;

width:1200px;
height:900px;



     background:
    radial-gradient(
        ellipse at center,
        rgba(49,130,246,.35) 0%,
        rgba(49,130,246,.18) 25%,
        rgba(49,130,246,.08) 45%,
        rgba(49,130,246,.03) 60%,
        transparent 80%
    );

    filter:blur(90px);

    opacity:1;

    pointer-events:none;

    z-index:1;
}

.faq-section{
    overflow:hidden;
}

.faq-list{
    max-width:900px;
    margin:80px auto 0;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    overflow:hidden;
    transition:.3s;
}

.faq-item:hover{
    border-color:#d5dbe1;
    transform:translateY(-2px);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;

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

    padding:32px;
    text-align:left;
}

.faq-question span{
    font-size:20px;
    font-weight:700;
    color:var(--text);
    line-height:1.5;
}

@media (max-width:860px){
 .hero-glow{

       display: none;

    }
    .faq-list{
        margin-top:50px;
        gap:12px;
    }

    .faq-item{
        border-radius:22px;
    }

    .faq-question{
        padding:22px;
        gap:16px;
    }

    .faq-question span{
        font-size:16px;
    }

    .faq-answer{
        padding:0 22px;
    }

    .faq-answer p{
        font-size:15px;
        padding-bottom:22px;
    }

    .faq-icon{
        width:36px;
        height:36px;
        font-size:20px;
    }

}
.faq-section{
    overflow:hidden;
}

.faq-tabs{
    display:flex;
  
    gap:12px;
    margin-top:60px;
    flex-wrap:wrap;
}

.faq-tab{
    border:none;
    background:#f5f7fa;
    color:var(--text-secondary);
    padding:14px 24px;
    border-radius:999px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.faq-tab.active{
    background:var(--primary);
    color:#fff;
}

.faq-content{
    display:none;
   
    margin:40px auto 0;
}

.faq-content.active{
    display:block;
}

.faq-item{
    border:1px solid var(--border);
    border-radius:24px;
    background:#fff;
    margin-bottom:16px;
    overflow:hidden;
    transition:.3s;
}

.faq-item.active{
    border-color:var(--primary);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;

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

    padding:30px;
    text-align:left;
}

.faq-question span{
    font-size:18px;
    font-weight:700;
    color:var(--text);
    line-height:1.5;
}


.faq-icon{
    position:relative;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#f5f7fa;
    flex-shrink:0;
    transition:.3s;
}

.faq-icon::before,
.faq-icon::after{
    content:'';
    position:absolute;

    top:50%;
    left:50%;

    width:14px;
    height:2px;

    background:#191f28;

    border-radius:999px;

    transition:.3s;
}

.faq-icon::before{
    transform:translate(-50%,-50%);
}

.faq-icon::after{
    transform:translate(-50%,-50%) rotate(90deg);
}

.faq-item.active .faq-icon{
    background:var(--primary);
}

.faq-item.active .faq-icon::before{
    background:#fff;
    transform:translate(-50%,-50%) rotate(45deg);
}

.faq-item.active .faq-icon::after{
    background:#fff;
    transform:translate(-50%,-50%) rotate(-45deg);
}
.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 30px;
    transition:.35s ease;
}

.faq-answer p{
    padding-bottom:30px;
    line-height:1.8;
    color:var(--text-secondary);
}

.faq-item.active .faq-answer{
    max-height:300px;
}



@media(max-width:860px){

    .faq-tabs{
        justify-content:flex-start;
        overflow:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
    }

    .faq-tab{
        flex-shrink:0;
        padding:12px 18px;
        font-size:14px;
    }

    .faq-question{
        padding:22px;
    }

    .faq-question span{
        font-size:16px;
    }

    .faq-answer{
        padding:0 22px;
    }

    .faq-answer p{
        font-size:15px;
        padding-bottom:22px;
    }

    .faq-icon{
        width:34px;
        height:34px;
        font-size:20px;
    }

}
/* ==========================
   MOBILE
========================== */

@media (max-width:860px){

    .hero-trust{
        flex-direction:column;
        gap:20px;

        margin-top:32px;
    }

  

  

    .trust-item:not(:last-child)::after{
        display:none;
    }

    .trust-item strong{
        font-size:14px;
    }

    .trust-item span{
        font-size:12px;
    }
    .naho{
    width: 100%;
}
 .hero-stats{

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

        gap:10px;
    }

    .hero-stat-card{

        padding:16px;
    }

    .hero-stat-card strong{

        font-size:28px;
    }

    .hero-stat-card span{

        font-size:12px;
    }

.slider-arrow{
    width: 34px;
    height: 34px;
}
.next{
    right: -5%;
}
.prev{
    left: -5%;
}
    .project-showcase{

        padding:80px 20px;
    }

    .section-top{

        flex-direction:column;

        align-items:flex-start;
    }

    .section-top h2{

        font-size:24px;
    }

    .project-grid{

        display:flex;

        gap:16px;

        overflow-x:auto;

        padding-bottom:10px;

        scroll-snap-type:x mandatory;
    }

    .project-grid::-webkit-scrollbar{

        display:none;
    }

    .project-card{

        flex:0 0 300px;

      
    }


    .hero{

        padding:60px 20px 0;
    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .hero-content{

        order:1;
    }

    .hero-mockup{

        order:2;

        justify-content:center;
    }

    .hero-label{

        font-size:13px;
    }

    .hero-content h1{

        font-size:48px;

        line-height:1.08;

        margin-bottom:24px;
    }

    .hero-content p{

        font-size:17px;

        line-height:1.8;
    }

    .hero-buttons{

        flex-direction:column;

        gap:12px;
    }

    .hero-buttons a{

        width:100%;
    }


    .stat-item{

        min-width:120px;
    }

    .stat-item strong{

        font-size:40px;
    }

    .stat-item:not(:last-child)::after{

        display:none;
    }

    .hero-mockup img{

        width:100%;

        max-width:700px;
    }

}

/* ==========================
   SMALL MOBILE
========================== */


/* ===================================
   MOBILE
=================================== */
@media (max-width: 860px) {
.hero::after {
  
    background: none;
 
}
    .footer{
        padding:80px 20px 30px;
    }

    .footer-top{
        flex-direction:column;
        gap:40px;
    }

    .footer-contact{
        align-items:flex-start;
        width:100%;
    }

    .footer-cta{
        width:100%;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-links{
        flex-wrap:wrap;
        gap:16px;
    }

    .footer-slogan{
        font-size:20px;
    }

    .container {
        height: 54px;
        padding: 0 20px;
    }

     .nav{

        display:none;
    }

  

    .header .container{

        height:72px;
    }

    .logo img{

        height:28px;
    }



    .mobile-br {
        display: block;
    }


    
    .period-select{

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

    .period-last{

        grid-column:
        span 2;
    }


.contact-section{

    padding:20px 0;

   
}
    .contact-page{

        padding:100px 20px;
    }

    .contact-form{

        margin-top:50px;
    }

    .section-head h3{

        font-size:24px;
    }

    .service-grid{

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

    .form-grid{

        grid-template-columns:1fr;
    }

    .budget-select{

        flex-direction:column;
    }

    .service-btn{
  padding:16px;

        min-height:100px;
    }

    .cta{

        padding:100px 20px;
    }

    .cta-box{

        padding: 30px;
    }

    .cta-content{

        max-width:100%;
    }

    .cta-content h2{

        font-size:28px;
    }

    .cta-content p{

        font-size:16px;
    }

    .cta-buttons{

        flex-direction:column;
    }

    .cta-btn-primary,
    .cta-btn-secondary{

        width:100%;
    }

    .cta-bg{

        display:none;
    }
    .process-step{

        display:grid;

        grid-template-columns:24px 1fr;

        column-gap:16px;

        align-items:start;
          padding:0 0 24px;

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

    .process-dot{

        margin-top:5px;

        grid-row:1 / span 2;
    }

    .process-step h3{

        margin:0 0 8px 0;

        font-size:22px;
    }

    .process-step p{

        margin:0;
    }


.card-left,
.card-right{

    display:none;
}
    .process-step:last-child{

        border-bottom:none;
    }


    .process{
       padding: 100px 20px;
    }

    .process-inner{

        padding:30px;
    }

    .process-top h2{

        font-size:42px;
    }

    .process-top p{

        font-size:16px;
    }

    .process-line{

        grid-template-columns:1fr;

        gap:30px;
    }

    .process-line::before{

       display: none;
    }

    .process-btn{

        width:100%;
    }

    .process-mockup{

        display:none;
    }

    .top{
    top:76px !important;
}
    .services{
        padding:100px 20px;
    }

    .services-head{
        margin-bottom:40px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        min-height:280px;

        padding:20px;

        border-radius:24px;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(5){
        margin-top:0;
    }

    .service-card h3{
        font-size:26px;
    }

    .service-card p{
        max-width:180px;
        font-size:14px;
    }

    .service-image{

        width:62%;
        right:-10%;
    }

    .service-image img{
        opacity:.55;
    }


    .mobile-menu{

        display:block;
    }
        .mobile-btn{

        display:block;
    }
    .process-line::after{

 display: none;
}

.proof-item {
padding: 18px;
}
}



@media (min-width: 861px){

    .mobile-menu{

        display:none;
    }

}
