/* ==========================================
   HERO
========================================== */

.keys-hero{

position:relative;

padding:110px 0;

overflow:hidden;

background:
linear-gradient(135deg,#07131f 0%,#0f2740 55%,#143b63 100%);

}

.keys-hero::before{

content:"";

position:absolute;

width:700px;

height:700px;

background:radial-gradient(circle,rgba(255,196,0,.14),transparent 70%);

top:-250px;

right:-220px;

pointer-events:none;

}

.keys-hero::after{

content:"";

position:absolute;

width:500px;

height:500px;

background:radial-gradient(circle,rgba(255,255,255,.05),transparent 70%);

left:-180px;

bottom:-180px;

pointer-events:none;

}

.hero-grid{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:90px;

align-items:center;

position:relative;

z-index:2;

}

.hero-left{

display:flex;

flex-direction:column;

align-items:flex-start;

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 22px;

background:rgba(255,255,255,.12);

border:1px solid rgba(255,255,255,.18);

border-radius:50px;

color:#fff;

font-weight:700;

font-size:14px;

letter-spacing:.5px;

backdrop-filter:blur(14px);

margin-bottom:30px;

}

.keys-hero h1{

font-size:60px;

line-height:1.08;

font-weight:800;

color:#fff;

max-width:720px;

margin-bottom:28px;

}

.hero-text{

font-size:19px;

line-height:1.9;

color:rgba(255,255,255,.86);

max-width:680px;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

gap:18px;

margin-bottom:55px;

flex-wrap:wrap;

}

.call-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 34px;

background:#ffc400;

color:#111;

font-size:17px;

font-weight:700;

border-radius:60px;

text-decoration:none;

transition:.35s;

box-shadow:0 15px 40px rgba(255,196,0,.30);

}

.call-btn:hover{

transform:translateY(-4px);

box-shadow:0 25px 55px rgba(255,196,0,.45);

}

.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:18px 34px;

border-radius:60px;

border:2px solid rgba(255,255,255,.25);

color:#fff;

text-decoration:none;

font-weight:700;

transition:.35s;

}

.secondary-btn:hover{

background:#fff;

color:#0f2740;

}

.hero-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

width:100%;

}

.hero-features div{

display:flex;

align-items:center;

gap:14px;

padding:18px 20px;

background:rgba(255,255,255,.08);

border:1px solid rgba(255,255,255,.10);

border-radius:18px;

backdrop-filter:blur(10px);

transition:.35s;

}

.hero-features div:hover{

transform:translateY(-5px);

background:rgba(255,255,255,.12);

}

.hero-features span{

font-size:30px;

}

.hero-features p{

margin:0;

color:#fff;

font-weight:600;

}

.hero-right{

position:relative;

display:flex;

justify-content:center;

}

.hero-card{

width:100%;

max-width:470px;

background:#fff;

border-radius:30px;

padding:45px;

box-shadow:0 35px 80px rgba(0,0,0,.20);

position:relative;

z-index:2;

}

.hero-icon{

width:90px;

height:90px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#ffc400;

font-size:40px;

margin-bottom:30px;

}

.hero-card h3{

font-size:32px;

margin-bottom:25px;

color:#0f2740;

}

.hero-card ul{

list-style:none;

padding:0;

margin:0;

display:grid;

gap:16px;

}

.hero-card li{

font-size:18px;

font-weight:600;

color:#444;

}

.floating-box{

position:absolute;

padding:14px 22px;

background:#fff;

border-radius:50px;

font-weight:700;

box-shadow:0 15px 40px rgba(0,0,0,.15);

animation:float 4s ease-in-out infinite;

}

.box-one{

left:-20px;

top:60px;

}

.box-two{

right:-20px;

bottom:80px;

animation-delay:1.5s;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

}

/* ==========================================
   SERVICES
========================================== */

.services-section{

padding:110px 0;

background:#f7f9fc;

position:relative;

overflow:hidden;

}

.services-section::before{

content:"";

position:absolute;

width:600px;

height:600px;

border-radius:50%;

background:radial-gradient(circle,rgba(18,103,194,.06),transparent 70%);

left:-250px;

top:-250px;

}

.section-heading{

text-align:center;

max-width:820px;

margin:0 auto 70px;

position:relative;

z-index:2;

}

.section-heading span{

display:inline-block;

padding:10px 20px;

border-radius:50px;

background:#e7f1ff;

color:#0f4ea6;

font-weight:700;

font-size:14px;

letter-spacing:1px;

margin-bottom:20px;

}

.section-heading h2{

font-size:48px;

font-weight:800;

color:#14263f;

margin-bottom:20px;

line-height:1.15;

}

.section-heading p{

font-size:18px;

line-height:1.9;

color:#6b7687;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

position:relative;

z-index:2;

}

.service-card{

background:#fff;

padding:45px 35px;

border-radius:28px;

position:relative;

overflow:hidden;

transition:.40s;

box-shadow:0 15px 45px rgba(16,44,84,.08);

border:1px solid #edf2f8;

}

.service-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:6px;

background:linear-gradient(90deg,#ffc400,#ffdc67);

transform:scaleX(0);

transform-origin:left;

transition:.4s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 30px 70px rgba(16,44,84,.15);

}

.service-icon{

width:82px;

height:82px;

border-radius:22px;

display:flex;

align-items:center;

justify-content:center;

font-size:38px;

background:linear-gradient(135deg,#0f4ea6,#1569d8);

color:#fff;

margin-bottom:28px;

transition:.35s;

}

.service-card:hover .service-icon{

transform:rotate(-8deg) scale(1.08);

}

.service-card h3{

font-size:28px;

font-weight:700;

color:#13253e;

margin-bottom:18px;

line-height:1.25;

}

.service-card p{

font-size:17px;

line-height:1.9;

color:#667284;

margin:0;

}

/* ==========================================
   WHY US
========================================== */

.why-keys{

padding:110px 0;

background:#fff;

}

.why-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.why-card{

position:relative;

padding:42px;

background:linear-gradient(135deg,#ffffff,#f7fbff);

border-radius:30px;

border:1px solid #edf3fb;

transition:.35s;

overflow:hidden;

}

.why-card::after{

content:"";

position:absolute;

right:-70px;

bottom:-70px;

width:170px;

height:170px;

border-radius:50%;

background:rgba(255,196,0,.08);

transition:.35s;

}

.why-card:hover{

transform:translateY(-8px);

box-shadow:0 28px 60px rgba(15,78,166,.12);

}

.why-card:hover::after{

transform:scale(1.2);

}

.why-number{

font-size:70px;

font-weight:800;

line-height:1;

color:#d8e6f8;

margin-bottom:20px;

}

.why-card h3{

font-size:28px;

margin-bottom:18px;

color:#16263e;

}

.why-card p{

font-size:17px;

line-height:1.9;

color:#677486;

margin:0;

}

/* ==========================================
   KEY TYPES
========================================== */

.key-types{

padding:120px 0;

background:linear-gradient(180deg,#f7f9fc 0%,#ffffff 100%);

position:relative;

overflow:hidden;

}

.key-types::before{

content:"";

position:absolute;

width:700px;

height:700px;

border-radius:50%;

background:radial-gradient(circle,rgba(21,105,216,.06),transparent 70%);

right:-280px;

top:-250px;

}

.types-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:32px;

position:relative;

z-index:2;

}

.type-card{

position:relative;

padding:42px 36px;

border-radius:30px;

background:#fff;

overflow:hidden;

transition:.4s;

border:1px solid #edf2f8;

box-shadow:0 18px 45px rgba(16,44,84,.08);

}

.type-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:linear-gradient(135deg,rgba(15,78,166,.03),rgba(255,196,0,.04));

opacity:0;

transition:.4s;

}

.type-card:hover::before{

opacity:1;

}

.type-card:hover{

transform:translateY(-12px);

box-shadow:0 35px 70px rgba(15,78,166,.15);

}

.type-icon{

width:90px;

height:90px;

display:flex;

align-items:center;

justify-content:center;

border-radius:24px;

font-size:42px;

margin-bottom:28px;

background:linear-gradient(135deg,#ffc400,#ffd84f);

transition:.35s;

}

.type-card:nth-child(even) .type-icon{

background:linear-gradient(135deg,#1569d8,#0f4ea6);

color:#fff;

}

.type-card:hover .type-icon{

transform:rotate(-8deg) scale(1.08);

}

.type-card h3{

font-size:28px;

font-weight:700;

color:#13253e;

margin-bottom:18px;

line-height:1.25;

}

.type-card p{

font-size:17px;

line-height:1.9;

color:#667284;

margin:0;

}

.type-card::after{

content:"";

position:absolute;

right:-45px;

bottom:-45px;

width:120px;

height:120px;

border-radius:50%;

background:rgba(255,196,0,.08);

transition:.35s;

}

.type-card:nth-child(even)::after{

background:rgba(21,105,216,.08);

}

.type-card:hover::after{

transform:scale(1.4);

}


/* ==========================================
   MOBILE SERVICE
========================================== */

.mobile-service{

padding:120px 0;

background:#ffffff;

position:relative;

overflow:hidden;

}

.mobile-service::before{

content:"";

position:absolute;

left:-250px;

bottom:-250px;

width:650px;

height:650px;

border-radius:50%;

background:radial-gradient(circle,rgba(255,196,0,.07),transparent 70%);

}

.mobile-grid{

display:grid;

grid-template-columns:1.05fr .95fr;

gap:90px;

align-items:center;

position:relative;

z-index:2;

}

.section-tag{

display:inline-block;

padding:11px 22px;

border-radius:50px;

background:#e8f2ff;

color:#0f4ea6;

font-weight:700;

margin-bottom:24px;

}

.mobile-content h2{

font-size:50px;

line-height:1.15;

color:#16263f;

margin-bottom:28px;

}

.mobile-content>p{

font-size:18px;

line-height:1.95;

color:#687587;

margin-bottom:22px;

}

.mobile-list{

display:grid;

gap:22px;

margin-top:45px;

}

.mobile-item{

display:flex;

gap:22px;

align-items:flex-start;

padding:24px;

background:#fff;

border-radius:24px;

border:1px solid #edf2f8;

box-shadow:0 15px 40px rgba(15,78,166,.06);

transition:.35s;

}

.mobile-item:hover{

transform:translateX(8px);

box-shadow:0 22px 55px rgba(15,78,166,.12);

}

.mobile-icon{

width:70px;

height:70px;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

border-radius:20px;

background:linear-gradient(135deg,#1569d8,#0f4ea6);

color:#fff;

flex-shrink:0;

}

.mobile-item h4{

font-size:22px;

margin-bottom:10px;

color:#16263f;

}

.mobile-item p{

margin:0;

font-size:16px;

line-height:1.8;

color:#6b7687;

}

.mobile-image{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.mobile-image img{

width:100%;

max-width:540px;

border-radius:35px;

box-shadow:0 40px 90px rgba(0,0,0,.16);

display:block;

}

.mobile-floating{

position:absolute;

background:#fff;

padding:15px 24px;

border-radius:50px;

font-weight:700;

box-shadow:0 18px 45px rgba(0,0,0,.12);

animation:float 4s ease-in-out infinite;

}

.mobile-floating.one{

left:-15px;

top:60px;

}

.mobile-floating.two{

right:-20px;

top:170px;

animation-delay:1.2s;

}

.mobile-floating.three{

left:60px;

bottom:35px;

animation-delay:2.2s;

}

/* ==========================================
   ADVANTAGES
========================================== */

.advantages-section{

padding:120px 0;

background:#f7f9fc;

}

.advantages-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.adv-card{

background:#fff;

padding:42px 34px;

border-radius:30px;

text-align:center;

border:1px solid #edf2f8;

box-shadow:0 18px 45px rgba(16,44,84,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.adv-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:5px;

background:linear-gradient(90deg,#1569d8,#ffc400);

transform:scaleX(0);

transform-origin:left;

transition:.35s;

}

.adv-card:hover::before{

transform:scaleX(1);

}

.adv-card:hover{

transform:translateY(-10px);

box-shadow:0 35px 70px rgba(15,78,166,.15);

}

.adv-icon{

width:90px;

height:90px;

margin:0 auto 28px;

display:flex;

align-items:center;

justify-content:center;

border-radius:24px;

font-size:40px;

background:linear-gradient(135deg,#ffc400,#ffd84f);

transition:.35s;

}

.adv-card:nth-child(even) .adv-icon{

background:linear-gradient(135deg,#1569d8,#0f4ea6);

color:#fff;

}

.adv-card:hover .adv-icon{

transform:scale(1.08) rotate(-6deg);

}

.adv-card h3{

font-size:27px;

margin-bottom:18px;

color:#16263f;

}

.adv-card p{

font-size:17px;

line-height:1.9;

color:#6b7687;

margin:0;

}

/* ==========================================
   PROCESS
========================================== */

.work-process{

padding:120px 0;

background:#fff;

position:relative;

overflow:hidden;

}

.work-process::before{

content:"";

position:absolute;

right:-220px;

top:-220px;

width:650px;

height:650px;

border-radius:50%;

background:radial-gradient(circle,rgba(21,105,216,.05),transparent 70%);

}

.process-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

position:relative;

z-index:2;

}

.process-card{

position:relative;

background:#fff;

border-radius:30px;

padding:40px 30px;

text-align:center;

border:1px solid #edf2f8;

box-shadow:0 18px 45px rgba(15,78,166,.08);

transition:.35s;

overflow:hidden;

}

.process-card:hover{

transform:translateY(-10px);

box-shadow:0 35px 70px rgba(15,78,166,.14);

}

.process-number{

position:absolute;

top:20px;

right:25px;

font-size:65px;

font-weight:800;

color:#edf3fb;

line-height:1;

}

.process-icon{

width:90px;

height:90px;

margin:0 auto 28px;

display:flex;

align-items:center;

justify-content:center;

border-radius:24px;

font-size:42px;

background:linear-gradient(135deg,#1569d8,#0f4ea6);

color:#fff;

}

.process-card:nth-child(even) .process-icon{

background:linear-gradient(135deg,#ffc400,#ffd84f);

color:#111;

}

.process-card h3{

font-size:25px;

margin-bottom:18px;

color:#16263f;

}

.process-card p{

font-size:17px;

line-height:1.9;

color:#6b7687;

margin:0;

}

/* ==========================================
   FAQ
========================================== */

.faq-section{

padding:120px 0;

background:#f7f9fc;

}

.faq-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:30px;

}

.faq-card{

background:#fff;

padding:38px;

border-radius:28px;

border:1px solid #edf2f8;

box-shadow:0 18px 45px rgba(15,78,166,.08);

transition:.35s;

}

.faq-card:hover{

transform:translateY(-8px);

}

.faq-card h3{

font-size:25px;

color:#16263f;

margin-bottom:18px;

line-height:1.4;

}

.faq-card p{

font-size:17px;

line-height:1.9;

color:#6b7687;

margin:0;

}

/* ==========================================
   CTA
========================================== */

.keys-cta{

padding:120px 0;

background:linear-gradient(135deg,#07131f,#123860);

position:relative;

overflow:hidden;

}

.keys-cta::before{

content:"";

position:absolute;

left:-200px;

top:-200px;

width:600px;

height:600px;

border-radius:50%;

background:radial-gradient(circle,rgba(255,196,0,.12),transparent 70%);

}

.cta-box{

position:relative;

z-index:2;

max-width:900px;

margin:auto;

text-align:center;

}

.cta-box span{

display:inline-block;

padding:12px 24px;

border-radius:50px;

background:rgba(255,255,255,.12);

color:#fff;

font-weight:700;

margin-bottom:25px;

}

.cta-box h2{

font-size:56px;

line-height:1.15;

color:#fff;

margin-bottom:25px;

}

.cta-box p{

font-size:20px;

line-height:2;

color:rgba(255,255,255,.86);

margin-bottom:45px;

}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:1200px){

.hero-grid,
.mobile-grid{

grid-template-columns:1fr;

gap:70px;

}

.hero-right{

order:-1;

}

.process-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.services-grid,
.types-grid,
.advantages-grid,
.why-grid{

grid-template-columns:repeat(2,1fr);

}

.faq-grid{

grid-template-columns:1fr;

}

.keys-hero h1{

font-size:46px;

}

.section-heading h2{

font-size:40px;

}

.mobile-content h2{

font-size:42px;

}

.cta-box h2{

font-size:46px;

}

}

@media(max-width:768px){

.services-grid,
.types-grid,
.advantages-grid,
.why-grid,
.process-grid{

grid-template-columns:1fr;

}

.hero-features{

grid-template-columns:1fr;

}

.hero-buttons,
.cta-buttons{

flex-direction:column;

}

.call-btn,
.secondary-btn{

width:100%;

justify-content:center;

}

.keys-hero h1{

font-size:38px;

}

.section-heading h2{

font-size:34px;

}

.mobile-content h2{

font-size:34px;

}

.cta-box h2{

font-size:36px;

}

.mobile-floating{

display:none;

}

.hero-card{

padding:35px;

}

}

@media(max-width:576px){

.keys-hero{

padding:70px 0;

}

.services-section,
.why-keys,
.key-types,
.mobile-service,
.advantages-section,
.work-process,
.faq-section,
.keys-cta{

padding:80px 0;

}

.section-heading{

margin-bottom:50px;

}

.hero-text,
.section-heading p,
.mobile-content>p,
.cta-box p{

font-size:17px;

}

.hero-badge,
.section-tag{

font-size:13px;

}

.hero-card h3{

font-size:28px;

}

.service-card,
.type-card,
.why-card,
.adv-card,
.faq-card{

padding:32px 26px;

}

}