*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
background:#070707;
color:#ffffff;
font-family:'Inter',sans-serif;
overflow-x:hidden;
position:relative;
}

a{
text-decoration:none;
color:inherit;
}

img{
display:block;
max-width:100%;
}

.container{
width:100%;
max-width:1280px;
margin:0 auto;
padding:0 32px;
position:relative;
z-index:2;
}

.grid-bg{
position:fixed;
inset:0;

background-image:
linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);

background-size:60px 60px;

z-index:-5;
}

.noise{
position:fixed;
inset:0;

background-image:url('https://grainy-gradients.vercel.app/noise.svg');

opacity:0.05;

pointer-events:none;

z-index:-4;
}

.blur-ball{
position:fixed;
border-radius:50%;
filter:blur(120px);
pointer-events:none;
z-index:-3;
opacity:0.5;
animation:floatBall 12s ease-in-out infinite;
}

.blur-ball-1{
width:420px;
height:420px;
background:#ff5a1f;
top:-120px;
left:-120px;
}

.blur-ball-2{
width:320px;
height:320px;
background:#7b2cff;
right:-80px;
top:20%;
animation-delay:2s;
}

.blur-ball-3{
width:360px;
height:360px;
background:#ff5a1f;
bottom:-140px;
left:20%;
animation-delay:4s;
}

.blur-ball-4{
width:260px;
height:260px;
background:#7b2cff;
right:10%;
bottom:10%;
animation-delay:6s;
}

@keyframes floatBall{

0%{
transform:translateY(0px) translateX(0px);
}

50%{
transform:translateY(-40px) translateX(30px);
}

100%{
transform:translateY(0px) translateX(0px);
}

}

.spark{
position:fixed;
width:6px;
height:6px;
border-radius:50%;
background:#ff5a1f;
box-shadow:0 0 20px #ff5a1f;
pointer-events:none;
z-index:-2;
animation:sparkFloat linear infinite;
opacity:0;
}

.spark-1{
left:10%;
animation-duration:8s;
animation-delay:1s;
}

.spark-2{
left:30%;
animation-duration:11s;
animation-delay:2s;
}

.spark-3{
left:50%;
animation-duration:9s;
animation-delay:3s;
}

.spark-4{
left:70%;
animation-duration:13s;
animation-delay:1s;
}

.spark-5{
left:85%;
animation-duration:10s;
animation-delay:4s;
}

.spark-6{
left:60%;
animation-duration:12s;
animation-delay:6s;
}

@keyframes sparkFloat{

0%{
transform:translateY(100vh) scale(0);
opacity:0;
}

10%{
opacity:1;
}

90%{
opacity:1;
}

100%{
transform:translateY(-10vh) scale(1.5);
opacity:0;
}

}

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:1000;

backdrop-filter:blur(20px);

background:
rgba(8,8,8,0.72);

border-bottom:
1px solid rgba(255,255,255,0.06);
}

.nav{
height:90px;

display:flex;
align-items:center;
justify-content:space-between;
}

.logo img{
height:44px;
}

.desktop-nav{
display:flex;
align-items:center;
gap:38px;
}

.desktop-nav a{
font-size:15px;
font-weight:500;
color:rgba(255,255,255,0.72);

transition:0.3s ease;
}

.desktop-nav a:hover{
color:#ffffff;
}

.header-socials,
.footer-socials{
display:flex;
align-items:center;
gap:14px;
}

.social-icon{
width:48px;
height:48px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:
rgba(255,255,255,0.04);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(14px);

color:#ffffff;

position:relative;

overflow:hidden;

transition:
0.35s ease;
}

.social-icon svg{
width:22px;
height:22px;
}

.social-icon::before{
content:'';

position:absolute;

width:120%;
height:120%;

background:
linear-gradient(
45deg,
transparent,
rgba(255,90,31,0.45),
transparent
);

transform:
translateX(-140%)
rotate(25deg);

transition:
0.7s ease;
}

.social-icon:hover::before{

transform:
translateX(140%)
rotate(25deg);

}

.social-icon:hover{

transform:
translateY(-4px)
scale(1.08);

background:
rgba(255,90,31,0.12);

border-color:
rgba(255,90,31,0.35);

box-shadow:
0 0 24px rgba(255,90,31,0.3);

color:#ff5a1f;
}

.mobile-button{
display:none;

width:54px;
height:54px;

border:none;

border-radius:18px;

background:
rgba(255,255,255,0.04);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(14px);

cursor:pointer;

position:relative;

z-index:1200;

transition:
0.35s ease;
}

.mobile-button:hover{
transform:
translateY(-2px);

border-color:
rgba(255,90,31,0.25);

background:
rgba(255,90,31,0.08);
}

.mobile-button span{
display:block;

width:24px;
height:2px;

background:#ffffff;

margin:5px auto;

border-radius:999px;

transition:
0.35s cubic-bezier(.22,1,.36,1);
}

.mobile-button.active span:nth-child(1){
transform:
translateY(7px)
rotate(45deg);
}

.mobile-button.active span:nth-child(2){
opacity:0;
transform:scaleX(0);
}

.mobile-button.active span:nth-child(3){
transform:
translateY(-7px)
rotate(-45deg);
}

.mobile-menu{
position:fixed;

top:110px;
left:20px;
right:20px;

padding:26px;

display:flex;
flex-direction:column;
gap:10px;

border-radius:34px;

background:
linear-gradient(
180deg,
rgba(18,18,18,0.96),
rgba(10,10,10,0.92)
);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(26px);

box-shadow:
0 40px 120px rgba(0,0,0,0.45);

transform:
translateY(-40px)
scale(0.94);

opacity:0;

pointer-events:none;

transition:
0.45s cubic-bezier(.22,1,.36,1);

overflow:hidden;

z-index:999;
}

.mobile-menu::before{
content:'';

position:absolute;

width:260px;
height:260px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,90,31,0.18),
transparent 70%
);

top:-120px;
right:-80px;

filter:blur(30px);

pointer-events:none;
}

.mobile-menu::after{
content:'';

position:absolute;

inset:0;

background-image:
linear-gradient(rgba(255,255,255,0.03) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,0.03) 1px,transparent 1px);

background-size:32px 32px;

opacity:0.35;

pointer-events:none;
}

.mobile-menu.active{
transform:
translateY(0px)
scale(1);

opacity:1;

pointer-events:auto;
}

.mobile-menu a{
position:relative;

display:flex;
align-items:center;
justify-content:space-between;

padding:18px 20px;

border-radius:20px;

font-size:20px;
font-weight:700;

background:
rgba(255,255,255,0.03);

border:
1px solid rgba(255,255,255,0.04);

transition:
0.35s ease;

overflow:hidden;

z-index:2;
}

.mobile-menu a::before{
content:'';

position:absolute;

inset:0;

background:
linear-gradient(
90deg,
rgba(255,90,31,0.16),
transparent
);

opacity:0;

transition:
0.35s ease;
}

.mobile-menu a::after{
content:'↗';

font-size:16px;

opacity:0.45;

transition:
0.35s ease;
}

.mobile-menu a:hover{
transform:
translateX(6px);

border-color:
rgba(255,90,31,0.22);

background:
rgba(255,90,31,0.08);
}

.mobile-menu a:hover::before{
opacity:1;
}

.mobile-menu a:hover::after{
opacity:1;

transform:
translateX(4px)
translateY(-2px);
}

.hero{
min-height:100vh;

display:flex;
align-items:center;

position:relative;

overflow:hidden;

padding-top:120px;
padding-bottom:80px;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:80px;
align-items:center;
}

.hero-left{
position:relative;
z-index:2;
}

.hero-badge{
display:inline-flex;
align-items:center;
gap:10px;

padding:12px 18px;

border-radius:999px;

background:
rgba(255,255,255,0.05);

border:
1px solid rgba(255,255,255,0.08);

font-size:13px;
font-weight:600;
letter-spacing:1px;

margin-bottom:28px;
}

.hero h1{
font-size:110px;
line-height:0.92;
font-weight:900;
letter-spacing:-5px;

margin-bottom:28px;

position:relative;
}

.word-splashes{
position:relative;
display:inline-block;
color:#ff5a1f;
}

.splash{
position:absolute;
width:10px;
height:10px;
border-radius:50%;
background:#ff5a1f;

opacity:0;

animation:splashAnim 3s infinite;
}

.s1{
top:10px;
left:20px;
animation-delay:0s;
}

.s2{
top:0;
right:10px;
animation-delay:0.2s;
}

.s3{
bottom:10px;
left:40px;
animation-delay:0.4s;
}

.s4{
bottom:-5px;
right:20px;
animation-delay:0.6s;
}

.s5{
top:50%;
left:-10px;
animation-delay:0.8s;
}

.s6{
top:40%;
right:-12px;
animation-delay:1s;
}

.s7{
top:-10px;
left:50%;
animation-delay:1.2s;
}

.s8{
bottom:-12px;
left:60%;
animation-delay:1.4s;
}

@keyframes splashAnim{

0%{
transform:
scale(0)
translate(0,0);

opacity:0;
}

20%{
opacity:1;
}

100%{
transform:
scale(1.8)
translate(
calc((rand() - 0.5) * 80px),
calc((rand() - 0.5) * 80px)
);

opacity:0;
}

}

.hero p{
max-width:620px;

font-size:20px;
line-height:1.8;

color:
rgba(255,255,255,0.72);

margin-bottom:38px;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
margin-bottom:40px;
}

.btn-primary,
.btn-secondary{
height:62px;
padding:0 34px;

display:inline-flex;
align-items:center;
justify-content:center;

border-radius:18px;

font-size:16px;
font-weight:700;

transition:0.35s ease;

position:relative;

overflow:hidden;
}

.btn-primary{
background:#ff5a1f;
color:#ffffff;

box-shadow:
0 0 30px rgba(255,90,31,0.35);
}

.btn-primary:hover{
transform:
translateY(-4px);

box-shadow:
0 0 45px rgba(255,90,31,0.45);
}

.btn-secondary{
border:
1px solid rgba(255,255,255,0.12);

background:
rgba(255,255,255,0.04);

backdrop-filter:blur(10px);
}

.btn-secondary:hover{
transform:
translateY(-4px);

border-color:
rgba(255,255,255,0.28);
}

.large{
padding:0 48px;
height:68px;
font-size:17px;
}

.brands-row{
display:flex;
gap:26px;
flex-wrap:wrap;
}

.brands-row span{
font-size:14px;
font-weight:700;
letter-spacing:2px;

color:
rgba(255,255,255,0.35);
}

.hero-right{
position:relative;
}

.hero-card{
position:relative;

height:680px;

border-radius:40px;

overflow:hidden;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.08),
rgba(255,255,255,0.02)
);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(24px);
}

.hero-card-grid{
position:absolute;
inset:0;

background-image:
linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px),
linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px);

background-size:42px 42px;

opacity:0.4;
}

.hero-card-light{
position:absolute;

width:420px;
height:420px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,90,31,0.45),
transparent 70%
);

top:50%;
left:50%;

transform:
translate(-50%,-50%);

filter:blur(20px);

animation:
pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow{

0%{
transform:
translate(-50%,-50%)
scale(1);
}

50%{
transform:
translate(-50%,-50%)
scale(1.08);
}

100%{
transform:
translate(-50%,-50%)
scale(1);
}

}

.hero-card-ring{
position:absolute;

border-radius:50%;

border:
1px solid rgba(255,255,255,0.08);
}

.hero-card-ring-1{
width:520px;
height:520px;

top:50%;
left:50%;

transform:
translate(-50%,-50%);

animation:
rotateRing 22s linear infinite;
}

.hero-card-ring-2{
width:360px;
height:360px;

top:50%;
left:50%;

transform:
translate(-50%,-50%);

animation:
rotateRingReverse 18s linear infinite;
}

@keyframes rotateRing{

from{
transform:
translate(-50%,-50%)
rotate(0deg);
}

to{
transform:
translate(-50%,-50%)
rotate(360deg);
}

}

@keyframes rotateRingReverse{

from{
transform:
translate(-50%,-50%)
rotate(360deg);
}

to{
transform:
translate(-50%,-50%)
rotate(0deg);
}

}

.hero-bird{
position:absolute;

width:340px;

top:50%;
left:50%;

transform:
translate(-50%,-50%);

z-index:2;

filter:
drop-shadow(0 0 40px rgba(255,90,31,0.45));

animation:
birdFloat 5s ease-in-out infinite;
}

@keyframes birdFloat{

0%{
transform:
translate(-50%,-50%)
translateY(0px);
}

50%{
transform:
translate(-50%,-50%)
translateY(-18px);
}

100%{
transform:
translate(-50%,-50%)
translateY(0px);
}

}

.hero-gradient{
position:absolute;
border-radius:50%;
filter:blur(120px);
opacity:0.35;
pointer-events:none;
}

.hero-gradient-1{
width:420px;
height:420px;

background:#ff5a1f;

top:-120px;
left:-120px;
}

.hero-gradient-2{
width:320px;
height:320px;

background:#7b2cff;

bottom:-80px;
right:0;
}

.hero-gradient-3{
width:240px;
height:240px;

background:#ff5a1f;

right:20%;
top:20%;
}

.hero-bg-lines{
position:absolute;
inset:0;

background:
radial-gradient(
circle at center,
rgba(255,255,255,0.04),
transparent 60%
);

pointer-events:none;
}

.rotating-ring{
position:absolute;
border-radius:50%;

border:
1px dashed rgba(255,255,255,0.08);

pointer-events:none;
}

.ring-1{
width:700px;
height:700px;

top:-200px;
right:-200px;

animation:
rotateRing 40s linear infinite;
}

.ring-2{
width:520px;
height:520px;

bottom:-180px;
left:-180px;

animation:
rotateRingReverse 35s linear infinite;
}

.ring-3{
width:340px;
height:340px;

top:40%;
left:50%;

animation:
rotateRing 28s linear infinite;
}

.floating-orb{
position:absolute;
border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,255,255,0.35),
transparent 70%
);

filter:blur(12px);

animation:
floatOrb 8s ease-in-out infinite;
}

.orb-1{
width:14px;
height:14px;

top:18%;
left:12%;
}

.orb-2{
width:20px;
height:20px;

top:70%;
right:16%;

animation-delay:2s;
}

.orb-3{
width:10px;
height:10px;

top:45%;
right:40%;

animation-delay:4s;
}

@keyframes floatOrb{

0%{
transform:
translateY(0px);
}

50%{
transform:
translateY(-24px);
}

100%{
transform:
translateY(0px);
}

}

.section{
padding:140px 0;
position:relative;
}

.section-top{
margin-bottom:70px;
}

.section-badge{
display:inline-flex;
align-items:center;

padding:12px 18px;

border-radius:999px;

background:
rgba(255,90,31,0.12);

border:
1px solid rgba(255,90,31,0.2);

color:#ff5a1f;

font-size:13px;
font-weight:700;
letter-spacing:1px;

margin-bottom:24px;
}

.purple-badge{
background:
rgba(123,44,255,0.12);

border:
1px solid rgba(123,44,255,0.24);

color:#a359ff;
}

.section h2,
.section-title{
font-size:82px;
line-height:0.95;
font-weight:900;
letter-spacing:-4px;
}

.page-hero{
padding-top:180px;
padding-bottom:40px;
}

.page-description{
max-width:760px;

font-size:20px;
line-height:1.8;

color:
rgba(255,255,255,0.72);

margin-top:34px;
}

.services-section,
.projects-page-section,
.about-section,
.contact-section{
padding-top:20px;
}

.services-grid{
display:grid;
grid-template-columns:
repeat(3,1fr);

gap:28px;
}

.service-card{
position:relative;

padding:42px;

border-radius:34px;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.02)
);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(20px);

overflow:hidden;

transition:
0.45s ease;
}

.service-card::before{
content:'';

position:absolute;
inset:0;

background:
linear-gradient(
135deg,
rgba(255,90,31,0.08),
transparent 60%
);

opacity:0;

transition:
0.45s ease;
}

.service-card:hover::before{
opacity:1;
}

.service-card:hover{
transform:
translateY(-10px);

border-color:
rgba(255,90,31,0.25);

box-shadow:
0 30px 80px rgba(0,0,0,0.35);
}

.service-icon{
width:72px;
height:72px;

border-radius:22px;

display:flex;
align-items:center;
justify-content:center;

background:
linear-gradient(
135deg,
rgba(255,90,31,0.22),
rgba(255,90,31,0.08)
);

border:
1px solid rgba(255,90,31,0.25);

color:#ff5a1f;

margin-bottom:26px;

position:relative;

overflow:hidden;

box-shadow:
0 0 30px rgba(255,90,31,0.16);

transition:
0.35s ease;
}

.service-icon.purple{
background:
linear-gradient(
135deg,
rgba(163,89,255,0.22),
rgba(163,89,255,0.08)
);

border:
1px solid rgba(163,89,255,0.24);

color:#a359ff;

box-shadow:
0 0 30px rgba(163,89,255,0.16);
}

.service-icon::before{
content:'';

position:absolute;

width:160%;
height:160%;

background:
linear-gradient(
45deg,
transparent,
rgba(255,255,255,0.18),
transparent
);

transform:
rotate(25deg)
translateX(-140%);

transition:
0.8s ease;
}

.service-card:hover .service-icon::before{
transform:
rotate(25deg)
translateX(140%);
}

.service-card:hover .service-icon{
transform:
translateY(-6px)
scale(1.06);
}

.service-icon svg{
width:34px;
height:34px;
}

.service-card h3{
font-size:28px;
font-weight:800;
line-height:1.1;

margin-bottom:18px;
}

.service-card p{
font-size:17px;
line-height:1.8;

color:
rgba(255,255,255,0.7);
}

.home-sales-section{
padding-top:40px;
}

.section-top.compact{
margin-bottom:42px;
}

.sales-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}

.sales-card{
position:relative;
min-height:250px;
padding:32px;
border-radius:26px;
background:rgba(255,255,255,0.82);
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.10);
overflow:hidden;
}

.sales-card::before{
content:'';
position:absolute;
inset:auto -40px -70px auto;
width:170px;
height:170px;
border-radius:50%;
background:radial-gradient(circle,rgba(33,183,207,0.18),rgba(33,183,207,0));
pointer-events:none;
}

.sales-number{
display:inline-flex;
align-items:center;
justify-content:center;
width:48px;
height:48px;
border-radius:16px;
background:rgba(33,183,207,0.10);
border:1px solid rgba(33,183,207,0.18);
color:#247fa8;
font-size:13px;
font-weight:900;
letter-spacing:0.8px;
margin-bottom:26px;
}

.sales-card h3{
font-size:28px;
line-height:1.08;
font-weight:900;
letter-spacing:-0.8px;
color:var(--onevl-ink);
margin-bottom:16px;
}

.sales-card p{
font-size:16px;
line-height:1.68;
color:var(--onevl-muted);
}

.hero-offer{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:10px;
margin-top:28px;
max-width:760px;
}

.hero-offer div{
padding:14px;
border-radius:18px;
background:rgba(255,255,255,0.64);
border:1px solid rgba(18,129,168,0.12);
box-shadow:0 12px 32px rgba(13,73,102,0.08);
}

.hero-offer b{
display:block;
font-size:13px;
line-height:1.25;
font-weight:900;
color:var(--onevl-ink);
margin-bottom:6px;
}

.hero-offer span{
display:block;
font-size:12px;
line-height:1.45;
font-weight:650;
color:var(--onevl-muted);
}

.process-strip{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:1px;
margin-top:24px;
padding:10px;
border-radius:26px;
background:rgba(255,255,255,0.78);
border:1px solid rgba(18,129,168,0.12);
box-shadow:0 18px 48px rgba(13,73,102,0.08);
overflow:hidden;
}

.process-strip div{
display:grid;
gap:8px;
padding:22px;
border-radius:18px;
background:rgba(247,253,254,0.76);
}

.process-strip b{
font-size:12px;
line-height:1;
letter-spacing:1px;
color:#26acc4;
}

.process-strip span{
font-size:15px;
line-height:1.45;
font-weight:750;
color:var(--onevl-ink);
}

.sales-cta{
display:grid;
grid-template-columns:minmax(0,1fr) auto;
gap:24px;
align-items:center;
margin-top:24px;
padding:28px;
border-radius:28px;
background:linear-gradient(135deg,rgba(255,255,255,0.90),rgba(230,249,252,0.82));
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.10);
}

.sales-cta h3{
font-size:30px;
line-height:1.08;
font-weight:900;
letter-spacing:-0.8px;
color:var(--onevl-ink);
margin-bottom:10px;
}

.sales-cta p{
max-width:760px;
font-size:16px;
line-height:1.62;
color:var(--onevl-muted);
}

.service-landing-hero{
padding-top:180px;
padding-bottom:70px;
}

.service-landing-grid{
display:grid;
grid-template-columns:minmax(0,1fr) 360px;
gap:44px;
align-items:end;
}

.landing-actions{
display:flex;
flex-wrap:wrap;
gap:14px;
margin-top:34px;
}

.landing-card,
.landing-info-card,
.landing-faq article{
background:rgba(255,255,255,0.82);
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.10);
}

.landing-card{
padding:30px;
border-radius:26px;
}

.landing-card b{
display:block;
font-size:13px;
letter-spacing:0.9px;
text-transform:uppercase;
color:#247fa8;
margin-bottom:18px;
}

.landing-chip-list{
display:flex;
flex-wrap:wrap;
gap:10px;
}

.landing-chip-list span{
padding:10px 12px;
border-radius:999px;
background:rgba(33,183,207,0.10);
border:1px solid rgba(33,183,207,0.16);
font-size:13px;
font-weight:800;
color:var(--onevl-ink);
}

.service-landing-section{
padding-top:50px;
padding-bottom:70px;
}

.landing-info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;
}

.landing-info-card{
padding:30px;
border-radius:26px;
}

.landing-info-card h2,
.landing-faq h2{
font-size:28px;
line-height:1.08;
font-weight:900;
letter-spacing:-0.8px;
color:var(--onevl-ink);
margin-bottom:14px;
}

.landing-info-card p,
.landing-faq p{
font-size:16px;
line-height:1.68;
color:var(--onevl-muted);
}

.landing-steps{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:1px;
padding:10px;
border-radius:26px;
background:rgba(255,255,255,0.78);
border:1px solid rgba(18,129,168,0.12);
box-shadow:0 18px 48px rgba(13,73,102,0.08);
}

.landing-steps div{
display:grid;
gap:10px;
padding:22px;
border-radius:18px;
background:rgba(247,253,254,0.76);
}

.landing-steps b{
font-size:12px;
letter-spacing:1px;
color:#26acc4;
}

.landing-steps span{
font-size:15px;
line-height:1.45;
font-weight:750;
color:var(--onevl-ink);
}

.landing-faq{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
}

.landing-faq article{
padding:30px;
border-radius:26px;
}

.service-links{
display:flex;
flex-wrap:wrap;
gap:12px;
margin-top:30px;
}

.service-links a{
display:inline-flex;
align-items:center;
min-height:46px;
padding:0 16px;
border-radius:999px;
background:rgba(255,255,255,0.82);
border:1px solid rgba(18,129,168,0.13);
color:#247fa8;
font-size:14px;
font-weight:850;
text-decoration:none;
}

.services-page .services-grid{
display:flex;
grid-template-columns:none;
gap:18px;
overflow-x:auto;
overflow-y:visible;
padding:8px 4px 24px;
scroll-snap-type:x mandatory;
scrollbar-width:thin;
scrollbar-color:rgba(35,127,168,0.32) rgba(255,255,255,0.62);
}

.services-page .services-grid::-webkit-scrollbar{
height:8px;
}

.services-page .services-grid::-webkit-scrollbar-track{
background:rgba(255,255,255,0.64);
border-radius:999px;
}

.services-page .services-grid::-webkit-scrollbar-thumb{
background:linear-gradient(90deg,rgba(33,183,207,0.48),rgba(35,127,168,0.42));
border-radius:999px;
}

.services-page .service-card{
flex:0 0 clamp(220px,24vw,310px);
min-height:220px;
padding:30px;
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:space-between;
gap:24px;
cursor:pointer;
scroll-snap-align:start;
user-select:none;
}

.services-page .service-card p{
display:none;
}

.services-page .service-card h3{
margin:0;
font-size:clamp(21px,2vw,28px);
line-height:1.12;
}

.services-page .service-card.is-active{
color:#ffffff;
background:
linear-gradient(135deg,rgba(33,183,207,0.96),rgba(35,127,168,0.94));
border-color:rgba(255,255,255,0.72);
box-shadow:
0 26px 70px rgba(35,127,168,0.22),
0 1px 0 rgba(255,255,255,0.42) inset;
transform:translateY(-6px);
}

.services-page .service-card.is-active::before{
opacity:1;
background:
linear-gradient(135deg,rgba(255,255,255,0.20),transparent 58%);
}

.services-page .service-card.is-active .service-icon{
background:rgba(255,255,255,0.18);
border-color:rgba(255,255,255,0.38);
color:#ffffff;
box-shadow:0 18px 38px rgba(0,64,92,0.16);
}

.service-details-panel{
position:relative;
margin-top:22px;
padding:44px;
border-radius:30px;
background:
linear-gradient(135deg,rgba(255,255,255,0.94),rgba(246,252,255,0.86));
border:1px solid rgba(50,86,105,0.12);
box-shadow:var(--onevl-shadow);
overflow:hidden;
}

.service-details-panel::before{
content:'';
position:absolute;
inset:0;
background:
radial-gradient(circle at 12% 18%,rgba(33,183,207,0.16),transparent 34%),
radial-gradient(circle at 86% 18%,rgba(184,221,183,0.14),transparent 30%);
pointer-events:none;
}

.service-details-inner{
position:relative;
z-index:1;
display:grid;
grid-template-columns:minmax(0,1.05fr) minmax(280px,0.95fr);
gap:32px;
align-items:start;
}

.service-details-copy{
min-width:0;
}

.service-details-kicker{
font-size:13px;
font-weight:800;
letter-spacing:0.12em;
text-transform:uppercase;
color:var(--onevl-blue);
margin-bottom:14px;
}

.service-details-title{
font-size:clamp(34px,3.25vw,50px);
line-height:1.02;
font-weight:900;
letter-spacing:-0.035em;
margin:0 0 22px;
color:var(--onevl-ink);
overflow-wrap:anywhere;
}

.service-details-text{
margin:0;
font-size:18px;
line-height:1.75;
color:var(--onevl-muted);
max-width:780px;
}

.service-details-points{
display:grid;
grid-template-columns:repeat(3,minmax(0,1fr));
gap:12px;
margin-top:26px;
padding:0;
list-style:none;
}

.service-details-points li{
padding:14px 16px;
border-radius:18px;
background:rgba(255,255,255,0.68);
border:1px solid rgba(50,86,105,0.10);
font-size:15px;
font-weight:700;
color:var(--onevl-ink);
}

a.service-card{
color:inherit;
text-decoration:none;
}

.service-details-actions{
display:flex;
gap:14px;
flex-wrap:wrap;
margin-top:24px;
}

.service-details-actions .btn-primary,
.service-details-actions .btn-secondary{
height:52px;
min-width:176px;
padding:0 24px;
border-radius:16px;
}

.service-details-media{
position:relative;
margin:0;
border-radius:26px;
overflow:hidden;
background:rgba(255,255,255,0.72);
border:1px solid rgba(50,86,105,0.12);
box-shadow:0 22px 54px rgba(37,72,88,0.12);
aspect-ratio:16/10;
}

.service-details-media img{
display:block;
width:100%;
height:100%;
object-fit:cover;
}

.projects-grid{
display:grid;
grid-template-columns:
repeat(2,1fr);

gap:30px;
}

.project-card{
position:relative;

display:block;

height:auto;
aspect-ratio:900/560;

border-radius:22px;

overflow:hidden;

cursor:pointer;

color:inherit;
text-decoration:none;

background:
rgba(255,255,255,0.86);

border:
1px solid rgba(18,129,168,0.13);

box-shadow:
0 22px 56px rgba(13,73,102,0.12),
0 1px 0 rgba(255,255,255,0.86) inset;

transition:
0.5s ease;
}

.project-card:focus-visible,
.case-detail-media:focus-visible,
.case-link:focus-visible{
outline:3px solid rgba(33,183,207,0.42);
outline-offset:4px;
}

.project-card::before{
display:none;
}

.project-card picture{
display:block;
position:absolute;
inset:0;
border-radius:inherit;
overflow:hidden;
}

.project-card img{
width:100%;
height:100%;
object-fit:contain;
object-position:center top;

transition:
0.7s ease;
}

.project-card:hover img{
transform:
scale(1.025);
}

.project-overlay{
display:none;
}

.project-content{
display:none;
}

.project-type{
display:inline-flex;

padding:10px 14px;

border-radius:999px;

background:
rgba(255,255,255,0.90);

backdrop-filter:
blur(10px);

font-size:12px;
font-weight:700;
letter-spacing:1px;

margin-bottom:16px;
margin-bottom:12px;

color:#247fa8;
}

.project-content h3{
font-size:46px;
font-weight:900;
letter-spacing:-2px;

color:#ffffff;
text-shadow:0 10px 28px rgba(0,0,0,0.22);
}

.project-summary{
max-width:430px;
margin-top:10px;
font-size:15px;
line-height:1.45;
font-weight:650;
color:rgba(255,255,255,0.88);
text-shadow:0 10px 24px rgba(0,0,0,0.22);
}

.case-showcase{
display:grid;
gap:34px;
}

.case-detail{
display:grid;
grid-template-columns:minmax(0,1.35fr) minmax(360px,0.65fr);
gap:34px;
align-items:stretch;
padding:18px;
border-radius:28px;
background:rgba(255,255,255,0.78);
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 24px 70px rgba(13,73,102,0.12);
}

.case-detail:nth-child(even){
grid-template-columns:minmax(360px,0.65fr) minmax(0,1.35fr);
}

.case-detail:nth-child(even) .case-detail-media{
order:2;
}

.case-detail-media{
display:block;
position:relative;
min-height:auto;
aspect-ratio:1200/760;
border-radius:22px;
overflow:hidden;
background:linear-gradient(135deg,#ffffff 0%,#eefbfc 100%);
box-shadow:0 18px 46px rgba(13,73,102,0.12);
}

.case-detail-media::before{
content:'';
position:absolute;
inset:0;
background:linear-gradient(180deg,rgba(255,255,255,0.00) 64%,rgba(8,28,38,0.18));
z-index:1;
pointer-events:none;
}

.case-detail-media img{
width:100%;
height:100%;
object-fit:contain;
object-position:center top;
display:block;
transition:0.6s ease;
}

.case-detail:hover .case-detail-media img{
transform:scale(1.025);
}

.case-detail-body{
padding:34px 28px;
display:flex;
flex-direction:column;
align-items:flex-start;
justify-content:center;
}

.case-detail-body h3{
font-size:54px;
line-height:0.98;
font-weight:900;
letter-spacing:-2px;
margin:16px 0 20px;
color:var(--onevl-ink);
}

.case-detail-body p{
font-size:17px;
line-height:1.75;
color:var(--onevl-muted);
margin-bottom:24px;
}

.case-facts{
display:grid;
gap:12px;
width:100%;
margin-bottom:24px;
}

.case-facts div{
display:grid;
gap:4px;
padding:14px 16px;
border-radius:16px;
background:rgba(255,255,255,0.68);
border:1px solid rgba(18,129,168,0.11);
box-shadow:0 10px 26px rgba(13,73,102,0.06);
}

.case-facts b{
font-size:12px;
line-height:1.2;
letter-spacing:0.8px;
text-transform:uppercase;
color:#247fa8;
}

.case-facts span{
font-size:15px;
line-height:1.55;
color:var(--onevl-muted);
}

.case-process,
.case-results{
display:grid;
gap:12px;
}

.case-process{
grid-template-columns:repeat(4,1fr);
margin-top:34px;
}

.case-process div,
.case-results div{
padding:16px;
border-radius:18px;
background:rgba(255,255,255,0.72);
border:1px solid rgba(18,129,168,0.11);
box-shadow:0 10px 26px rgba(13,73,102,0.06);
}

.case-process b{
display:block;
font-size:12px;
letter-spacing:1px;
color:#26acc4;
margin-bottom:8px;
}

.case-process span{
font-size:15px;
line-height:1.5;
font-weight:750;
color:var(--onevl-ink);
}

.case-results{
grid-template-columns:repeat(3,1fr);
width:100%;
margin-bottom:24px;
}

.case-results strong{
display:block;
font-size:24px;
line-height:1;
font-weight:950;
letter-spacing:-0.8px;
color:#1faac2;
margin-bottom:8px;
}

.case-results span{
font-size:13px;
line-height:1.4;
font-weight:700;
color:var(--onevl-muted);
}

.case-tags{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:30px;
}

.case-tags span{
padding:9px 12px;
border-radius:999px;
background:rgba(33,183,207,0.08);
border:1px solid rgba(33,183,207,0.15);
color:#247fa8;
font-size:12px;
font-weight:800;
letter-spacing:0.8px;
text-transform:uppercase;
}

.case-link{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:52px;
padding:0 22px;
border-radius:14px;
background:linear-gradient(135deg,#2aaac0,#247fa8);
box-shadow:0 14px 30px rgba(36,127,168,0.18);
color:#ffffff;
font-weight:800;
text-decoration:none;
transition:0.3s ease;
}

.case-link:hover{
transform:translateY(-2px);
box-shadow:0 18px 38px rgba(36,127,168,0.24);
}

.about-grid{
display:grid;
grid-template-columns:
repeat(3,1fr);

gap:28px;
}

.about-card{
padding:42px;

border-radius:34px;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.02)
);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(20px);

transition:
0.45s ease;
}

.about-card:hover{
transform:
translateY(-10px);

border-color:
rgba(255,90,31,0.25);

box-shadow:
0 30px 80px rgba(0,0,0,0.35);
}

.about-card h3{
font-size:30px;
font-weight:800;

margin-bottom:20px;
}

.about-card p{
font-size:17px;
line-height:1.9;

color:
rgba(255,255,255,0.72);
}

.about-story-section{
padding-top:0;
}

.about-story-panel{
display:grid;
grid-template-columns:minmax(0,1.1fr) minmax(360px,0.9fr);
gap:42px;
align-items:center;
padding:48px;
border-radius:34px;
background:
linear-gradient(135deg,rgba(255,255,255,0.92),rgba(241,253,255,0.8));
border:1px solid rgba(33,183,207,0.18);
box-shadow:0 24px 70px rgba(29,82,105,0.11);
overflow:hidden;
position:relative;
}

.about-story-panel::before{
content:"";
position:absolute;
inset:auto -120px -160px auto;
width:360px;
height:360px;
border-radius:50%;
background:rgba(33,183,207,0.12);
filter:blur(22px);
pointer-events:none;
}

.about-story-content{
position:relative;
z-index:1;
}

.about-story-content h2{
max-width:760px;
margin:22px 0 22px;
font-size:clamp(34px,4.2vw,58px);
line-height:1.04;
font-weight:950;
color:var(--onevl-ink);
}

.about-story-content p{
font-size:18px;
line-height:1.85;
color:var(--onevl-muted);
margin:0 0 18px;
}

.about-story-content .about-story-lead{
font-size:20px;
line-height:1.75;
color:#425569;
}

.about-story-columns{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:18px;
margin-top:28px;
}

.about-story-columns > div{
padding:22px;
border-radius:22px;
background:rgba(255,255,255,0.72);
border:1px solid rgba(33,183,207,0.16);
box-shadow:0 14px 38px rgba(29,82,105,0.08);
}

.about-story-columns h3{
font-size:17px;
line-height:1.25;
font-weight:900;
color:var(--onevl-ink);
margin:0 0 14px;
}

.about-story-columns ul{
display:grid;
gap:10px;
margin:0;
padding:0;
list-style:none;
}

.about-story-columns li{
position:relative;
padding-left:20px;
font-size:15px;
line-height:1.55;
font-weight:650;
color:#667789;
}

.about-story-columns li::before{
content:"";
position:absolute;
left:0;
top:0.72em;
width:7px;
height:7px;
border-radius:50%;
background:#21b7cf;
box-shadow:0 0 0 5px rgba(33,183,207,0.12);
}

.about-story-actions{
display:flex;
flex-wrap:wrap;
gap:14px;
margin-top:30px;
}

.about-story-actions .btn-primary,
.about-story-actions .btn-secondary{
min-height:52px;
padding:0 22px;
border-radius:14px;
}

.about-story-image{
position:relative;
z-index:1;
margin:0;
padding:16px;
border-radius:30px;
background:rgba(255,255,255,0.64);
border:1px solid rgba(33,183,207,0.18);
box-shadow:0 22px 58px rgba(29,82,105,0.14);
}

.about-story-image::before{
content:"";
position:absolute;
inset:28px;
border-radius:24px;
background:linear-gradient(135deg,rgba(33,183,207,0.16),rgba(255,255,255,0));
transform:translate(18px,18px);
z-index:-1;
}

.about-story-image img{
display:block;
width:100%;
height:auto;
aspect-ratio:1040/693;
object-fit:cover;
border-radius:22px;
}

.contact-grid{
display:grid;
grid-template-columns:
420px 1fr;

gap:40px;
align-items:start;
}

.contact-info{
display:flex;
flex-direction:column;
gap:24px;
}

.contact-item{
padding:32px;

border-radius:30px;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.02)
);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(18px);
}

.contact-label{
font-size:13px;
font-weight:700;
letter-spacing:1px;

text-transform:uppercase;

color:#ff5a1f;

margin-bottom:14px;
}

.contact-item a{
font-size:26px;
font-weight:700;

word-break:break-word;
}

.contact-form{
position:relative;

padding:46px;

border-radius:36px;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.05),
rgba(255,255,255,0.02)
);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(20px);

overflow:hidden;
}

.contact-form::before{
content:'';

position:absolute;

width:420px;
height:420px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,90,31,0.18),
transparent 70%
);

top:-160px;
right:-120px;

filter:blur(20px);

pointer-events:none;
}

.contact-form input,
.contact-form textarea{
width:100%;

border:none;
outline:none;

padding:22px 24px;

border-radius:20px;

background:
rgba(255,255,255,0.05);

border:
1px solid rgba(255,255,255,0.08);

color:#ffffff;

font-size:16px;
font-family:'Inter',sans-serif;

margin-bottom:20px;

transition:
0.3s ease;
}

.contact-form textarea{
height:180px;
resize:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:
rgba(255,90,31,0.45);

box-shadow:
0 0 0 4px rgba(255,90,31,0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
color:
rgba(255,255,255,0.42);
}

.captcha-box{
margin-bottom:26px;
}

.captcha-box label{
display:flex;
align-items:center;
gap:12px;

font-size:15px;

color:
rgba(255,255,255,0.72);
}

.captcha-box input{
width:18px;
height:18px;

margin:0;
}

.captcha-card{
display:grid;
gap:14px;
margin-bottom:26px;
}

.captcha-visual{
display:grid;
grid-template-columns:auto 1fr auto;
align-items:center;
gap:14px;
padding:16px;
border-radius:22px;
background:
linear-gradient(135deg,rgba(33,183,207,0.10),rgba(255,255,255,0.84));
border:1px solid rgba(33,183,207,0.18);
box-shadow:0 14px 34px rgba(37,72,88,0.08);
}

.captcha-label{
font-size:12px;
font-weight:800;
letter-spacing:1px;
text-transform:uppercase;
color:#24758f;
}

.captcha-question{
min-height:44px;
display:flex;
align-items:center;
justify-content:center;
border-radius:16px;
background:rgba(255,255,255,0.78);
border:1px dashed rgba(36,127,168,0.24);
font-size:26px;
font-weight:900;
color:var(--onevl-ink);
letter-spacing:2px;
user-select:none;
}

.captcha-refresh{
width:46px;
height:46px;
display:flex;
align-items:center;
justify-content:center;
border:none;
border-radius:16px;
background:#ffffff;
border:1px solid rgba(50,86,105,0.12);
color:#247fa8;
font-size:22px;
font-weight:800;
cursor:pointer;
box-shadow:0 8px 22px rgba(37,72,88,0.08);
transition:0.25s ease;
}

.captcha-refresh:hover{
transform:translateY(-2px) rotate(18deg);
box-shadow:0 12px 28px rgba(36,127,168,0.14);
}

.captcha-refresh svg{
width:22px;
height:22px;
display:block;
}

.contact-form .captcha-card input[type="number"]{
width:100%;
height:auto;
margin-bottom:0;
}

.captcha-error{
min-height:18px;
font-size:13px;
font-weight:700;
color:#c2413a;
}

.cta{
padding-top:60px;
}

.cta-box{
position:relative;

overflow:hidden;

padding:90px;

border-radius:42px;

background:
linear-gradient(
135deg,
rgba(255,90,31,0.16),
rgba(123,44,255,0.12)
);

border:
1px solid rgba(255,255,255,0.08);

text-align:center;
}

.cta-glow{
position:absolute;
inset:0;

background:
radial-gradient(
circle at center,
rgba(255,90,31,0.18),
transparent 70%
);

pointer-events:none;

z-index:1;
}

.cta-box > *{
position:relative;
z-index:2;
}

.cta-box p{
max-width:720px;

margin:
26px auto 40px;

font-size:20px;
line-height:1.8;

color:
rgba(255,255,255,0.72);
}

.footer-content{
padding:34px 0 50px;

display:flex;
align-items:center;
justify-content:space-between;

gap:30px;

border-top:
1px solid rgba(255,255,255,0.08);
}

.footer-left{
display:flex;
align-items:center;
gap:24px;

color:
rgba(255,255,255,0.45);
}

.footer-left img{
height:40px;
}

.reveal{
opacity:0;

transform:
translateY(40px);

animation:
revealBlock 1s ease forwards;
}

.reveal-delay{
opacity:0;

transform:
translateY(40px);

animation:
revealBlock 1s ease forwards;

animation-delay:0.2s;
}

@keyframes revealBlock{

to{
opacity:1;

transform:
translateY(0px);
}

}

@media(max-width:1180px){

.hero-grid{
grid-template-columns:1fr;
gap:70px;
}

.hero h1{
font-size:86px;
}

.hero-card{
height:620px;
}

.services-grid,
.about-grid{
grid-template-columns:
repeat(2,1fr);
}

.contact-grid{
grid-template-columns:1fr;
}

}

@media(max-width:860px){

.container{
padding:0 22px;
}

.desktop-nav,
.header-socials{
display:none;
}

.mobile-button{
display:block;
}

.hero{
padding-top:150px;
min-height:auto;
}

.hero-grid{
gap:40px;
}

.hero h1{
font-size:64px;
letter-spacing:-3px;
}

.hero p,
.page-description,
.cta-box p{
font-size:17px;
line-height:1.7;
}

.hero-card{
height:440px;
border-radius:30px;
}

.hero-bird{
width:220px;
}

.section{
padding:100px 0;
}

.section h2,
.section-title{
font-size:54px;
letter-spacing:-2px;
}

.services-grid,
.projects-grid,
.about-grid{
grid-template-columns:1fr;
}

.project-card{
height:auto;
aspect-ratio:900/560;
}

.project-content h3{
font-size:42px;
}

.case-detail,
.case-detail:nth-child(even){
grid-template-columns:1fr;
gap:0;
padding:14px;
}

.case-detail:nth-child(even) .case-detail-media{
order:0;
}

.case-detail-media{
min-height:auto;
}

.case-detail-body{
padding:28px 12px 14px;
}

.case-detail-body h3{
font-size:42px;
}

.contact-form{
padding:30px;
}

.cta-box{
padding:60px 26px;
}

.footer-content{
flex-direction:column;
align-items:flex-start;
}

}

@media(max-width:560px){

.hero h1{
font-size:48px;
line-height:0.95;
}

.hero-buttons{
flex-direction:column;
align-items:stretch;
}

.btn-primary,
.btn-secondary{
width:100%;
}

.hero-card{
height:340px;
}

.hero-bird{
width:180px;
}

.section h2,
.section-title{
font-size:42px;
}

.project-card{
height:auto;
aspect-ratio:420/736;
}

.project-content h3{
font-size:34px;
}

.case-detail{
border-radius:22px;
padding:10px;
}

.case-detail-media{
min-height:auto;
border-radius:16px;
}

.case-detail-body{
padding:24px 8px 10px;
}

.case-detail-body h3{
font-size:34px;
letter-spacing:-1px;
}

.case-detail-body p{
font-size:15px;
line-height:1.65;
}

.case-link{
width:100%;
}

.service-card,
.about-card{
padding:32px;
}

.contact-form{
padding:24px;
}

.contact-item a{
font-size:20px;
}

.social-icon{
width:44px;
height:44px;
}

}

/* =========================
CURSOR GLOW
========================= */

.cursor-glow{
position:fixed;

width:260px;
height:260px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,90,31,0.16),
transparent 70%
);

pointer-events:none;

z-index:-1;

transform:
translate(-50%,-50%);

filter:blur(40px);

transition:
transform 0.08s linear;
}

/* =========================
CURSOR SPLASH
========================= */

.cursor-splash{
position:fixed;

width:10px;
height:10px;

border-radius:50%;

background:#ff5a1f;

pointer-events:none;

z-index:9999;

box-shadow:
0 0 16px rgba(255,90,31,0.8);

animation:
cursorSplashAnim 1.4s ease-out forwards;
}

@keyframes cursorSplashAnim{

0%{
opacity:1;

transform:
translate(0,0)
scale(1);
}

100%{
opacity:0;

transform:
translate(
var(--x),
var(--y)
)
scale(0);
}

}

/* =========================
SCROLLBAR
========================= */

::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#070707;
}

::-webkit-scrollbar-thumb{
background:
linear-gradient(
180deg,
#ff5a1f,
#7b2cff
);

border-radius:999px;
}

/* =========================
TEXT SELECTION
========================= */

::selection{
background:#ff5a1f;
color:#ffffff;
}

/* =========================
SUCCESS POPUP
========================= */

.success-popup{
position:fixed;
inset:0;

display:flex;
align-items:center;
justify-content:center;

background:
rgba(0,0,0,0.72);

backdrop-filter:
blur(18px);

opacity:0;
pointer-events:none;

transition:
0.35s ease;

z-index:5000;
}

.success-popup.active{
opacity:1;
pointer-events:auto;
}

.popup-card{
position:relative;

width:100%;
max-width:620px;

padding:60px 40px;

border-radius:36px;

text-align:center;

overflow:hidden;

background:
linear-gradient(
180deg,
rgba(255,255,255,0.06),
rgba(255,255,255,0.03)
);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(20px);
}

.popup-card::before{
content:'';

position:absolute;

width:340px;
height:340px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(255,90,31,0.22),
transparent 70%
);

top:-140px;
right:-100px;

filter:blur(30px);
}

.popup-logo{
width:100px;

margin:
0 auto 24px;

filter:
drop-shadow(0 0 30px rgba(255,90,31,0.35));

position:relative;
z-index:2;
}

.popup-card h2{
font-size:64px;
font-weight:900;
letter-spacing:-3px;

margin-bottom:20px;

position:relative;
z-index:2;
}

.popup-card p{
font-size:19px;
line-height:1.8;

color:
rgba(255,255,255,0.72);

margin-bottom:34px;

position:relative;
z-index:2;
}

.popup-card .btn-primary{
position:relative;
z-index:2;
}

.popup-confetti{
position:absolute;
inset:0;
overflow:hidden;
pointer-events:none;
}

.mini-confetti{
position:absolute;
top:-20px;

background:
linear-gradient(
180deg,
#ff5a1f,
#7b2cff
);

opacity:0.9;

animation:
miniConfetti linear forwards;
}

@keyframes miniConfetti{

0%{
transform:
translateY(-10vh)
rotate(0deg);

opacity:1;
}

100%{
transform:
translateY(120vh)
rotate(720deg);

opacity:0;
}

}

@media(max-width:560px){

.popup-card{
padding:46px 24px;
}

.popup-card h2{
font-size:46px;
}

.popup-card p{
font-size:16px;
}

.popup-logo{
width:76px;
}

}

/* =========================
MOBILE MENU SOCIALS
========================= */

.mobile-menu-socials{
display:flex;
align-items:center;
justify-content:center;
gap:14px;

padding-top:18px;
margin-top:10px;

border-top:
1px solid rgba(255,255,255,0.06);

position:relative;
z-index:2;
}

.mobile-menu-socials .social-icon{
width:64px;
height:64px;

display:flex;
align-items:center;
justify-content:center;

border-radius:50%;

background:
rgba(255,255,255,0.04);

border:
1px solid rgba(255,255,255,0.08);

backdrop-filter:
blur(14px);

color:#ffffff;

position:relative;

overflow:hidden;

transition:
0.35s ease;
}

.mobile-menu-socials .social-icon svg{
width:28px;
height:28px;
position:relative;
z-index:2;
}

.mobile-menu-socials .social-icon::before{
content:'';

position:absolute;

width:120%;
height:120%;

background:
linear-gradient(
45deg,
transparent,
rgba(255,90,31,0.45),
transparent
);

transform:
translateX(-140%)
rotate(25deg);

transition:
0.7s ease;
}

.mobile-menu-socials .social-icon:hover::before{
transform:
translateX(140%)
rotate(25deg);
}

.mobile-menu-socials .social-icon:hover{
transform:
translateY(-4px)
scale(1.08);

background:
rgba(255,90,31,0.12);

border-color:
rgba(255,90,31,0.35);

box-shadow:
0 0 24px rgba(255,90,31,0.3);

color:#ff5a1f;
}

/* =========================
FIX MOBILE SOCIAL ICONS
========================= */

.mobile-menu-socials a::after{
display:none !important;
content:none !important;
}

.mobile-menu-socials a::before{
display:none !important;
}

.mobile-menu-socials .social-icon svg{
display:block !important;

width:28px !important;
height:28px !important;

fill:currentColor !important;
stroke:none !important;

color:inherit !important;

opacity:1 !important;

visibility:visible !important;
}

.mobile-menu-socials .social-icon{
font-size:0;
line-height:0;
}

/* =========================
ONEVL LIGHT THEME
========================= */

:root{
--onevl-ink:#151922;
--onevl-muted:#667085;
--onevl-soft:#f5fbff;
--onevl-line:#dceef5;
--onevl-card:rgba(255,255,255,0.78);
--onevl-cyan:#16c9e8;
--onevl-blue:#0787d9;
--onevl-lime:#8eea8c;
--onevl-coral:#ff6f61;
--onevl-shadow:0 24px 80px rgba(13,73,102,0.14);
}

body{
background:
radial-gradient(circle at 8% 12%,rgba(22,201,232,0.18),transparent 30%),
radial-gradient(circle at 84% 8%,rgba(142,234,140,0.20),transparent 28%),
linear-gradient(180deg,#ffffff 0%,#f6fcff 46%,#ffffff 100%);
color:var(--onevl-ink);
}

.grid-bg{
background-image:
linear-gradient(rgba(7,135,217,0.08) 1px,transparent 1px),
linear-gradient(90deg,rgba(7,135,217,0.08) 1px,transparent 1px);
background-size:54px 54px;
}

.noise{
opacity:0.025;
}

.blur-ball{
filter:blur(100px);
opacity:0.34;
}

.blur-ball-1,
.blur-ball-3{
background:#16c9e8;
}

.blur-ball-2{
background:#8eea8c;
}

.blur-ball-4{
background:#ffb6ad;
}

.spark,
.cursor-splash{
background:var(--onevl-cyan);
box-shadow:0 0 20px rgba(22,201,232,0.65);
}

.header{
background:rgba(255,255,255,0.76);
border-bottom:1px solid rgba(20,105,140,0.12);
box-shadow:0 12px 40px rgba(22,82,110,0.08);
}

.logo img{
height:52px;
width:auto;
}

.desktop-nav a{
color:rgba(21,25,34,0.68);
}

.desktop-nav a:hover{
color:var(--onevl-ink);
}

.social-icon,
.mobile-button,
.mobile-menu-socials .social-icon{
background:rgba(255,255,255,0.72);
border-color:rgba(18,129,168,0.16);
color:var(--onevl-ink);
box-shadow:0 10px 30px rgba(13,73,102,0.08);
}

.social-icon::before,
.mobile-menu-socials .social-icon::before{
background:linear-gradient(45deg,transparent,rgba(22,201,232,0.34),transparent);
}

.social-icon:hover,
.mobile-menu-socials .social-icon:hover{
background:rgba(22,201,232,0.12);
border-color:rgba(22,201,232,0.38);
box-shadow:0 18px 38px rgba(22,201,232,0.24);
color:#0787d9;
}

.mobile-button span{
background:var(--onevl-ink);
}

.mobile-menu{
background:rgba(255,255,255,0.94);
border-color:rgba(18,129,168,0.16);
box-shadow:var(--onevl-shadow);
}

.mobile-menu a{
background:rgba(246,252,255,0.86);
border-color:rgba(18,129,168,0.10);
color:var(--onevl-ink);
}

.mobile-menu a::before{
background:linear-gradient(90deg,rgba(22,201,232,0.14),transparent);
}

.hero{
min-height:94vh;
}

.hero-badge,
.section-badge,
.project-type,
.success-badge{
background:rgba(22,201,232,0.11);
border:1px solid rgba(22,201,232,0.22);
color:#057ea5;
box-shadow:0 12px 28px rgba(22,201,232,0.10);
}

.purple-badge{
background:rgba(142,234,140,0.18);
border-color:rgba(87,196,110,0.24);
color:#237f49;
}

.hero h1,
.section h2,
.section-title,
.popup-card h2{
color:var(--onevl-ink);
letter-spacing:-0.06em;
}

.word-splashes{
color:var(--onevl-cyan);
}

.splash{
background:var(--onevl-cyan);
}

.hero p,
.page-description,
.service-card p,
.about-card p,
.cta-box p,
.popup-card p,
.captcha-box label{
color:var(--onevl-muted);
}

.brands-row span{
color:rgba(21,25,34,0.42);
}

.btn-primary{
background:linear-gradient(135deg,#12c9e7,#0787d9);
color:#ffffff;
box-shadow:0 18px 38px rgba(7,135,217,0.24);
}

.btn-primary:hover{
box-shadow:0 24px 54px rgba(7,135,217,0.30);
}

.btn-secondary{
background:rgba(255,255,255,0.72);
border-color:rgba(18,129,168,0.18);
color:var(--onevl-ink);
box-shadow:0 12px 30px rgba(13,73,102,0.08);
}

.hero-card,
.service-card,
.about-card,
.contact-item,
.contact-form,
.popup-card{
background:linear-gradient(180deg,rgba(255,255,255,0.86),rgba(255,255,255,0.62));
border:1px solid rgba(18,129,168,0.14);
box-shadow:var(--onevl-shadow);
}

.hero-card{
border-radius:38px;
}

.hero-card-grid{
background-image:
linear-gradient(rgba(7,135,217,0.10) 1px,transparent 1px),
linear-gradient(90deg,rgba(7,135,217,0.10) 1px,transparent 1px);
}

.hero-card-light{
background:radial-gradient(circle,rgba(22,201,232,0.32),rgba(142,234,140,0.16) 42%,transparent 72%);
}

.hero-card-ring{
border-color:rgba(7,135,217,0.16);
}

.hero-bird{
width:300px;
filter:drop-shadow(0 24px 42px rgba(7,135,217,0.18));
}

.hero-gradient-1,
.hero-gradient-3{
background:#16c9e8;
}

.hero-gradient-2{
background:#8eea8c;
}

.rotating-ring{
border-color:rgba(7,135,217,0.15);
}

.floating-orb{
background:radial-gradient(circle,rgba(22,201,232,0.45),transparent 70%);
}

.service-card::before{
background:linear-gradient(135deg,rgba(22,201,232,0.12),transparent 62%);
}

.service-card:hover,
.about-card:hover{
border-color:rgba(22,201,232,0.34);
box-shadow:0 34px 90px rgba(13,73,102,0.16);
}

.service-icon,
.service-icon.purple{
background:linear-gradient(135deg,rgba(22,201,232,0.18),rgba(142,234,140,0.16));
border-color:rgba(22,201,232,0.26);
color:#0787d9;
box-shadow:0 16px 34px rgba(22,201,232,0.16);
}

.project-card{
border-color:rgba(18,129,168,0.14);
box-shadow:
0 22px 56px rgba(13,73,102,0.12),
0 1px 0 rgba(255,255,255,0.86) inset;
}

.project-overlay{
display:none;
}

.contact-label{
color:#057ea5;
}

.contact-form input,
.contact-form textarea{
background:rgba(255,255,255,0.82);
border-color:rgba(18,129,168,0.15);
color:var(--onevl-ink);
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:rgba(22,201,232,0.58);
box-shadow:0 0 0 4px rgba(22,201,232,0.13);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
color:rgba(102,112,133,0.72);
}

.cta-box{
background:
radial-gradient(circle at 22% 28%,rgba(22,201,232,0.20),transparent 36%),
radial-gradient(circle at 80% 16%,rgba(142,234,140,0.24),transparent 32%),
linear-gradient(135deg,rgba(255,255,255,0.94),rgba(241,251,255,0.86));
border-color:rgba(18,129,168,0.16);
box-shadow:var(--onevl-shadow);
}

.cta-glow{
background:radial-gradient(circle at center,rgba(22,201,232,0.16),transparent 68%);
}

.footer-content{
border-top-color:rgba(18,129,168,0.12);
}

.footer-left{
color:rgba(21,25,34,0.54);
}

.footer-left img{
height:48px;
}

.cursor-glow{
background:radial-gradient(circle,rgba(22,201,232,0.18),transparent 70%);
}

::-webkit-scrollbar-track{
background:#f6fcff;
}

::-webkit-scrollbar-thumb{
background:linear-gradient(180deg,#16c9e8,#8eea8c);
}

::selection{
background:#16c9e8;
color:#ffffff;
}

.success-popup{
background:rgba(246,252,255,0.72);
}

.popup-logo{
filter:drop-shadow(0 18px 30px rgba(7,135,217,0.18));
}

.mini-confetti{
background:linear-gradient(180deg,#16c9e8,#8eea8c);
}

@media(max-width:860px){
.hero-bird{
width:220px;
}
}

@media(max-width:560px){
.logo img{
height:60px;
max-width:210px;
object-fit:contain;
}

.hero-bird{
width:178px;
}
}

/* =========================
ONEVL CALM OVERRIDES
========================= */

:root{
--onevl-ink:#1c2430;
--onevl-muted:#6f7b8a;
--onevl-soft:#f8fbfd;
--onevl-line:#e4edf2;
--onevl-card:rgba(255,255,255,0.88);
--onevl-cyan:#21b7cf;
--onevl-blue:#237fa8;
--onevl-lime:#b8ddb7;
--onevl-coral:#d98b82;
--onevl-shadow:0 18px 54px rgba(37,72,88,0.10);
}

body{
background:
radial-gradient(circle at 10% 8%,rgba(33,183,207,0.08),transparent 32%),
radial-gradient(circle at 86% 12%,rgba(184,221,183,0.12),transparent 30%),
linear-gradient(180deg,#fbfdfe 0%,#f7fafc 48%,#ffffff 100%);
}

.grid-bg{
background-image:
linear-gradient(rgba(35,127,168,0.045) 1px,transparent 1px),
linear-gradient(90deg,rgba(35,127,168,0.045) 1px,transparent 1px);
}

.noise{
opacity:0.012;
}

.blur-ball,
.hero-gradient,
.floating-orb,
.spark,
.cursor-glow,
.cursor-splash{
opacity:0.16;
}

.blur-ball{
filter:blur(140px);
}

.spark,
.cursor-splash{
box-shadow:0 0 10px rgba(33,183,207,0.32);
}

.header{
background:rgba(255,255,255,0.86);
border-bottom-color:rgba(50,86,105,0.10);
box-shadow:0 8px 28px rgba(37,72,88,0.07);
}

.hero-badge,
.section-badge,
.project-type,
.success-badge{
background:rgba(33,183,207,0.075);
border-color:rgba(33,183,207,0.16);
color:#24758f;
box-shadow:none;
}

.purple-badge{
background:rgba(184,221,183,0.12);
border-color:rgba(111,166,118,0.16);
color:#4f855b;
}

.word-splashes{
color:#229ab0;
}

.splash{
background:#229ab0;
}

.btn-primary{
background:linear-gradient(135deg,#2aaac0,#247fa8);
box-shadow:0 14px 30px rgba(36,127,168,0.18);
}

.btn-primary:hover{
box-shadow:0 18px 38px rgba(36,127,168,0.22);
}

.btn-secondary{
background:rgba(255,255,255,0.82);
border-color:rgba(50,86,105,0.13);
box-shadow:0 10px 26px rgba(37,72,88,0.07);
}

.social-icon,
.mobile-button,
.mobile-menu-socials .social-icon{
background:rgba(255,255,255,0.82);
border-color:rgba(50,86,105,0.12);
box-shadow:0 8px 24px rgba(37,72,88,0.07);
}

.social-icon:hover,
.mobile-menu-socials .social-icon:hover{
background:rgba(33,183,207,0.075);
border-color:rgba(33,183,207,0.24);
box-shadow:0 12px 28px rgba(36,127,168,0.14);
color:#247fa8;
}

.hero-card,
.service-card,
.about-card,
.contact-item,
.contact-form,
.popup-card,
.cta-box{
background:linear-gradient(180deg,rgba(255,255,255,0.92),rgba(250,253,255,0.84));
border-color:rgba(50,86,105,0.12);
box-shadow:var(--onevl-shadow);
}

.hero-card-light{
background:radial-gradient(circle,rgba(33,183,207,0.13),rgba(184,221,183,0.08) 45%,transparent 72%);
}

.hero-card-grid{
opacity:0.28;
background-image:
linear-gradient(rgba(35,127,168,0.055) 1px,transparent 1px),
linear-gradient(90deg,rgba(35,127,168,0.055) 1px,transparent 1px);
}

.hero-card-ring,
.rotating-ring{
border-color:rgba(50,86,105,0.10);
}

.hero-bird{
filter:drop-shadow(0 18px 28px rgba(37,72,88,0.10));
}

.service-card::before{
background:linear-gradient(135deg,rgba(33,183,207,0.06),transparent 62%);
}

.service-card:hover,
.about-card:hover{
border-color:rgba(33,183,207,0.20);
box-shadow:0 22px 58px rgba(37,72,88,0.12);
}

.service-icon,
.service-icon.purple{
background:linear-gradient(135deg,rgba(33,183,207,0.10),rgba(184,221,183,0.10));
border-color:rgba(33,183,207,0.16);
color:#247fa8;
box-shadow:none;
}

.cta-box{
background:
radial-gradient(circle at 22% 28%,rgba(33,183,207,0.08),transparent 36%),
radial-gradient(circle at 80% 16%,rgba(184,221,183,0.11),transparent 32%),
linear-gradient(135deg,rgba(255,255,255,0.96),rgba(248,251,253,0.94));
}

.cta-glow,
.contact-form::before,
.popup-card::before{
opacity:0.42;
}

.contact-form input,
.contact-form textarea{
background:rgba(255,255,255,0.92);
border-color:rgba(50,86,105,0.13);
}

.contact-form input:focus,
.contact-form textarea:focus{
border-color:rgba(33,183,207,0.36);
box-shadow:0 0 0 4px rgba(33,183,207,0.08);
}

::-webkit-scrollbar-thumb{
background:linear-gradient(180deg,#2aaac0,#9fc99f);
}

::selection{
background:#2aaac0;
}

/* =========================
ONEVL HERO LOTTIE
========================= */

.hero-right{
position:absolute;
inset:0;
min-height:100%;
display:flex;
align-items:center;
justify-content:center;
pointer-events:none;
z-index:1;
}

.hero-lottie{
position:absolute;
inset:0;
width:100vw;
height:100%;
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
isolation:isolate;
opacity:0.82;
}

.hero-lottie::before{
content:'';
position:absolute;
inset:12% 4%;
border-radius:50%;
background:
radial-gradient(circle,rgba(33,183,207,0.09),transparent 58%);
filter:blur(22px);
z-index:-2;
}

.hero-lottie::after{
content:'';
position:absolute;
width:min(34vw,420px);
aspect-ratio:1;
border-radius:50%;
border:1px solid rgba(36,127,168,0.09);
box-shadow:
0 0 0 14px rgba(36,127,168,0.018),
0 18px 46px rgba(37,72,88,0.055);
z-index:-1;
}

.hero-lottie svg{
width:100% !important;
height:100% !important;
display:block;
overflow:visible;
filter:
drop-shadow(22px 30px 24px rgba(26,61,74,0.16))
drop-shadow(4px 8px 8px rgba(0,202,226,0.08));
}

.hero-grid{
grid-template-columns:minmax(0,720px);
}

.hero-left{
z-index:3;
max-width:720px;
}

@media(max-width:1180px){
.hero-right{
min-height:100%;
}

.hero-lottie{
width:100vw;
min-height:760px;
}
}

@media(max-width:860px){
.hero-right{
min-height:100%;
}

.hero-lottie{
width:150vw;
left:50%;
transform:translateX(-50%);
min-height:100vh;
opacity:0.72;
}

.hero-lottie::after{
width:min(76vw,360px);
}

.hero{
min-height:100vh;
padding-top:122px;
padding-bottom:46px;
align-items:flex-start;
}

.hero-grid{
min-height:calc(100vh - 168px);
display:flex;
align-items:flex-start;
}

.hero-left{
padding-top:42px;
}

.hero-badge{
margin-bottom:22px;
}

.hero h1{
font-size:52px;
line-height:0.98;
letter-spacing:-0.045em;
margin-bottom:24px;
}

.hero p{
max-width:360px;
font-size:16px;
line-height:1.65;
margin-bottom:30px;
}

.brands-row{
margin-top:10px;
}
}

@media(max-width:560px){
.nav{
height:90px;
}

.mobile-button{
width:54px;
height:54px;
border-radius:18px;
}

.hero-right{
min-height:100%;
}

.hero-lottie{
width:100vw;
left:50%;
transform:translateX(-50%);
min-height:100vh;
opacity:0.88;
}

.hero-lottie::after{
width:min(82vw,330px);
}

.hero{
padding-top:110px;
padding-bottom:36px;
}

.hero-grid{
min-height:calc(100vh - 146px);
}

.hero-left{
padding-top:30px;
}

.hero h1{
font-size:45px;
line-height:1.01;
letter-spacing:-0.04em;
margin-bottom:24px;
}

.hero p{
font-size:16px;
line-height:1.62;
max-width:350px;
}

.hero-buttons{
gap:14px;
margin-bottom:34px;
}

.btn-primary,
.btn-secondary{
height:62px;
border-radius:16px;
}

.brands-row{
gap:22px;
}

.brands-row span{
font-size:13px;
}
}

@media(max-width:560px){
.hero{
min-height:100svh;
height:100svh;
padding-top:96px;
padding-bottom:22px;
overflow:hidden;
}

.hero-grid{
min-height:calc(100svh - 118px);
height:calc(100svh - 118px);
align-items:stretch;
}

.hero-left{
width:100%;
min-height:100%;
padding-top:28px;
display:flex;
flex-direction:column;
justify-content:space-between;
gap:14px;
}

.hero-badge{
margin:0;
align-self:flex-start;
}

.hero h1{
font-size:43px;
line-height:1.02;
letter-spacing:-0.038em;
margin:0;
}

.hero p{
max-width:360px;
font-size:16px;
line-height:1.6;
margin:0;
}

.hero-buttons{
width:100%;
display:grid;
grid-template-columns:1fr;
gap:14px;
margin:0;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{
height:60px;
}

.brands-row{
width:100%;
display:grid;
grid-template-columns:repeat(4,auto);
justify-content:space-between;
gap:12px;
margin:0;
padding-bottom:2px;
}

.brands-row span{
font-size:12px;
letter-spacing:1.8px;
}

.hero-lottie{
height:100svh;
min-height:100svh;
}

.hero-right::after{
content:'';
position:absolute;
inset:0;
background:
linear-gradient(180deg,rgba(248,253,254,0.58),rgba(248,253,254,0.18) 42%,rgba(248,253,254,0.34) 100%),
radial-gradient(circle at 34% 30%,rgba(255,255,255,0.52),transparent 34%),
radial-gradient(circle at 48% 68%,rgba(255,255,255,0.34),transparent 30%);
pointer-events:none;
z-index:2;
}

.hero-lottie{
z-index:1;
}
}

@media(max-width:390px){
.hero h1{
font-size:39px;
}

.hero p{
font-size:15px;
line-height:1.55;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{
height:56px;
}
}

@media(max-width:860px){
.mobile-menu-socials .social-icon{
width:68px;
height:68px;
}

.mobile-menu-socials .social-icon svg{
width:30px !important;
height:30px !important;
}
}

@media(max-width:560px){
footer{
position:relative;
overflow:hidden;
}

.footer-content{
padding:30px 0 34px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:18px;
text-align:center;
}

.footer-left{
width:100%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:12px;
font-size:15px;
line-height:1.3;
color:rgba(21,25,34,0.58);
}

.footer-left img{
height:58px;
max-width:220px;
object-fit:contain;
}

.footer-socials{
width:100%;
display:flex;
align-items:center;
justify-content:center;
gap:16px;
}

.footer-socials .social-icon{
width:52px;
height:52px;
flex:0 0 52px;
}

.footer-socials .social-icon svg{
width:22px;
height:22px;
}
}

@media(max-width:900px){

.services-page .service-card{
flex-basis:260px;
min-height:190px;
padding:26px;
}

.service-details-panel{
padding:34px 28px;
border-radius:26px;
}

.service-details-inner{
grid-template-columns:1fr;
gap:22px;
}

.service-details-media{
order:-1;
border-radius:22px;
}

.service-details-points{
grid-template-columns:1fr;
}

.service-details-actions{
display:grid;
grid-template-columns:1fr;
}

.service-details-actions .btn-primary,
.service-details-actions .btn-secondary{
width:100%;
min-width:0;
}

}

/* home-sales-polish1: keep the launch CTA compact and consistent with ONEVL cards */
.home-sales-section .sales-cta{
position:relative;
display:block;
max-width:920px;
margin:28px auto 0;
padding:0;
border:0;
border-radius:0;
background:transparent;
box-shadow:none;
}

.home-sales-section .sales-cta > div{
position:relative;
display:grid;
grid-template-columns:minmax(0,1fr) auto;
gap:24px;
align-items:center;
padding:28px 30px;
border-radius:26px;
background:rgba(255,255,255,0.84);
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.10);
overflow:hidden;
}

.home-sales-section .sales-cta > div::before{
content:'';
position:absolute;
right:-54px;
bottom:-76px;
width:180px;
height:180px;
border-radius:50%;
background:radial-gradient(circle,rgba(33,183,207,0.18),rgba(33,183,207,0));
pointer-events:none;
}

.home-sales-section .sales-cta h3,
.home-sales-section .sales-cta p,
.home-sales-section .sales-cta .btn-primary{
position:relative;
z-index:1;
}

.home-sales-section .sales-cta h3{
max-width:680px;
font-size:26px;
line-height:1.14;
letter-spacing:0;
margin-bottom:8px;
}

.home-sales-section .sales-cta p{
max-width:660px;
font-size:15px;
line-height:1.62;
}

.home-sales-section .sales-cta .btn-primary{
justify-self:end;
min-width:220px;
padding-inline:24px;
white-space:nowrap;
}

@media (max-width: 900px){
.home-sales-section .sales-cta{
max-width:none;
margin-top:20px;
}

.home-sales-section .sales-cta > div{
grid-template-columns:1fr;
gap:18px;
padding:22px;
border-radius:24px;
}

.home-sales-section .sales-cta h3{
font-size:22px;
line-height:1.16;
}

.home-sales-section .sales-cta .btn-primary{
justify-self:stretch;
min-width:0;
}
}

/* home-sales-wide-cta2: must stay after polish2 */
.home-sales-section .sales-cta{
position:relative;
display:block;
width:100%;
max-width:none;
margin:28px 0 0;
padding:0;
border:0;
border-radius:0;
background:transparent;
box-shadow:none;
}

.home-sales-section .sales-cta > div{
position:relative;
display:grid;
grid-template-columns:minmax(0,1fr) auto;
grid-template-areas:
"title action"
"text action";
column-gap:42px;
row-gap:10px;
align-items:center;
min-height:178px;
padding:34px 36px;
border-radius:28px;
background:linear-gradient(135deg,rgba(255,255,255,0.88),rgba(235,251,253,0.78));
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.10);
overflow:hidden;
}

.home-sales-section .sales-cta > div::before{
content:'';
position:absolute;
inset:auto 28px -82px auto;
width:220px;
height:220px;
border-radius:50%;
background:radial-gradient(circle,rgba(33,183,207,0.18),rgba(33,183,207,0));
pointer-events:none;
}

.home-sales-section .sales-cta h3{
grid-area:title;
position:relative;
z-index:1;
max-width:820px;
margin:0;
font-size:clamp(28px,2.1vw,38px);
line-height:1.08;
font-weight:900;
letter-spacing:0;
color:var(--onevl-ink);
}

.home-sales-section .sales-cta p{
grid-area:text;
position:relative;
z-index:1;
max-width:820px;
margin:0;
font-size:16px;
line-height:1.62;
color:var(--onevl-muted);
}

.home-sales-section .sales-cta .btn-primary{
grid-area:action;
position:relative;
z-index:1;
justify-self:end;
align-self:center;
min-width:250px;
white-space:nowrap;
}

@media(max-width:900px){
.home-sales-section .sales-cta{
margin-top:20px;
}

.home-sales-section .sales-cta > div{
grid-template-columns:1fr;
grid-template-areas:
"title"
"text"
"action";
min-height:0;
gap:16px;
padding:24px;
border-radius:24px;
}

.home-sales-section .sales-cta h3{
font-size:24px;
line-height:1.14;
}

.home-sales-section .sales-cta .btn-primary{
justify-self:stretch;
min-width:0;
white-space:normal;
}
}

/* home-sales-wide-cta1: full-width CTA after sales cards */
.home-sales-section .sales-cta{
position:relative;
display:block;
width:100%;
max-width:none;
margin:28px 0 0;
padding:0;
border:0;
border-radius:0;
background:transparent;
box-shadow:none;
}

.home-sales-section .sales-cta > div{
position:relative;
display:grid;
grid-template-columns:minmax(0,1fr) auto;
grid-template-areas:
"title action"
"text action";
column-gap:42px;
row-gap:10px;
align-items:center;
min-height:178px;
padding:34px 36px;
border-radius:28px;
background:linear-gradient(135deg,rgba(255,255,255,0.88),rgba(235,251,253,0.78));
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.10);
overflow:hidden;
}

.home-sales-section .sales-cta > div::before{
content:'';
position:absolute;
inset:auto 28px -82px auto;
width:220px;
height:220px;
border-radius:50%;
background:radial-gradient(circle,rgba(33,183,207,0.18),rgba(33,183,207,0));
pointer-events:none;
}

.home-sales-section .sales-cta h3{
grid-area:title;
position:relative;
z-index:1;
max-width:820px;
margin:0;
font-size:clamp(28px,2.1vw,38px);
line-height:1.08;
font-weight:900;
letter-spacing:0;
color:var(--onevl-ink);
}

.home-sales-section .sales-cta p{
grid-area:text;
position:relative;
z-index:1;
max-width:820px;
margin:0;
font-size:16px;
line-height:1.62;
color:var(--onevl-muted);
}

.home-sales-section .sales-cta .btn-primary{
grid-area:action;
position:relative;
z-index:1;
justify-self:end;
align-self:center;
min-width:250px;
white-space:nowrap;
}

@media(max-width:900px){
.home-sales-section .sales-cta{
margin-top:20px;
}

.home-sales-section .sales-cta > div{
grid-template-columns:1fr;
grid-template-areas:
"title"
"text"
"action";
min-height:0;
gap:16px;
padding:24px;
border-radius:24px;
}

.home-sales-section .sales-cta h3{
font-size:24px;
line-height:1.14;
}

.home-sales-section .sales-cta .btn-primary{
justify-self:stretch;
min-width:0;
white-space:normal;
}
}

/* footer-redesign1: structured footer layout without narrow scattered cards */
footer{
position:relative;
overflow:hidden;
}

.footer-content.footer-geo{
display:grid;
grid-template-columns:minmax(340px,0.95fr) minmax(0,1.45fr);
grid-template-areas:
"brand nap"
"actions copy";
gap:18px 22px;
align-items:stretch;
padding:38px 0 36px;
border-top:1px solid rgba(18,129,168,0.14);
}

.footer-geo .footer-brand-block{
grid-area:brand;
display:grid;
grid-template-columns:auto minmax(0,1fr);
gap:22px;
align-items:center;
width:auto;
min-height:156px;
padding:24px 26px;
border-radius:26px;
background:rgba(255,255,255,0.78);
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.08);
}

.footer-geo .footer-brand-block img{
height:54px;
max-width:220px;
object-fit:contain;
}

.footer-geo .footer-brand-block p{
max-width:none;
font-size:15px;
line-height:1.58;
font-weight:650;
color:var(--onevl-muted);
}

.footer-geo .footer-nap{
grid-area:nap;
display:grid;
grid-template-columns:1.05fr 1.45fr 1.05fr 1fr;
gap:0;
width:100%;
min-height:156px;
padding:24px 10px;
border-radius:26px;
background:rgba(255,255,255,0.78);
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.08);
}

.footer-geo .footer-nap div{
display:flex;
flex-direction:column;
justify-content:center;
min-height:0;
padding:0 20px;
border:0;
border-left:1px solid rgba(18,129,168,0.12);
border-radius:0;
background:transparent;
}

.footer-geo .footer-nap div:first-child{
border-left:0;
}

.footer-geo .footer-nap span{
display:block;
margin-bottom:9px;
font-size:12px;
line-height:1;
font-weight:850;
letter-spacing:0.08em;
text-transform:uppercase;
color:#247fa8;
}

.footer-geo .footer-nap strong,
.footer-geo .footer-nap a{
display:block;
font-size:16px;
line-height:1.35;
font-weight:850;
color:var(--onevl-ink);
word-break:normal;
}

.footer-geo .footer-contact-actions{
grid-area:actions;
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:flex-start;
align-items:center;
}

.footer-geo .footer-contact-actions a{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:48px;
padding:0 22px;
border-radius:16px;
background:rgba(255,255,255,0.82);
border:1px solid rgba(18,129,168,0.16);
box-shadow:0 14px 34px rgba(13,73,102,0.08);
font-size:14px;
line-height:1;
font-weight:850;
color:#247fa8;
}

.footer-geo .footer-contact-actions a:last-child{
background:linear-gradient(135deg,#34bed1,#218ab8);
border-color:transparent;
color:#fff;
box-shadow:0 18px 38px rgba(33,138,184,0.22);
}

.footer-geo .footer-copy{
grid-area:copy;
align-self:center;
justify-self:end;
text-align:right;
font-size:14px;
line-height:1.25;
font-weight:750;
color:rgba(21,25,34,0.54);
}

@media(max-width:1100px){
.footer-content.footer-geo{
grid-template-columns:1fr;
grid-template-areas:
"brand"
"nap"
"actions"
"copy";
}

.footer-geo .footer-copy{
justify-self:start;
text-align:left;
}
}

@media(max-width:760px){
.footer-content.footer-geo{
padding:30px 0 34px;
gap:14px;
}

.footer-geo .footer-brand-block{
grid-template-columns:1fr;
justify-items:center;
text-align:center;
min-height:0;
padding:22px;
}

.footer-geo .footer-brand-block img{
height:58px;
}

.footer-geo .footer-nap{
grid-template-columns:1fr 1fr;
min-height:0;
padding:8px;
}

.footer-geo .footer-nap div{
justify-content:flex-start;
padding:16px;
border-left:0;
border-top:1px solid rgba(18,129,168,0.11);
}

.footer-geo .footer-nap div:nth-child(-n+2){
border-top:0;
}

.footer-geo .footer-nap div:nth-child(even){
border-left:1px solid rgba(18,129,168,0.11);
}
}

@media(max-width:480px){
.footer-geo .footer-brand-block p{
font-size:14px;
}

.footer-geo .footer-nap{
grid-template-columns:1fr;
}

.footer-geo .footer-nap div,
.footer-geo .footer-nap div:nth-child(even){
border-left:0;
border-top:1px solid rgba(18,129,168,0.11);
text-align:left;
}

.footer-geo .footer-nap div:first-child{
border-top:0;
}

.footer-geo .footer-contact-actions{
display:grid;
grid-template-columns:1fr;
width:100%;
}

.footer-geo .footer-contact-actions a{
width:100%;
}
}

@media(max-width:560px){

.services-page .services-grid{
gap:14px;
padding-bottom:18px;
}

.services-page .service-card{
flex-basis:78vw;
min-height:176px;
padding:24px;
}

.services-page .service-icon{
width:64px;
height:64px;
}

.services-page .service-icon svg{
width:30px;
height:30px;
}

.service-details-panel{
padding:28px 22px;
}

.service-details-text{
font-size:16px;
line-height:1.7;
}

.service-details-points li{
font-size:14px;
}

}

.form-honeypot{
position:absolute !important;
left:-9999px !important;
width:1px !important;
height:1px !important;
opacity:0 !important;
pointer-events:none !important;
}

/* Mobile traffic readiness */
html{
scroll-padding-top:110px;
}

body{
overflow-x:hidden;
}

.mobile-button,
.mobile-menu a,
.btn-primary,
.btn-secondary,
.service-card,
.project-card,
.case-link,
.social-icon{
-webkit-tap-highlight-color:transparent;
}

.service-card h3,
.project-content h3,
.case-detail h2,
.section-title,
.hero h1{
overflow-wrap:break-word;
}

@media(max-width:1024px){

.page-hero{
padding-top:140px;
padding-bottom:28px;
}

.section-title{
font-size:clamp(44px,9vw,76px);
line-height:0.98;
}

.page-description{
max-width:680px;
}

.case-detail{
gap:28px;
}

.case-detail-content{
padding:30px;
}

.sales-grid{
grid-template-columns:1fr;
}

.hero-offer,
.case-process{
grid-template-columns:repeat(2,1fr);
}

.process-strip{
grid-template-columns:repeat(2,1fr);
}

.service-landing-grid{
grid-template-columns:1fr;
}

.landing-info-grid,
.landing-faq{
grid-template-columns:1fr;
}

.landing-steps{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:760px){

.container{
padding-left:20px;
padding-right:20px;
}

.page-hero{
padding-top:124px;
padding-bottom:22px;
}

.section{
padding-top:56px;
padding-bottom:56px;
}

.section-top{
margin-bottom:30px;
}

.section-title{
font-size:clamp(38px,11vw,58px);
letter-spacing:-0.045em;
}

.page-description{
font-size:17px;
line-height:1.72;
}

.mobile-menu{
left:20px;
right:20px;
top:110px;
max-height:calc(100svh - 130px);
overflow-y:auto;
padding:58px 26px 28px;
}

.mobile-menu a{
min-height:58px;
padding:16px 18px;
font-size:19px;
}

.services-page .services-grid{
margin-left:-20px;
margin-right:-20px;
padding-left:20px;
padding-right:20px;
scroll-padding-left:20px;
}

.services-page .service-card{
flex-basis:min(82vw,320px);
min-height:168px;
}

.home-sales-section{
padding-top:24px;
}

.sales-card{
min-height:auto;
padding:24px;
border-radius:24px;
}

.sales-card h3{
font-size:24px;
}

.hero-offer,
.sales-cta,
.case-process,
.case-results{
grid-template-columns:1fr;
}

.hero-offer{
margin-top:22px;
}

.sales-cta{
padding:22px;
border-radius:24px;
}

.sales-cta h3{
font-size:24px;
}

.process-strip{
grid-template-columns:1fr;
border-radius:24px;
}

.service-landing-hero{
padding-top:124px;
padding-bottom:42px;
}

.landing-actions{
display:grid;
grid-template-columns:1fr;
}

.landing-card,
.landing-info-card,
.landing-faq article{
padding:22px;
border-radius:24px;
}

.landing-steps{
grid-template-columns:1fr;
border-radius:24px;
}

.process-strip div{
padding:18px;
}

.service-details-panel{
margin-top:14px;
}

.project-card{
height:auto;
aspect-ratio:900/560;
border-radius:24px;
}

.project-content{
display:none;
}

.project-content h3{
font-size:38px;
line-height:0.98;
}

.project-summary{
font-size:14px;
line-height:1.42;
}

.case-detail{
padding:18px;
border-radius:26px;
}

.case-detail-media{
min-height:auto;
}

.case-detail-content{
padding:22px 4px 6px;
}

.case-detail h2{
font-size:36px;
}

.case-tags{
gap:8px;
}

.case-tags span{
font-size:12px;
padding:8px 10px;
}

.case-facts div{
padding:12px 14px;
}

.case-facts span{
font-size:14px;
}

.contact-grid{
gap:24px;
}

.contact-form{
padding:22px;
border-radius:26px;
}

.contact-form input,
.contact-form textarea{
font-size:16px;
padding:18px 18px;
border-radius:16px;
}

.contact-form textarea{
height:150px;
}

.captcha-visual{
grid-template-columns:1fr auto;
gap:12px;
}

.captcha-question{
font-size:28px;
}

}

@media(max-width:430px){

.container{
padding-left:20px;
padding-right:20px;
}

.nav{
height:90px;
}

.logo img{
height:54px;
max-width:205px;
}

.mobile-button{
width:58px;
height:58px;
border-radius:18px;
}

.hero{
height:auto;
min-height:100svh;
padding-top:104px;
padding-bottom:30px;
}

.hero-grid{
min-height:calc(100svh - 134px);
height:auto;
}

.hero-left{
gap:18px;
}

.hero-badge{
font-size:12px;
padding:11px 16px;
}

.hero h1{
font-size:clamp(38px,11.2vw,44px);
line-height:1.02;
letter-spacing:-0.035em;
}

.hero p{
max-width:100%;
font-size:15px;
line-height:1.58;
}

.hero-buttons{
gap:12px;
margin-bottom:24px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{
height:56px;
font-size:15px;
}

.brands-row{
width:100%;
justify-content:space-between;
gap:10px;
font-size:12px;
}

.hero-lottie{
width:118vw;
height:100svh;
min-height:100svh;
opacity:0.72;
}

.page-hero{
padding-top:118px;
}

.section-title{
font-size:clamp(36px,11.5vw,48px);
}

.services-page .service-card{
flex-basis:82vw;
min-height:156px;
padding:22px;
}

.services-page .service-card h3{
font-size:22px;
}

.service-details-title{
font-size:34px;
letter-spacing:-0.04em;
}

.project-card{
height:auto;
aspect-ratio:900/560;
}

.project-content h3{
font-size:34px;
}

.footer-left img{
height:52px;
}

}

@media(max-width:560px){

.project-card{
aspect-ratio:420/736;
}

}

/* case-story2: final winning overrides for project previews */
.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:minmax(0,1.08fr) minmax(370px,0.92fr);
align-items:center;
gap:30px;
padding:30px;
}

.projects-page .projects-page-section .case-preview.case-detail-media{
display:flex;
flex-direction:column;
align-items:stretch;
justify-content:flex-start;
aspect-ratio:auto;
min-height:520px;
max-height:none;
padding:24px;
border-radius:30px;
overflow:hidden;
background:
radial-gradient(circle at 86% 18%,rgba(28,184,207,0.20),transparent 30%),
radial-gradient(circle at 12% 88%,rgba(28,184,207,0.16),transparent 28%),
linear-gradient(135deg,rgba(255,255,255,0.96),rgba(238,252,253,0.80));
box-shadow:
0 30px 76px rgba(18,63,76,0.14),
inset 0 0 0 1px rgba(27,185,207,0.14);
}

.projects-page .projects-page-section .case-preview.case-detail-media::before{
content:'';
position:absolute;
z-index:0;
inset:24px;
border-radius:24px;
background:
linear-gradient(90deg,rgba(18,183,207,0.08) 1px,transparent 1px),
linear-gradient(0deg,rgba(18,183,207,0.08) 1px,transparent 1px);
background-size:42px 42px;
opacity:0.58;
pointer-events:none;
}

.projects-page .projects-page-section .case-preview.case-detail-media::after{
content:'';
position:absolute;
z-index:0;
left:10%;
right:10%;
bottom:26px;
height:60px;
border-radius:50%;
background:rgba(35,95,108,0.15);
filter:blur(28px);
pointer-events:none;
}

.projects-page .projects-page-section .case-preview-tabs{
position:relative;
z-index:4;
top:auto;
left:auto;
right:auto;
align-self:flex-start;
display:flex;
gap:8px;
margin:0 0 22px;
padding:6px;
border:1px solid rgba(25,173,198,0.17);
border-radius:999px;
background:rgba(255,255,255,0.82);
box-shadow:0 12px 34px rgba(27,77,90,0.10);
backdrop-filter:blur(14px);
}

.projects-page .projects-page-section .case-preview-screen{
position:relative;
z-index:2;
display:flex;
align-items:center;
justify-content:center;
width:100%;
max-width:720px;
height:auto;
margin:auto auto 0;
overflow:hidden;
border-radius:24px;
background:#fff;
box-shadow:
0 24px 54px rgba(13,48,60,0.18),
0 0 0 1px rgba(255,255,255,0.76);
transition:max-width .24s ease,border-radius .24s ease,transform .24s ease;
}

.projects-page .projects-page-section .case-preview-screen img{
display:block;
width:100%;
height:auto;
max-height:390px;
object-fit:contain;
object-position:center top;
border-radius:24px;
transform:none;
}

.projects-page .projects-page-section .case-detail:hover .case-preview-screen img{
transform:none;
}

.projects-page .projects-page-section .case-preview-screen.is-mobile{
max-width:238px;
margin-left:auto;
margin-right:auto;
padding:12px;
border-radius:32px;
background:#132230;
}

.projects-page .projects-page-section .case-preview-screen.is-mobile img{
max-height:440px;
border-radius:22px;
}

.projects-page .projects-page-section .case-preview-screen.is-detail{
max-width:680px;
}

.projects-page .projects-page-section .case-preview-badges{
position:relative;
z-index:3;
right:auto;
top:auto;
bottom:auto;
align-self:flex-end;
display:flex;
gap:8px;
flex-wrap:wrap;
justify-content:flex-end;
max-width:70%;
margin-top:18px;
}

@media(max-width:980px){

.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:1fr;
gap:18px;
padding:18px;
}

.projects-page .projects-page-section .case-preview.case-detail-media{
min-height:0;
padding:16px;
}

.projects-page .projects-page-section .case-preview-tabs{
width:100%;
overflow-x:auto;
}

.projects-page .projects-page-section .case-preview-screen img{
max-height:360px;
}

.projects-page .projects-page-section .case-preview-badges{
align-self:flex-start;
max-width:100%;
margin-top:14px;
}

}

@media(max-width:560px){

.projects-page .projects-page-section .case-preview.case-detail-media{
padding:12px;
border-radius:22px;
}

.projects-page .projects-page-section .case-preview-screen,
.projects-page .projects-page-section .case-preview-screen img{
border-radius:18px;
}

.projects-page .projects-page-section .case-preview-screen img{
max-height:300px;
}

.projects-page .projects-page-section .case-preview-screen.is-mobile img{
max-height:390px;
}

}

/* projects-media1: rebuilt project preview column */
.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:minmax(0,1.04fr) minmax(360px,0.96fr);
padding:28px;
}

.projects-page .projects-page-section .case-detail-media{
position:relative;
isolation:isolate;
aspect-ratio:1440/1100;
padding:42px 18px 18px;
border-radius:28px;
background:
linear-gradient(135deg,rgba(255,255,255,0.94),rgba(238,251,253,0.76)),
radial-gradient(circle at 88% 18%,rgba(34,189,210,0.16),transparent 34%),
radial-gradient(circle at 6% 92%,rgba(42,172,193,0.18),transparent 30%);
box-shadow:
0 28px 70px rgba(25,80,92,0.16),
inset 0 0 0 1px rgba(24,183,207,0.14);
}

.projects-page .projects-page-section .case-detail-media::before{
content:'';
position:absolute;
z-index:0;
inset:22px 22px 22px 22px;
border-radius:22px;
background:
linear-gradient(90deg,rgba(18,183,207,0.08) 1px,transparent 1px),
linear-gradient(0deg,rgba(18,183,207,0.08) 1px,transparent 1px);
background-size:42px 42px;
opacity:0.58;
pointer-events:none;
}

.projects-page .projects-page-section .case-detail-media::after{
content:'';
position:absolute;
z-index:2;
left:44px;
top:25px;
width:9px;
height:9px;
border-radius:50%;
background:#20b9d0;
box-shadow:
18px 0 0 rgba(32,185,208,0.34),
36px 0 0 rgba(32,185,208,0.18);
pointer-events:none;
}

.projects-page .projects-page-section .case-detail-media img{
position:relative;
z-index:1;
display:block;
width:100%;
height:100%;
object-fit:contain;
object-position:center top;
border-radius:18px;
background:#fff;
box-shadow:
0 18px 42px rgba(16,51,62,0.16),
0 0 0 1px rgba(255,255,255,0.78);
}

.projects-page .projects-page-section .case-detail-media:hover img{
transform:none;
}

@media(max-width:980px){

.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:1fr;
padding:18px;
}

.projects-page .projects-page-section .case-detail-media{
aspect-ratio:1440/1100;
padding:42px 16px 16px;
border-radius:22px;
}

.projects-page .projects-page-section .case-detail-media::before{
inset:18px 16px 16px;
}

.projects-page .projects-page-section .case-detail-media::after{
left:32px;
top:22px;
}

}

/* case-story1: interactive portfolio story previews */
.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:minmax(0,1.08fr) minmax(370px,0.92fr);
align-items:center;
gap:30px;
padding:30px;
}

.projects-page .projects-page-section .case-preview{
position:relative;
display:flex;
flex-direction:column;
align-items:stretch;
justify-content:flex-start;
min-height:520px;
aspect-ratio:auto;
padding:24px;
border-radius:30px;
overflow:hidden;
background:
radial-gradient(circle at 86% 18%,rgba(28,184,207,0.20),transparent 30%),
radial-gradient(circle at 12% 88%,rgba(28,184,207,0.16),transparent 28%),
linear-gradient(135deg,rgba(255,255,255,0.96),rgba(238,252,253,0.80));
box-shadow:
0 30px 76px rgba(18,63,76,0.14),
inset 0 0 0 1px rgba(27,185,207,0.14);
}

.projects-page .projects-page-section .case-preview::before{
content:'';
position:absolute;
z-index:0;
inset:24px;
border-radius:24px;
background:
linear-gradient(90deg,rgba(18,183,207,0.08) 1px,transparent 1px),
linear-gradient(0deg,rgba(18,183,207,0.08) 1px,transparent 1px);
background-size:42px 42px;
opacity:0.58;
}

.projects-page .projects-page-section .case-preview::after{
content:'';
position:absolute;
z-index:0;
left:10%;
right:10%;
bottom:26px;
height:60px;
border-radius:50%;
background:rgba(35,95,108,0.15);
filter:blur(28px);
}

.case-preview-tabs{
position:relative;
z-index:4;
top:auto;
left:auto;
align-self:flex-start;
display:flex;
gap:8px;
margin-bottom:22px;
padding:6px;
border:1px solid rgba(25,173,198,0.17);
border-radius:999px;
background:rgba(255,255,255,0.78);
box-shadow:0 12px 34px rgba(27,77,90,0.10);
backdrop-filter:blur(14px);
}

.case-preview-tabs button{
height:32px;
padding:0 13px;
border:0;
border-radius:999px;
background:transparent;
color:#6b7a88;
font-size:12px;
font-weight:800;
letter-spacing:0;
cursor:pointer;
}

.case-preview-tabs button.is-active{
background:linear-gradient(135deg,#34c7d9,#1d8fbc);
color:#fff;
box-shadow:0 8px 20px rgba(23,147,188,0.24);
}

.case-preview-screen{
position:relative;
z-index:2;
display:flex;
align-items:center;
justify-content:center;
width:100%;
max-width:720px;
margin:auto auto 0;
overflow:hidden;
border-radius:24px;
background:#fff;
box-shadow:
0 24px 54px rgba(13,48,60,0.18),
0 0 0 1px rgba(255,255,255,0.76);
transition:max-width .24s ease, border-radius .24s ease, transform .24s ease;
}

.case-preview-screen::before{
content:'';
position:absolute;
z-index:2;
left:18px;
top:15px;
width:8px;
height:8px;
border-radius:50%;
background:#20b9d0;
box-shadow:
16px 0 0 rgba(32,185,208,0.34),
32px 0 0 rgba(32,185,208,0.18);
}

.case-preview-screen img{
display:block;
width:100%;
height:auto;
max-height:390px;
object-fit:contain;
object-position:center top;
border-radius:24px;
}

.case-preview-screen.is-mobile{
max-width:238px;
margin-left:auto;
margin-right:auto;
border-radius:32px;
padding:12px;
background:#132230;
}

.case-preview-screen.is-mobile::before{
left:50%;
top:8px;
width:42px;
height:5px;
border-radius:999px;
background:rgba(255,255,255,0.32);
box-shadow:none;
transform:translateX(-50%);
}

.case-preview-screen.is-mobile img{
max-height:440px;
border-radius:22px;
}

.case-preview-screen.is-detail{
max-width:680px;
}

.case-preview-badges{
position:relative;
z-index:3;
right:auto;
top:auto;
align-self:flex-end;
display:flex;
gap:8px;
flex-wrap:wrap;
justify-content:flex-end;
margin-top:18px;
max-width:60%;
}

.case-preview-badges span{
padding:8px 12px;
border-radius:999px;
background:rgba(255,255,255,0.86);
border:1px solid rgba(25,173,198,0.18);
box-shadow:0 10px 26px rgba(19,66,80,0.10);
color:#197f9f;
font-size:12px;
font-weight:900;
}

@media(max-width:980px){

.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:1fr;
gap:18px;
padding:18px;
}

.projects-page .projects-page-section .case-preview{
min-height:0;
padding:16px;
}

.case-preview-tabs{
left:auto;
right:auto;
width:100%;
overflow-x:auto;
}

.case-preview-tabs button{
flex:0 0 auto;
}

.case-preview-screen img{
max-height:360px;
}

.case-preview-badges{
display:flex;
align-self:flex-start;
max-width:100%;
margin-top:14px;
}

}

@media(max-width:560px){

.projects-page .projects-page-section .case-preview{
padding:62px 12px 16px;
border-radius:22px;
}

.case-preview-screen{
border-radius:18px;
}

.case-preview-screen img{
max-height:300px;
border-radius:18px;
}

.case-preview-screen.is-mobile img{
max-height:390px;
}

}

#cases .projects-grid{
max-width:1180px;
margin:0 auto;
gap:30px;
align-items:stretch;
}

#cases .project-card{
display:block;
height:auto;
min-height:0;
aspect-ratio:900/560;
padding:16px;
border-radius:28px;
background:rgba(255,255,255,0.88);
border:1px solid rgba(18,129,168,0.15);
box-shadow:
0 22px 62px rgba(13,73,102,0.12),
0 1px 0 rgba(255,255,255,0.92) inset;
overflow:hidden;
}

#cases .project-card::after{
content:'';
position:absolute;
inset:8px;
border-radius:24px;
border:1px solid rgba(33,183,207,0.12);
pointer-events:none;
}

#cases .project-card picture{
position:absolute;
inset:16px;
display:block;
height:auto;
aspect-ratio:auto;
border-radius:18px;
overflow:hidden;
background:#ffffff;
border:1px solid rgba(18,129,168,0.12);
box-shadow:0 16px 38px rgba(13,73,102,0.10);
}

#cases .project-card img{
width:100%;
height:100%;
object-fit:cover;
object-position:center top;
display:block;
transform:none;
transition:0.5s ease;
}

#cases .project-card:hover img{
transform:scale(1.015);
}

#cases .project-overlay{
display:none;
}

#cases .project-content{
position:absolute;
left:34px;
right:34px;
bottom:34px;
z-index:2;
display:grid;
grid-template-columns:auto 1fr;
grid-template-areas:
'type action'
'title action';
column-gap:16px;
row-gap:8px;
align-items:center;
padding:18px 20px;
min-width:0;
border-radius:22px;
background:linear-gradient(135deg,rgba(255,255,255,0.74),rgba(239,251,253,0.58));
border:1px solid rgba(255,255,255,0.72);
box-shadow:
0 18px 42px rgba(8,28,38,0.20),
0 1px 0 rgba(255,255,255,0.82) inset;
backdrop-filter:blur(18px) saturate(145%);
}

#cases .project-content .project-type{
grid-area:type;
width:max-content;
max-width:100%;
padding:8px 16px;
background:rgba(221,250,253,0.92);
border:1px solid rgba(33,183,207,0.26);
color:#1788a8;
box-shadow:none;
}

#cases .project-content h3{
grid-area:title;
margin:0;
font-size:clamp(34px,2.4vw,46px);
line-height:0.95;
letter-spacing:-0.035em;
color:var(--onevl-ink);
}

#cases .project-summary{
display:none;
}

#cases .project-content::after{
content:'Открыть';
grid-area:action;
display:inline-flex;
align-items:center;
justify-content:center;
justify-self:end;
min-width:92px;
height:38px;
padding:0 18px;
border-radius:999px;
border:1px solid rgba(33,183,207,0.28);
background:rgba(255,255,255,0.86);
color:#1788a8;
font-size:12px;
font-weight:900;
}

@media(max-width:980px){

#cases .projects-grid{
grid-template-columns:1fr;
max-width:680px;
}

}

@media(max-width:560px){

#cases .project-card{
aspect-ratio:420/540;
padding:12px;
border-radius:24px;
}

#cases .project-card picture{
inset:12px;
aspect-ratio:auto;
border-radius:16px;
}

#cases .project-card img{
object-fit:cover;
}

#cases .project-content{
left:22px;
right:22px;
bottom:22px;
grid-template-columns:1fr auto;
grid-template-areas:
'type action'
'title title';
gap:10px;
padding:14px;
border-radius:18px;
}

#cases .project-content h3{
font-size:34px;
}

#cases .project-summary{
max-width:none;
font-size:14px;
}

}

.projects-page-section .case-showcase{
max-width:1180px;
margin:0 auto;
gap:28px;
}

.projects-page-section .case-detail,
.projects-page-section .case-detail:nth-child(even){
grid-template-columns:minmax(0,0.98fr) minmax(340px,0.72fr);
gap:24px;
width:100%;
max-width:1180px;
margin:0 auto;
padding:16px;
align-items:center;
overflow:hidden;
}

.projects-page-section .case-detail:nth-child(even) .case-detail-media{
order:2;
}

.projects-page-section .case-detail-media,
.projects-page-section .case-detail-body{
min-width:0;
}

.projects-page-section .case-detail-media{
aspect-ratio:16/9;
max-height:390px;
}

.projects-page-section .case-detail-media img{
object-fit:contain;
object-position:center;
transform:none;
}

.projects-page-section .case-detail:hover .case-detail-media img{
transform:none;
}

.projects-page-section .case-detail-body{
padding:22px 18px;
max-width:440px;
}

.projects-page-section .case-detail-body h3{
font-size:clamp(34px,2.8vw,46px);
line-height:1;
letter-spacing:-0.04em;
overflow-wrap:anywhere;
margin:12px 0 14px;
}

.projects-page-section .case-detail-body p{
font-size:15px;
line-height:1.6;
margin-bottom:16px;
}

.projects-page-section .case-facts{
gap:9px;
margin-bottom:16px;
}

.projects-page-section .case-facts div{
padding:11px 13px;
border-radius:14px;
}

.projects-page-section .case-results{
gap:8px;
margin-bottom:16px;
}

.projects-page-section .case-results div{
padding:10px;
}

@media(max-width:900px){

.projects-page-section .case-detail,
.projects-page-section .case-detail:nth-child(even){
grid-template-columns:1fr;
gap:16px;
}

.projects-page-section .case-detail:nth-child(even) .case-detail-media{
order:0;
}

.projects-page-section .case-detail-media{
max-height:none;
}

.projects-page-section .case-detail-body{
max-width:none;
padding:8px 4px 4px;
}

}

@media(max-width:370px){

.hero h1{
font-size:36px;
}

.hero p{
font-size:14px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary{
height:52px;
}

.brands-row{
font-size:11px;
}

.mobile-menu{
left:14px;
right:14px;
padding-left:20px;
padding-right:20px;
}

}

/* projects-clean2: final desktop case layout */
.projects-page .projects-page-section .case-showcase{
max-width:1200px;
gap:24px;
}

.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:minmax(0,1.18fr) minmax(360px,0.82fr);
align-items:center;
gap:28px;
width:100%;
max-width:1200px;
min-height:0;
padding:26px;
overflow:hidden;
}

.projects-page .projects-page-section .case-detail:nth-child(even) .case-detail-media{
order:0;
}

.projects-page .projects-page-section .case-detail-media{
display:flex;
align-items:center;
justify-content:center;
aspect-ratio:16/10;
max-height:none;
min-height:0;
padding:0;
border-radius:22px;
background:rgba(238,250,252,0.62);
box-shadow:inset 0 0 0 1px rgba(18,183,207,0.11);
}

.projects-page .projects-page-section .case-detail-media::before{
background:linear-gradient(180deg,rgba(255,255,255,0) 58%,rgba(7,31,41,0.18));
}

.projects-page .projects-page-section .case-detail-media img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
border-radius:18px;
transform:none;
}

.projects-page .projects-page-section .case-detail:hover .case-detail-media img{
transform:none;
}

.projects-page .projects-page-section .case-detail-body{
max-width:none;
padding:4px 4px 4px 2px;
}

.projects-page .projects-page-section .case-detail-body h3{
font-size:clamp(38px,3vw,50px);
line-height:0.98;
letter-spacing:0;
margin:12px 0 14px;
}

.projects-page .projects-page-section .case-detail-body p{
max-width:520px;
font-size:16px;
line-height:1.65;
margin-bottom:18px;
}

.projects-page .projects-page-section .case-facts,
.projects-page .projects-page-section .case-results{
grid-template-columns:repeat(3,minmax(0,1fr));
gap:10px;
margin-bottom:18px;
}

.projects-page .projects-page-section .case-facts div{
padding:13px 14px;
}

.projects-page .projects-page-section .case-results div{
min-height:106px;
padding:13px;
}

.projects-page .projects-page-section .case-tags{
gap:8px;
margin-bottom:20px;
}

.projects-page .projects-page-section .case-link{
min-height:48px;
padding:0 18px;
}

@media(max-width:980px){

.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
grid-template-columns:1fr;
gap:18px;
padding:18px;
}

.projects-page .projects-page-section .case-detail-media{
aspect-ratio:16/10;
}

.projects-page .projects-page-section .case-detail-body{
padding:4px 2px 2px;
}

.projects-page .projects-page-section .case-detail-body p{
max-width:none;
}

}

@media(max-width:560px){

.projects-page .projects-page-section .case-showcase{
gap:18px;
}

.projects-page .projects-page-section .case-detail,
.projects-page .projects-page-section .case-detail:nth-child(even){
padding:12px;
border-radius:22px;
}

.projects-page .projects-page-section .case-detail-media{
border-radius:16px;
}

.projects-page .projects-page-section .case-detail-media img{
border-radius:14px;
}

.projects-page .projects-page-section .case-detail-body h3{
font-size:34px;
}

.projects-page .projects-page-section .case-facts,
.projects-page .projects-page-section .case-results{
grid-template-columns:1fr;
}

}

@media(max-width:1080px){

.about-story-panel{
grid-template-columns:1fr;
padding:34px;
}

.about-story-image{
order:-1;
max-width:720px;
}

}

@media(max-width:640px){

.about-story-panel{
padding:20px;
border-radius:26px;
gap:24px;
}

.about-story-content h2{
font-size:32px;
line-height:1.08;
margin:18px 0;
}

.about-story-content p,
.about-story-content .about-story-lead{
font-size:16px;
line-height:1.7;
}

.about-story-columns{
grid-template-columns:1fr;
gap:12px;
margin-top:20px;
}

.about-story-columns > div{
padding:18px;
border-radius:18px;
}

.about-story-actions{
display:grid;
grid-template-columns:1fr;
gap:12px;
}

.about-story-actions .btn-primary,
.about-story-actions .btn-secondary{
width:100%;
}

.about-story-image{
padding:10px;
border-radius:22px;
}

.about-story-image img{
border-radius:16px;
}

}

/* geo-footer1: visible NAP and positioning facts for ONEVL */
.footer-geo{
align-items:stretch;
gap:22px;
padding:36px 0 42px;
}

.footer-brand-block{
display:grid;
grid-template-columns:auto minmax(0,1fr);
gap:22px;
align-items:center;
width:100%;
padding:24px;
border-radius:26px;
background:rgba(255,255,255,0.72);
border:1px solid rgba(50,86,105,0.12);
box-shadow:0 16px 42px rgba(37,72,88,0.08);
}

.footer-brand-block img{
height:52px;
max-width:220px;
object-fit:contain;
}

.footer-brand-block p{
max-width:860px;
font-size:16px;
line-height:1.65;
font-weight:650;
color:var(--onevl-muted);
}

.footer-nap{
display:grid;
grid-template-columns:repeat(4,minmax(0,1fr));
gap:14px;
width:100%;
}

.footer-nap div{
min-height:94px;
padding:18px;
border-radius:22px;
background:rgba(255,255,255,0.62);
border:1px solid rgba(50,86,105,0.11);
}

.footer-nap span{
display:block;
margin-bottom:8px;
font-size:12px;
line-height:1.2;
font-weight:850;
letter-spacing:0.08em;
text-transform:uppercase;
color:#247fa8;
}

.footer-nap strong,
.footer-nap a{
display:block;
font-size:15px;
line-height:1.45;
font-weight:800;
color:var(--onevl-ink);
}

.footer-contact-actions{
display:flex;
flex-wrap:wrap;
gap:12px;
justify-content:center;
}

.footer-contact-actions a{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:46px;
padding:0 18px;
border-radius:999px;
background:rgba(33,183,207,0.08);
border:1px solid rgba(33,183,207,0.18);
color:#247fa8;
font-size:14px;
font-weight:850;
text-decoration:none;
}

.footer-copy{
text-align:center;
font-size:14px;
font-weight:700;
color:rgba(21,25,34,0.52);
}

@media(max-width:900px){

.footer-brand-block,
.footer-nap{
grid-template-columns:1fr 1fr;
}

.footer-brand-block{
align-items:start;
}

}

@media(max-width:560px){

.footer-brand-block,
.footer-nap{
grid-template-columns:1fr;
}

.footer-brand-block{
padding:20px;
text-align:center;
justify-items:center;
}

.footer-brand-block p{
font-size:15px;
}

.footer-nap div{
min-height:auto;
padding:16px;
text-align:center;
}

.footer-contact-actions{
display:grid;
grid-template-columns:1fr;
}

.footer-contact-actions a{
width:100%;
}

}

/* services-desktop-fix1: stabilize services layout on production desktop */
body.services-page .blur-ball{
display:none;
}

body.services-page .services-section{
position:relative;
overflow:visible;
}

body.services-page .services-grid{
position:relative;
z-index:2;
}

body.services-page .service-details-panel{
position:relative;
z-index:1;
clear:both;
margin-top:30px;
}

body.services-page .service-details-inner{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(360px,0.78fr);
gap:36px;
align-items:center;
}

body.services-page .service-details-copy{
grid-column:1;
min-width:0;
}

body.services-page .service-details-media{
grid-column:2;
order:0;
width:100%;
max-width:480px;
justify-self:end;
align-self:center;
margin:0;
aspect-ratio:16/10;
background:#ffffff;
}

body.services-page .service-details-media img{
display:block;
width:100%;
height:100%;
object-fit:cover;
opacity:1;
visibility:visible;
}

@media(max-width:900px){

body.services-page .service-details-inner{
grid-template-columns:1fr;
gap:22px;
}

body.services-page .service-details-copy,
body.services-page .service-details-media{
grid-column:auto;
}

body.services-page .service-details-media{
order:-1;
max-width:none;
justify-self:stretch;
}

}

/* case-story2-final: must stay last */
.projects-page .projects-page-section .case-preview.case-detail-media{
display:flex;
flex-direction:column;
align-items:stretch;
justify-content:flex-start;
aspect-ratio:auto;
min-height:520px;
max-height:none;
padding:24px;
border-radius:30px;
overflow:hidden;
}

.projects-page .projects-page-section .case-preview-tabs{
position:relative;
top:auto;
left:auto;
right:auto;
align-self:flex-start;
margin:0 0 22px;
}

.projects-page .projects-page-section .case-preview-screen{
position:relative;
z-index:2;
display:flex;
align-items:center;
justify-content:center;
width:100%;
max-width:720px;
height:auto;
aspect-ratio:1440/1100;
margin:auto auto 0;
overflow:hidden;
border-radius:24px;
background:#fff;
}

.projects-page .projects-page-section .case-preview-screen img{
display:block;
width:100%;
height:100%;
max-height:none;
object-fit:contain;
object-position:center top;
border-radius:24px;
transform:none;
}

.projects-page .projects-page-section .case-detail:hover .case-preview-screen img{
transform:none;
}

.projects-page .projects-page-section .case-preview-screen.is-mobile{
max-width:238px;
aspect-ratio:auto;
margin-left:auto;
margin-right:auto;
padding:12px;
border-radius:32px;
background:#132230;
}

.projects-page .projects-page-section .case-preview-screen.is-mobile img{
height:auto;
max-height:440px;
border-radius:22px;
}

.projects-page .projects-page-section .case-preview-badges{
position:relative;
right:auto;
top:auto;
bottom:auto;
align-self:flex-end;
margin-top:18px;
}

@media(max-width:980px){

.projects-page .projects-page-section .case-preview.case-detail-media{
min-height:0;
padding:16px;
}

.projects-page .projects-page-section .case-preview-tabs{
width:100%;
overflow-x:auto;
}

.projects-page .projects-page-section .case-preview-screen img{
max-height:360px;
}

.projects-page .projects-page-section .case-preview-badges{
align-self:flex-start;
max-width:100%;
}

}

/* home-sales-wide-cta-final: full-width CTA after sales cards */
.home-sales-section .sales-cta{
position:relative;
display:block;
width:100%;
max-width:none;
margin:28px 0 0;
padding:0;
border:0;
border-radius:0;
background:transparent;
box-shadow:none;
}

.home-sales-section .sales-cta > div{
position:relative;
display:grid;
grid-template-areas:
"title action"
"text action";
grid-template-columns:minmax(0,1fr) auto;
column-gap:42px;
row-gap:10px;
align-items:center;
min-height:178px;
padding:34px 36px;
border-radius:28px;
background:linear-gradient(135deg,rgba(255,255,255,0.88),rgba(235,251,253,0.78));
border:1px solid rgba(18,129,168,0.13);
box-shadow:0 22px 58px rgba(13,73,102,0.10);
overflow:hidden;
}

.home-sales-section .sales-cta > div::before{
content:'';
position:absolute;
inset:auto 28px -82px auto;
width:220px;
height:220px;
border-radius:50%;
background:radial-gradient(circle,rgba(33,183,207,0.18),rgba(33,183,207,0));
pointer-events:none;
}

.home-sales-section .sales-cta h3,
.home-sales-section .sales-cta p,
.home-sales-section .sales-cta .btn-primary{
position:relative;
z-index:1;
}

.home-sales-section .sales-cta h3{
grid-area:title;
max-width:820px;
font-size:clamp(28px,2.1vw,38px);
line-height:1.08;
letter-spacing:0;
margin:0;
}

.home-sales-section .sales-cta p{
grid-area:text;
max-width:820px;
font-size:16px;
line-height:1.62;
margin:0;
}

.home-sales-section .sales-cta .btn-primary{
grid-area:action;
justify-self:end;
align-self:center;
min-width:250px;
white-space:nowrap;
}

@media (max-width: 900px){
.home-sales-section .sales-cta{
max-width:none;
margin-top:20px;
}

.home-sales-section .sales-cta > div{
grid-template-areas:
"title"
"text"
"action";
grid-template-columns:1fr;
gap:16px;
min-height:0;
padding:24px;
border-radius:24px;
}

.home-sales-section .sales-cta h3{
font-size:24px;
line-height:1.14;
}

.home-sales-section .sales-cta .btn-primary{
justify-self:stretch;
min-width:0;
white-space:normal;
}
}
