/* =========================================================
ROOT
========================================================= */

:root{

    --primary:#7ED321;
    --primary-dark:#5CBF00;

    --dark:#08111f;
    --dark-2:#101b2d;

    --text:#1f2937;
    --text-light:#6b7280;

    --bg:#f7f9fc;

    --white:#ffffff;

    --radius:22px;

}

/* =========================================================
RESET
========================================================= */

*{

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

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg);

    color:var(--text);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.container{

    width:min(1280px,92%);

    margin:auto;

}

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

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 30px;

    border-radius:14px;

    font-weight:600;

    transition:.3s ease;

}

.btn-primary{

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 20px 50px rgba(126,211,33,.35);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-outline{

    color:var(--text);

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

    background:#fff;

}

.btn-outline:hover{

    background:#f2f4f7;

}

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

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    backdrop-filter:blur(20px);

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

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

}

.header-container{

    width:min(1400px,94%);

    margin:auto;

    height:120px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img{

    height:110px;

    width:auto;

}

.nav ul{

    display:flex;

    gap:42px;

}

.nav a{

    color:var(--text);

    font-weight:500;

    transition:.3s;

}

.nav a:hover{

    color:var(--primary-dark);

}

.mobile-toggle{

    display:none;

    background:none;

    border:none;

    font-size:28px;

    cursor:pointer;

}

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

.hero{

    padding-top:120px;

    background:
        radial-gradient(
            circle at top left,
            rgba(126,211,33,.08),
            transparent 35%
        ),
        #f7f9fc;

}

.hero-container{

    position:relative;
    
    display:grid;

    grid-template-columns:50% 50%;

    min-height:500px;

    width:100%;

    align-items:center;

}

.hero-left{
    position:absolute;
    z-index:10;

    width:650px;

    left:70px;
    top:45%;

    transform:translateY(-50%);
}

.hero-tag{

    display:inline-flex;

    align-self:flex-start;

    padding:12px 20px;

    border-radius:999px;

    background:
        rgba(126,211,33,.12);

    color:#5ca600;

    font-size:14px;

    font-weight:700;

    margin-bottom:30px;

}

.hero-left h1{

    font-size:50px;

    line-height:1.05;

    max-width:650px;

    margin-bottom:20px;

}

.hero-left h1 span{

    color:var(--primary-dark);

}

.hero-left p{

    font-size:18px;

    max-width:600px;

    margin-bottom:30px;

    color:var(--text-light);

}

.hero-points{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;

}

.hero-points div{

    background:#fff;

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

    border-radius:999px;

    padding:12px 18px;

    font-size:14px;

    font-weight:600;

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

}

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

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

.hero-right{
    grid-column:1 / -1;
    height:580px;
}

.hero-right img{

    width:100%;

    height:100%;

    display:block;

    object-fit:cover;

    object-position:center center;

}

/* átmenet */


.hero-badge{

    position:absolute;

    right:30px;

    bottom:30px;

    width:260px;

    padding:28px;

    border-radius:24px;

    background:
        rgba(8,17,31,.92);

    backdrop-filter:blur(20px);

    color:#fff;

    z-index:20;

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

}

.badge-number{

    font-size:64px;

    font-weight:800;

    line-height:1;

    color:var(--primary);

}

.badge-title{

    font-size:22px;

    font-weight:700;

    margin-top:10px;

}

.badge-text{

    margin-top:12px;

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

}

/* =========================================================
PROBLEMS
========================================================= */

.problems{

    padding:70px 0 90px;

}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header span{
    display:inline-block;
    color:var(--primary-dark);
    font-weight:700;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-header h2{
    font-size:30px;
    line-height:1.1;
    max-width:900px;
    margin:auto;
}

.problems-grid{

    display:grid;

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

    gap:30px;

}

.problem-card{

    background:#fff;

    padding:30px;

    border-radius:28px;

    box-shadow:
        0 20px 60px rgba(15,23,42,.06);

    transition:.35s ease;

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

}

.problem-card:hover{

    transform:translateY(-8px);
	text-align:center;
    box-shadow:
        0 30px 80px rgba(15,23,42,.10);

}

.problem-icon{

    width:72px;
    height:72px;

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

    margin-bottom:18px;
	margin:0 auto 18px;
    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            rgba(126,211,33,.10),
            rgba(126,211,33,.03)
        );

    border:
        1px solid rgba(126,211,33,.15);

}

.problem-icon i{

    font-size:34px;

    color:var(--primary-dark);

}

.problem-card h3{

    font-size:24px;
	text-align:center;
    line-height:1.2;

    margin-bottom:10px;

}

.problem-card p{

    color:#6b7280;
	
    line-height:1.55;
	text-align:center;
	max-width:260px;
	margin:0 auto;
}

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

.services{

    padding:50px 0;

    background:#ffffff;

}

.services-grid{

    display:grid;

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

    gap:25px;

}

.service-card{

    background:
        linear-gradient(
            180deg,
            #07111E,
            #0B1728
        );

    color:#fff;

    text-align:center;

    border-radius:24px;

    padding:35px;

    min-height:500px;

    position:relative;

    overflow:hidden;

    transition:.35s;

    border:
        1px solid rgba(126,211,33,.12);

    display:flex;
    flex-direction:column;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:
        rgba(126,211,33,.4);

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

}

.service-card::before{

    content:"";

    position:absolute;

    top:-100px;
    right:-100px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(126,211,33,.18),
            transparent 70%
        );

}

.service-icon{

    width:72px;
    height:72px;

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

    margin-bottom:18px;
	margin:0 auto 18px;
    border-radius:20px;

    background:
        rgba(126,211,33,.10);

    border:
        1px solid rgba(126,211,33,.15);

}

.service-icon i{

    font-size:34px;
    font-weight:300;
    color:#7ED321;

}

.service-card h3{

	min-height:95px;
	display:flex;
	align-items:center;
	justify-content:center;
    font-size:28px;
    margin-bottom:15px;
    text-align:center;
	
}

.service-card p{

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

    margin-bottom:25px;
    text-align:center;
    max-width:280px;
    margin:0 auto 25px;
    line-height:1.45;

}

.service-card ul{

    margin-bottom:30px;
    
    text-align:left;

}

.service-card ul li{

    position:relative;

    padding-left:22px;

    margin-bottom:6px;

    color:
        rgba(255,255,255,.85);

}

.service-card ul li::before{

    content:"";

    position:absolute;

    left:0;
    top:10px;

    width:8px;
    height:8px;

    border-radius:50%;

    background:#7ED321;

}

.service-link{

    color:#7ED321;

    font-weight:700;

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

    align-items:center;

    justify-content:center;

    margin-top:auto;

}

.service-link:hover{

    color:#9EF53B;

}

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

@media(max-width:1200px){

    .services-grid{

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

    }

}

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

@media(max-width:768px){

    .services-grid{

        grid-template-columns:1fr;

    }

}

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

.ai-section{

    position:relative;

    min-height:620px;

    overflow:hidden;

    background:#050D18;

}

/* Háttérkép */

.ai-section::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(5,13,24,.85) 0%,
            rgba(5,13,24,.65) 35%,
            rgba(5,13,24,.25) 65%,
            rgba(5,13,24,.05) 100%
        );

    z-index:2;

}

/* Zöld glow */

.ai-section::after{

    content:"";

    position:absolute;

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

    width:700px;
    height:700px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(126,211,33,.18),
            transparent 70%
        );

    z-index:1;

}

.ai-wrapper{

    position:relative;

    z-index:3;

    min-height:620px;

    display:flex;

    align-items:center;

}

.ai-content{

    max-width:650px;

    padding:80px 0;

}

.ai-tag{

    display:inline-block;

    color:#7ED321;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:20px;

}

.ai-content h2{

    color:#fff;

    font-size:64px;

    line-height:1.05;

    margin-bottom:25px;

    max-width:550px;

}

.ai-content p{

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

    font-size:18px;

    line-height:1.5;

    margin-bottom:25px;

    max-width:600px;

}

.ai-features{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:40px;

}

.ai-feature{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    border-radius:999px;

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

    border:
        1px solid rgba(126,211,33,.18);

    color:#fff;

    font-size:14px;

    font-weight:500;

    backdrop-filter:blur(10px);

}

.ai-feature i{

    color:#7ED321;

}

.ai-image{

    position:absolute;

    inset:0;

    z-index:0;

}

.ai-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center 40%;

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:992px){

    .ai-section{

        min-height:auto;

    }

    .ai-wrapper{

        min-height:auto;

    }

    .ai-content{

        text-align:center;

        padding:80px 30px;

        margin:auto;

    }

    .ai-content h2{

        font-size:44px;

        max-width:none;

    }

    .ai-features{

        justify-content:center;

    }

}

/* =========================================================
WHY US
========================================================= */

.why-us{

    padding:40px 0;

    background:#f7f9fc;

}

.section-header{
    margin-bottom:40px;
}

.why-grid{

    display:grid;

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

    gap:25px;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

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

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

    transition:.3s;

}

.why-card:hover{

    transform:translateY(-6px);

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

}

.why-icon{

    width:72px;
    height:72px;

    margin:0 auto 20px;

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

    border-radius:20px;

    background:
        rgba(126,211,33,.10);

    border:
        1px solid rgba(126,211,33,.15);

}

.why-icon i{

    font-size:32px;

    color:#7ED321;

}

.why-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#1f2937;

}

.why-card p{

    color:#6b7280;

    line-height:1.6;

    font-size:16px;

}

/* =========================================================
REFERENCES
========================================================= */

.references{

    padding:50px 0;

    background:
        linear-gradient(
            135deg,
            #07111E,
            #0B1728
        );

}

.section-header.dark span{

    color:#7ED321;

}

.section-header.dark h2{

    color:#fff;

}

.references-grid{

    display:grid;

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

    gap:25px;

}

.reference-card{

    position:relative;

    min-height:340px;

    border-radius:24px;

    overflow:hidden;

    background:
        url('../assets/reptar.webp')
        center center/cover;

}

.reference-card:nth-child(2){

    background:
        url('../assets/okonet.webp')
        center center/cover;

}

.reference-card:nth-child(3){

    background:
        url('../assets/ergoline.webp')
        center center/cover;

}

.reference-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            180deg,
            rgba(7,17,30,.45),
            rgba(7,17,30,.92)
        );

}

.reference-content{

    position:relative;

    z-index:2;

    padding:35px;

    color:#fff;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

}

.reference-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.reference-content p{

    color:
        rgba(255,255,255,.85);

    margin-bottom:20px;

}

.reference-result{

    border-left:
        4px solid #7ED321;

    padding-left:15px;

    color:#7ED321;

    font-weight:600;

}

@media(max-width:1200px){

    .references-grid{

        grid-template-columns:1fr;

    }

}

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

.cta-section{

    padding:30px 0;

    background:#ffffff;

}

.cta-wrapper{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

}

.cta-content span{

    color:#7ED321;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.cta-content h2{

    font-size:40px;

    line-height:1.1;

    margin:15px 0 25px;

}

.cta-content p{

    font-size:20px;

    color:#6b7280;

}

.cta-contact{

    background:#f7f9fc;

    border-radius:24px;

    padding:35px;

}

.cta-item{

    margin-bottom:15px;

}

.cta-item strong{

    display:block;

    margin-bottom:8px;

}

.cta-item a{

    color:#07111E;

    font-size:20px;

    font-weight:600;

}

@media(max-width:992px){

    .cta-wrapper{

        grid-template-columns:1fr;

    }

}

/* =========================================================
FOOTER
========================================================= */

.footer{

    background:
        linear-gradient(
            135deg,
            #07111E,
            #0B1728
        );

    color:#fff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap:40px;

}

.footer-about img{

    height:70px;

    margin-bottom:20px;

}

.footer-about p{

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

}

.footer h4{

    margin-bottom:20px;

    color:#7ED321;

}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.footer a{

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

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    padding:25px 0;

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

    font-size:14px;

}

.footer-bottom a{

    color:#7ED321;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#ffffff;

}

@media(max-width:992px){

    .footer-grid{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}
@media(max-width:768px){

    .footer-grid{

        grid-template-columns:1fr;

    }

}

/* =========================================================
KONZULTÁCIÓ OLDAL
========================================================= */

.consultation-hero{

    position:relative;

    overflow:hidden;

    padding:180px 0 120px;

    background:
        linear-gradient(
            rgba(255,255,255,.15),
            rgba(255,255,255,.15)
        ),
        url("../assets/hero-consultation.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    text-align:center;

}

.consultation-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.88) 0%,
            rgba(255,255,255,.78) 45%,
            rgba(255,255,255,.40) 100%
        );

    z-index:1;

}

.consultation-hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

    padding:50px;

    border-radius:32px;

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

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

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

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

}

.consultation-hero h1{

    font-size:64px;

    line-height:1.05;

    margin:25px 0;

    color:#1e293b;

}

.consultation-hero p{

    font-size:20px;

    color:var(--text-light);

    max-width:750px;

    margin:0 auto 40px;

}

.consultation-hero .hero-buttons{

    justify-content:center;

}

.consultation-hero .hero-tag{

    margin-bottom:15px;
}

.consult-benefits{

    position:relative;

    padding:100px 0;

    background:
        linear-gradient(
            180deg,
            #f8fafc,
            #eef4f8
        );
}

.consult-benefits::before{

    content:'';

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            rgba(126,211,33,.06) 1px,
            transparent 1px
        );

    background-size:30px 30px;

    opacity:.4;

    pointer-events:none;
}

.consult-process{

    padding:100px 0;

    background:
        linear-gradient(
            180deg,
            #eef7f0 0%,
            #f8fafc 100%
        );

}

.process-grid{

    display:grid;

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

    gap:30px;

}

.process-card{

    background:#fff;

    border-radius:24px;

    padding:40px;

    text-align:center;

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

    box-shadow:
        0 15px 40px rgba(0,0,0,.05);

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-6px);

}

.process-number{

    width:70px;
    height:70px;

    margin:0 auto 20px;

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

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    color:#fff;

    font-size:30px;

    font-weight:800;

}

.process-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.process-card p{

    color:var(--text-light);

}


.consult-form-section{

    padding:100px 0;

    background:#fff;

}

.consult-form-card{

    background:#fff;

    border-radius:30px;

    padding:50px;

    max-width:1000px;

    margin:auto;

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

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

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

    margin-bottom:25px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    margin-bottom:8px;

    font-weight:600;

}

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

    width:100%;

    padding:16px 18px;

    border-radius:14px;

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

    font-size:16px;

    font-family:inherit;

    transition:.3s;

}

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

    outline:none;

    border-color:var(--primary);

    box-shadow:
        0 0 0 4px rgba(126,211,33,.15);

}

.form-group textarea{

    resize:vertical;

}

.form-check{

    display:flex;

    align-items:center;

    gap:12px;

    margin:25px 0;

}

.form-check input{

    width:18px;

    height:18px;

}

.consult-form-card .btn{

    min-width:260px;

}

.cta-contact form{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.cta-contact form input{

    width:100%;

    padding:16px;

    border-radius:12px;

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

    font-size:16px;

}

.cta-contact form .btn{

    width:100%;

}

.consult-services-grid{

    display:grid;

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

    gap:25px;

}

.consult-service-card{

    background:
        linear-gradient(
            180deg,
            #07111E,
            #0B1728
        );

    color:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    min-height:320px;

    border:1px solid rgba(126,211,33,.12);

}

/* =========================================================
MOBIL
========================================================= */

@media(max-width:992px){

    .process-grid{

        grid-template-columns:1fr;

    }

    .form-grid{

        grid-template-columns:1fr;

    }

    .consultation-hero h1{

        font-size:42px;

    }

    .consultation-hero-content{

        padding:35px;

    }

}

@media(max-width:768px){

    .consultation-hero{

        padding:150px 0 70px;

    }

    .consultation-hero-content{

        padding:25px;

    }

    .consultation-hero h1{

        font-size:34px;

    }

    .consultation-hero p{

        font-size:18px;

    }

    .consult-form-card{

        padding:30px;

    }

}

/* =========================================================
SERVICE PAGE
========================================================= */

.servicepage-hero{

    padding:190px 0 140px;

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            rgba(255,255,255,.82),
            rgba(255,255,255,.82)
        ),
        url("../assets/service-hero.webp");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    text-align:center;

}

.servicepage-hero-content{

    max-width:950px;

    margin:auto;

}

.servicepage-tag{

    display:inline-block;

    padding:12px 24px;

    border-radius:999px;

    background:rgba(126,211,33,.12);

    color:var(--primary-dark);

    font-size:14px;

    font-weight:700;

    margin-bottom:25px;

}

.servicepage-hero h1{

    font-size:68px;

    line-height:1.05;

    max-width:1000px;

    margin:0 auto 30px;

}

.servicepage-hero p{

    max-width:800px;

    margin:0 auto;

    font-size:22px;

    color:var(--text-light);

}

.servicepage-hero-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:40px;

    flex-wrap:wrap;

}

/* =========================================================
INTRO
========================================================= */

.servicepage-intro{

    padding:50px 0;

    background:#ffffff;

}

.servicepage-intro-text{

    max-width:950px;

    margin:auto;

}

.servicepage-intro-text p{

    font-size:20px;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:25px;

}

/* =========================================================
CHALLENGES
========================================================= */

.servicepage-challenges{

    padding:70px 0;

    background:
        linear-gradient(
            180deg,
            #f8fafc,
            #eef4f8
        );

}

.servicepage-challenges-grid{

    display:grid;

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

    gap:30px;

}

.servicepage-challenge-card{

    background:#fff;

    border-radius:28px;

    padding:40px;

    text-align:center;

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

    box-shadow:
        0 20px 60px rgba(15,23,42,.05);

    transition:.3s;

}

.servicepage-challenge-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 30px 80px rgba(15,23,42,.10);

}

.servicepage-challenge-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:25px;

}

.servicepage-challenge-card h3{

    font-size:24px;

    margin-bottom:15px;

    line-height:1.25;

}

.servicepage-challenge-card p{

    color:var(--text-light);

}

/* =========================================================
SOLUTIONS
========================================================= */

.servicepage-solutions{

    padding:80px 0;

    background:#ffffff;

}

.servicepage-solutions-grid{

    display:grid;

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

    gap:25px;

}

.servicepage-solution{

    background:
        linear-gradient(
            180deg,
            #081726,
            #102235
        );

    color:#fff;

    border-radius:24px;

    padding:30px;

    border:1px solid rgba(126,211,33,.12);

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);

    transition:.3s;

}

.servicepage-solution:hover{

    transform:translateY(-5px);

    box-shadow:
        0 25px 60px rgba(15,23,42,.12);

}

.servicepage-solution-icon{

    width:65px;
    height:65px;

    border-radius:18px;

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

    background:rgba(126,211,33,.12);

    margin-bottom:18px;

}

.servicepage-solution-icon i{

    font-size:28px;

    color:#7ED321;

}

.servicepage-solution h3{

    font-size:24px;

    line-height:1.3;

    margin-bottom:12px;

}

.servicepage-solution p{

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

    font-size:15px;

    line-height:1.7;

    margin-bottom:18px;

}

.servicepage-solution ul{

    columns:2;

    column-gap:30px;

    margin:0;

    padding:0;

}

.servicepage-solution li{

    position:relative;

    list-style:none;

    padding-left:18px;

    margin-bottom:10px;

    font-size:15px;

    line-height:1.5;

    color:rgba(255,255,255,.88);

    break-inside:avoid;

}

.servicepage-solution li::before{

    content:"";

    position:absolute;

    left:0;
    top:9px;

    width:6px;
    height:6px;

    border-radius:50%;

    background:#7ED321;

}

/* =========================================================
MOBIL
========================================================= */

@media(max-width:768px){

    .servicepage-solutions-grid{

        grid-template-columns:1fr;

    }

    .servicepage-solution{

        padding:25px;

    }

    .servicepage-solution ul{

        columns:1;

    }

}
/* =========================================================
FUTURE READY
========================================================= */

.servicepage-future{

    padding:140px 0;

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #07111E,
            #0B1728
        );

    color:#fff;

    text-align:center;

}

.servicepage-future-content{

    max-width:900px;

    margin:auto;

}

.servicepage-future h2{

    font-size:56px;

    margin-bottom:25px;

}

.servicepage-future p{

    font-size:20px;

    color:rgba(255,255,255,.78);

    line-height:1.9;

}

/* =========================================================
TECHNOLOGY
========================================================= */

.servicepage-tech{

    padding:100px 0;

    background:#ffffff;

}

.servicepage-tech-grid{

    display:grid;

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

    gap:20px;

}

.servicepage-tech-item{

    background:#f8fafc;

    border-radius:18px;

    padding:25px;

    text-align:center;

    font-weight:700;

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

}

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

.servicepage-cta{

    padding:120px 0;

    background:
        linear-gradient(
            135deg,
            #08111f,
            #12223a
        );

    color:#fff;

    text-align:center;

}

.servicepage-cta h2{

    font-size:52px;

    max-width:900px;

    margin:0 auto 25px;

}

.servicepage-cta p{

    max-width:750px;

    margin:0 auto 40px;

    font-size:20px;

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

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1200px){

    .servicepage-challenges-grid{

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

    }

    .servicepage-tech-grid{

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

    }

}

@media(max-width:992px){

    .servicepage-solutions-grid{

        grid-template-columns:1fr;

    }

    .servicepage-hero h1{

        font-size:52px;

    }

}

@media(max-width:768px){

    .servicepage-hero{

        padding:170px 0 90px;

    }

    .servicepage-hero h1{

        font-size:38px;

    }

    .servicepage-hero p{

        font-size:18px;

    }

    .servicepage-challenges-grid{

        grid-template-columns:1fr;

    }

    .servicepage-tech-grid{

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

    }

    .servicepage-future h2{

        font-size:36px;

    }

    .servicepage-cta h2{

        font-size:36px;

    }

}

.hp-field{
    position:absolute;
    left:-9999px;
    opacity:0;
    pointer-events:none;
}

.privacy-table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
}

.privacy-table th,
.privacy-table td{
    padding:14px 16px;
    border:1px solid rgba(0,0,0,.08);
    text-align:left;
}

.privacy-table th{
    background:#f5f8fc;
    font-weight:600;
}

.privacy-table tr:nth-child(even){
    background:#fafbfd;
}