/* =============================================
   FONTS â€“ Google Fonts
   Outfit: nadpisy | DM Sans: body text
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');


/* =============================================
   CSS VARIABLES
   ============================================= */

:root {
    --green:        #4361EE;
    --green-dark:   #2D4ACC;
    --green-light:  #EEF1FD;
    --green-mid:    #BEC9F9;
    --ink:          #1A1A2E;
    --ink-mid:      #3D3D55;
    --ink-light:    #7A7A96;
    --off-white:    #F8FAF9;
    --white:        #FFFFFF;
    --border:       #F6F7FE;
    --shadow-sm:    0 1px 4px rgba(26,26,46,0.06);
    --shadow-md:    0 4px 20px rgba(26,26,46,0.09);
    --shadow-lg:    0 12px 40px rgba(26,26,46,0.12);
    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    18px;
    --transition:   0.22s ease;
}


/*  */

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

html { scroll-behavior: smooth; scroll-padding-top: 94px; }

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}


.thin {
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}



@media (max-width: 1199.98px) {
    .container {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
}

p { color: var(--ink-mid); }

img { display: block; max-width: 100%; }

a { text-decoration: none; }

ul { list-style: none; padding: 0; margin: 0; }

.ng-shadow     { box-shadow: var(--shadow-sm); }
.ng-shadow-hover:hover { box-shadow: var(--shadow-md); }


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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
    border-color var(--transition), transform var(--transition),
    box-shadow var(--transition);
    white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* blue filled */
.btn--green {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.btn--green:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(67,97,238,0.35);
}

/* ghost white (for dark bg) */
.btn--ghost-white {
    background: transparent;
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}
.btn--ghost-white:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

/* outline dark */
.btn--outline-dark {
    background: transparent;
    border-color: var(--green);
    color: var(--green);
}
.btn--outline-dark:hover {
    border-color: var(--green);
    color: var(--green);
}

/* svg in btn */
.btn svg { flex-shrink: 0; }


/* =============================================
   MAIN HEADER  â† nedotknutĂ©
   ============================================= */

.main-header {
    position: relative;
    display: block;
    background: #fff;
    width: 100% !important;
    max-width: 100% !important;
}

.main-header .logo img { width: 240px; }

body:not(.home) .main-header { background: #fff !important; }

.main-header .main-menu { width: 100%; }

.main-header .phone-box {
    gap: 10px;
    align-items: center;
    margin-left: 20px;
    padding: 10px;
    border-radius: 4px;
    background: var(--second-color);
}

.main-header .phone-box .menu-list { justify-content: flex-start; width: 100%; }

.main-header .phone-box .icon-box {
    width: 28px; height: 28px; padding: 3px;
    background: rgba(255,255,255,0.1);
    display: inline-flex; align-items: center; justify-content: center;
}

.main-header .phone-box .ico { flex: 1; }

.main-header .phone-box a {
    color: #fff; font-size: 14px; font-weight: 700; line-height: 1; text-decoration: none;
}

.main-header .phone-box svg { color: #fff; }

.main-header .phone-box .ico .small {
    display: block; font-size: 10px; line-height: 1;
    margin-bottom: -2px; font-weight: 600; color: #777;
}

body.home:not(.not-top) .main-header .phone-box .ico .small { color: rgba(255,255,255,0.5); }
body.home:not(.not-top) .main-header .phone-box a { color: #fff; }

body:not(.not-top) .main-header .top-bar .container {
    border: none; padding-bottom: 7px; padding-top: 12px;
    border-bottom: 1px solid #f1f1f1; border-radius: 0;
}

.main-header.is-sticky { box-shadow: 0 0 5px 5px rgba(0,0,0,0.05); }
.main-header.is-sticky .logo img { width: 100px; }
.main-header:not(.is-sticky) .main-bar { padding-top: 10px; padding-bottom: 10px; }

.home.not-top .main-header .top-bar { display: none; }

body.home .main-header .top-bar .container {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 !important; padding-bottom: 8px;
}

body.home:not(.not-top) .top-bar a { color: rgba(255,255,255,0.8); }

body .main-header .top-bar {
    position: relative; text-align: center; color: #fff; font-size: 13px;
}

body.home .main-header .top-bar { padding-top: 14px; padding-bottom: 4px; }

.main-header .top-bar ul {
    list-style: none; padding-left: 0; margin-bottom: 0;
    display: flex; flex-wrap: wrap; gap: 10px;
}

.main-header .top-bar ul a {
    font-size: 12px; font-weight: 400; text-decoration: none; color: #555;
}

.main-header .top-bar { padding-bottom: 4px; }

.main-header .top-bar::after {
    content: ''; display: block; z-index: -1;
    height: 40px; width: 100%; position: absolute; bottom: -35px; left: 0;
}

body:not(.not-top) .main-header .logo .second { display: none; }
body.not-top .main-header .logo .first { display: none; }
.not-top .main-header { box-shadow: 5px 5px 15px rgba(0,0,0,0.05); }

.main-header .menu-list .t-btn {
    font-size: 14px; text-transform: uppercase;
    margin-left: 15px; margin-right: 15px;
}

.main-header .menu-list .icon { width: 25px; height: 25px; }

.main-header .main-menu .menu-list {
    display: flex; padding-left: 0; align-items: center;
    list-style: none; margin-bottom: 0;
}

.main-header .emergency .menu-link { color: var(--third-color) !important; font-weight: 700 !important; }

.main-header .main-menu .menu-list .menu-link,
.main-header .main-menu .menu-list .dropdown-toggle.menu-link {
    padding: 8px 15px; text-decoration: none; display: inline-block;
    background: transparent; border-radius: 0; border: none;
    font-size: 14px; font-weight: 400; letter-spacing: 0.6px;
    color: #1a1a1a; position: relative;
}

.main-header .main-menu .menu-list .menu-link:hover,
.main-header .main-menu .menu-list .menu-link:focus { color: var(--main-color); }

.main-header .js-menu-open {
    display: inline-flex; width: 45px; height: 45px;
    align-items: center; justify-content: center;
    font-size: 25px; text-decoration: none; color: #000;
}

.main-header.is-sticky .js-menu-open { color: var(--main-color); }
.main-header .js-menu-open:hover { color: var(--main-color); }

.main-header .dropdown-menu { border-color: #f1f1f1; }
.main-header .dropdown-menu .dropdown-item { font-size: 14px; }

.main-header .dropdown-menu .dropdown-item:hover,
.main-header .dropdown-menu .dropdown-item:focus {
    font-size: 14px; color: var(--main-text-color); background: var(--main-color);
}

.main-header .js-menu .contact-info { flex-wrap: wrap; gap: 15px; display: flex; }

.main-header .js-menu .contact-info a {
    display: flex; gap: 5px; align-items: center;
    font-size: 15px; font-weight: 400; color: #444; text-decoration: none;
}

.main-header .js-menu .contact-info i { color: var(--main-color); }
.main-header .mobile-head .logo img { height: auto !important; }
.main-header.is-sticky .main-menu .menu-list .menu-link { font-size: 12px; }
.main-header.is-sticky .logo img { width: 130px; }

.home .main-header.fixed-top:not(.is-sticky) { background: transparent; position: fixed; }

body.not-top .logo .first { display: block !important; }
body.not-top .logo .second { display: none !important; }
body.home.not-top .main-header { background: #fff !important; }

@media (max-width: 1400px) {
    .main-header .main-menu .menu-list .menu-link,
    .main-header .main-menu .menu-list .dropdown-toggle.menu-link {
        padding: 8px 10px; font-size: 13px;
    }
    .main-header .phone-box { gap: 5px; margin-left: 10px; padding: 10px 5px; }
}

@media (max-width: 1199.98px) {
    body.menu-opened .main-header .js-menu {
        display: block !important; z-index: 99999; background: #fff;
        width: 100%; height: 100lvh; overflow-y: auto;
        position: fixed; top: 0; left: 0;
    }
    body.menu-opened .mobile-head { padding: 8px 0; position: relative; }
    body.menu-opened .mobile-head .js-menu-close {
        font-size: 28px; display: inline-flex; width: 45px; height: 45px;
        justify-content: center; align-items: center; text-decoration: none; color: #ccc;
    }
    .main-header .container { border-radius: 0 !important; }
    body.menu-opened .js-menu .menu-list { flex-wrap: wrap; flex-direction: column; }
    body.menu-opened .main-header .js-menu .menu-item { text-align: center; width: 100%; }
    body.menu-opened .main-header .js-menu .menu-item .t-btn { margin-bottom: 15px; margin-top: 15px; }
    body.menu-opened .main-header .js-menu .menu-item .menu-link {
        width: 100%; border-bottom: 1px solid #f1f1f1; font-size: 16px; padding: 17px 0;
    }
    body.menu-opened .js-menu .dropdown-menu {
        position: static !important; transform: unset !important;
        background: var(--main-bg-color); border: none;
    }
    body.menu-opened { height: 100vh !important; overflow: hidden; }
}

@media (max-width: 767.98px) {
    .main-header .logo img { max-width: 180px; }
    .main-header .top-bar { display: none; }
    .main-header.is-sticky .logo img { width: 100px; transition: all 0.2s ease-in; }
    .main-header .main-bar .container { padding-top: 0; padding-bottom: 0; }
    .main-header .main-bar { padding-top: 5px; padding-bottom: 5px; }
    .main-header .top-bar { font-size: 10px; }
}

.main-header .container { border-radius: 8px; }
body .main-header .menu-link:hover { color: var(--main-color) !important; }
body.home:not(.not-top) .main-header .second { display: block; }
body.home:not(.not-top) .main-header .first  { display: none; }


/* =============================================
   PAGE BANNER / BREADCRUMB
   ============================================= */

.page-banner {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.page-banner nav.path ul {
    display: flex; flex-wrap: wrap; padding-left: 0;
    list-style: none; font-size: 11px; margin-bottom: 0;
    column-gap: 10px; row-gap: 5px; align-items: center;
}

.page-banner nav.path ul li { display: inline-flex; align-items: center; }

.page-banner nav.path ul li a {
    text-decoration: none; position: relative; display: inline-flex;
    align-items: center; column-gap: 5px; line-height: 1;
    color: var(--ink-mid); font-weight: 400; padding-right: 12px;
}

.page-banner nav.path ul li a:hover { color: var(--green); text-decoration: underline; }
.page-banner nav.path ul li .final-path { font-weight: 600; color: var(--ink); }

.page-banner nav.path ul li a:after {
    content: ''; position: absolute; right: 0; top: calc(50% - 3px);
    transform: rotate(45deg); width: 6px; height: 6px;
    border-top: 1px solid #aaa; border-right: 1px solid #aaa;
}


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

.main-footer {
    background: var(--ink);
    color: #9999b3;
    font-size: 14px;
}

.main-footer .main-bar { padding: 50px 0; }

.main-footer .copyright {
    text-align: center;
    color: #9999b3;
    font-size: 12px;
}

.main-footer .copyright .container {
    padding-top: 28px; padding-bottom: 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.main-footer a { color: #9999b3; text-decoration: none; }
.main-footer a:hover { color: #fff; }
.main-footer ul li { margin-bottom: 6px; }
.main-footer ul { padding-left: 0; list-style: none; }

.main-footer .footheading {
    font-family: 'Outfit', sans-serif;
    font-size: 16px; font-weight: 700; color: #fff;
    margin-bottom: 22px; padding-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,0.08);
}

.main-footer .soc-box { display: flex; gap: 8px; margin-top: 16px; }

.main-footer .soc-box a {
    width: 34px; height: 34px; padding: 5px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.main-footer .soc-box a:hover { background: var(--green); }
.main-footer .soc-box a svg { width: 100%; height: 100%; object-fit: contain; color: #fff; }

.main-footer .top-bar {
    position: relative; padding-top: 60px;
}

.main-footer .top-bar .container {
    border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 60px;
}

.main-footer .top-bar .heading-box .heading {
    font-family: 'Outfit', sans-serif;
    font-size: 42px; color: #fff;
}

.main-footer .top-bar .heading-box .heading-text {
    color: #9999b3; font-size: 18px; font-weight: 400; max-width: 600px;
}

@media (max-width: 767.98px) {
    .main-footer .top-bar .heading-box .heading { font-size: 26px; }
    .main-footer .top-bar .heading-box .heading-text { font-size: 15px; }
}


/* =============================================
   ABOVE FOOT
   ============================================= */

.above-foot {
    padding: 100px 0;
    background-repeat: no-repeat; background-size: cover;
    background-position: center; background-attachment: fixed;
    position: relative; z-index: 1;
}

.above-foot::after {
    content: ''; display: block; position: absolute;
    inset: 0; z-index: -1;
    background: var(--ink); opacity: 0.88;
}

.above-foot .heading {
    font-size: 38px; color: #fff; margin-bottom: 18px;
}

.above-foot .heading-text {
    color: rgba(255,255,255,0.82); max-width: 820px; font-size: 17px; margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    .above-foot { background-attachment: unset; padding: 60px 0; }
    .above-foot .heading { font-size: 24px; }
    .above-foot .heading-text { font-size: 15px; }
}


/* =============================================
   GLOBAL HELPERS
   ============================================= */

.social-links { display: flex; gap: 8px; flex-wrap: wrap; }

.social-links a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: var(--radius-sm);
    background: var(--green); color: #fff;
    transition: transform var(--transition), background var(--transition);
}

.social-links a:hover { transform: scale(1.08); }
.social-links a.facebook  { background: #1877f2; }
.social-links a.youtube   { background: #ff0000; }
.social-links a.instagram { background: #c32aa3; }
.social-links a.linkedin  { background: #0a66c2; }
.social-links a.tiktok    { background: #010101; }
.social-links a.x-twitter { background: #000; }

#myBtn {
    display: none; position: fixed; bottom: 20px; right: 15px; z-index: 99;
    width: 42px; height: 42px; border-radius: var(--radius-sm);
    background: var(--green); color: #fff;
    display: none; align-items: center; justify-content: center;
    font-size: 20px; cursor: pointer; box-shadow: var(--shadow-md);
}

#myBtn:hover { background: var(--green-dark); }


/* =============================================
   CLEAN PAGE
   ============================================= */

.clean-page { background: #fff; }
.clean-page h2 { font-size: 26px; margin-top: 1.5em; }
.clean-page h3 { font-size: 22px; margin-top: 1.2em; }
.clean-page h4 { font-size: 19px; margin-top: 1em; }
.clean-page h5 { font-size: 17px; margin-top: 0.8em; }

.clean-page .content {
    width: 1060px; max-width: 100%;
    padding: 40px; margin: auto;
    border-radius: var(--radius-lg);
    background: var(--off-white);
}

.clean-page a { color: var(--green); }

.clean-page .gallery-box { margin-top: 24px; }
.clean-page .gallery-box .gallery-imgs { display: flex; flex-wrap: wrap; gap: 10px; }
.clean-page .gallery-box .gallery-imgs a { width: calc(100% / 6 - 10px); display: block; }
.clean-page .gallery-box .gallery-imgs a img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); }

@media (max-width: 767.98px) {
    .clean-page .content { padding: 16px; }
    .clean-page h2 { font-size: 20px; }
    .clean-page h3 { font-size: 18px; }
    .clean-page { font-size: 14px; }
}


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

.contact-sec { background: var(--ink); padding: 70px 0; }
.contact-sec .info-box { color: rgba(255,255,255,0.65); }
.contact-sec .heading { color: #fff; }

.contact-sec .form-box {
    background: #fff; padding: 36px; height: 100%;
    border-radius: var(--radius-md);
}

.contact-sec .form-box label { font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--ink); }
.contact-sec .form-control { border-radius: var(--radius-sm); font-size: 15px; border: 1.5px solid var(--border); }
.contact-sec .form-control:not(textarea) { height: 44px; }
.contact-sec .form-control::placeholder { font-size: 14px; color: #aaa; }

.contact-sec .form-control:focus { box-shadow: 0 0 0 3px rgba(67,97,238,0.15); border-color: var(--green); outline: none; }

.contact-sec .contact-item { display: flex; gap: 14px; margin-bottom: 24px; align-items: flex-start; }

.contact-sec .contact-item .icon-box {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    display: inline-flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0;
}

.contact-sec .contact-item .info-box { flex: 1; }
.contact-sec .contact-item .info-box .title { display: block; color: #fff; font-weight: 600; margin-bottom: 4px; font-size: 14px; }
.contact-sec .contact-item .value { color: rgba(255,255,255,0.65); font-size: 14px; }

.contact-sec .opening-hours { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
.contact-sec .opening-hours .main-title { color: #fff; font-weight: 700; font-size: 16px; display: block; margin-bottom: 14px; }
.contact-sec .opening-hours .title { display: block; color: rgba(255,255,255,0.6); font-size: 13px; }
.contact-sec .opening-hours .value { font-weight: 600; color: #fff; margin-bottom: 6px; font-size: 14px; }

.contact-page .contact-bar { background: var(--off-white); border-radius: var(--radius-md); }
.contact-page .contact-bar .content { padding: 28px; }
.contact-page .contact-form-box .form-control { border: none; background: var(--off-white); padding: 14px; border-radius: var(--radius-sm); }
.contact-page .contact-form-box .form-control:focus { box-shadow: none; background: #f0f0f5; outline: none; }
.contact-page .contact .form-wrap { max-width: 640px; }
.contact-page .contact .form-wrap .form-group { margin-bottom: 22px; }
.contact-page .contact .form-wrap .form-control:not(textarea) { height: 50px; font-size: 15px; }


/* =============================================
   NOT FOUND PAGE
   ============================================= */

.not-found-page { background: var(--off-white); }

.not-found-page h1.head {
    font-size: 160px; font-weight: 800; text-align: center;
    letter-spacing: -15px; color: var(--green); margin-left: -15px;
}

.not-found-page p { text-align: center; position: relative; top: 35px; font-weight: 500; }

@media (max-width: 767.98px) {
    .not-found-page h1.head { font-size: 90px; letter-spacing: -8px; margin-left: -8px; }
    .not-found-page p { top: 18px; }
}


/* =============================================
   PORTFOLIO ITEM
   ============================================= */

.portfolio-item { position: relative; overflow: hidden; }

.portfolio-item .img-box { height: 280px; position: relative; overflow: hidden; border-radius: var(--radius-md); }

.portfolio-item img {
    object-fit: cover; height: 100%; width: 100%;
    transform: scale(1); transition: transform 0.35s ease;
}

.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-item .img-box::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(26,26,46,0.28); transition: background 0.3s ease;
    border-radius: var(--radius-md);
}

.portfolio-item:hover .img-box::after { background: rgba(26,26,46,0); }

.portfolio-item .title {
    color: var(--ink); font-size: 15px; font-weight: 600;
    display: block; padding-top: 12px; line-height: 1.45;
}

.portfolio-item .badg {
    z-index: 3; position: absolute; top: 16px; left: 16px;
    font-weight: 700; font-size: 11px; padding: 4px 10px;
    background: var(--green); color: #fff;
    border-radius: var(--radius-sm); letter-spacing: 0.3px; text-transform: uppercase;
}

.portfolio-item a.icon {
    display: inline-flex; align-items: center; justify-content: center;
    position: absolute; bottom: 12px; right: 12px; z-index: 10;
    color: #fff; border-radius: 50%; width: 40px; height: 40px;
    background: var(--green); opacity: 0; transition: opacity var(--transition);
}

.portfolio-item:hover a.icon { opacity: 1; }
.portfolio-item a { text-decoration: none; }

@media (max-width: 767.98px) {
    .portfolio-item .img-box { height: 220px; }
    .portfolio-item .title { font-size: 14px; }
}


/* =============================================
   FAQ PAGE (standalone /faq)
   ============================================= */

.faq-page { background: #fff; }
.faq-page img { border-radius: var(--radius-md); }


/* =============================================
   HOME PAGE
   ============================================= */


/* --- Shared section helpers --- */

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.eyebrow--light {
    color: rgba(255,255,255,0.6);
}

.sec__head { margin-bottom: 0; }
.sec__head--center { text-align: center; }
.sec__head--center .sec__sub { margin-left: auto; margin-right: auto; }

.sec__title {
    font-family: 'Outfit', sans-serif;
    font-size: 49px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 14px;
}

.sec__sub {
    font-size: 16px;
    color: var(--ink-light);
    max-width: 520px;
    line-height: 1.75;
}

.sec__foot { text-align: center; }

/* section wrappers */
.sec          { padding: 90px 0; background: var(--white); }
.sec--mint    { padding: 90px 0; background: var(--green-light); }
.sec--white   { padding: 90px 0; background: var(--white); }

@media (max-width: 767.98px) {
    .sec, .sec--mint, .sec--white { padding: 60px 0; }
    .sec__title { font-size: 28px; }
    .sec__sub   { font-size: 14px; }
}




.sec.sec.services  .sec__title,
.sec.process-section  .sec__title,
.sec.testimonial-section  .sec__title,
.sec.faq-section  .sec__title,
.sec.about-section  .sec__title,
.sec.contact-section  .sec__title {
    color: var(--green);
}

.t-color {
    color: var(--green) !important;
}


/* --- HERO --- */

.hz {
    position: relative;
    background: #f0f4ff;
    overflow: hidden;
    padding: 100px 0 80px;
    min-height: 88vh;
    display: flex;
    align-items: center;
}

/* jemnĂ˝ gradient cez celĂş sekciu */
.hz::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
            135deg,
            #eef1fd 0%,
            #f5f7fe 40%,
            #ffffff 100%
    );
    z-index: 0;
}

.hz .container {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 50px;
}

.hz__inner { max-width: 680px; }

/* badge */
.hz__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--green-mid);
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(67,97,238,0.10);
}

.hz__badge-dot {
    width: 7px; height: 7px;
    background: var(--green);
    border-radius: 50%; flex-shrink: 0;
    animation: dot-pulse 2.2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* title */
.hz__title {
    font-family: 'Outfit', sans-serif;
    font-size: 58px;
    font-weight: 800;
    color: #1A1A2E;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.hz__title-em {
    color: var(--green);
    font-style: normal;
}

/* perex */
.hz__perex {
    font-size: 17px;
    font-weight: 400;
    color: #5a5a6e;
    line-height: 1.75;
    margin-bottom: 34px;

}

/* buttons */
.hz__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

/* kpi */
.hz__kpi {
    display: flex;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--green-mid);
}

.hz__kpi-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-right: 28px;
}

.hz__kpi-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1A1A2E;
    line-height: 1;
}

.hz__kpi-item span {
    font-size: 12px;
    color: var(--ink-light);
    font-weight: 400;
}

.hz__kpi-sep {
    width: 1px; height: 36px;
    background: var(--green-mid);
    margin-right: 28px; flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .hz { min-height: auto; padding: 90px 0 60px; }
    .hz__title { font-size: 44px; }
    .hz__perex { font-size: 15px; }
    .hz__kpi-item strong { font-size: 18px; }
}

@media (max-width: 575.98px) {
    .hz__title { font-size: 36px; }
    .hz__btns { flex-direction: column; }
    .hz__btns .btn { width: 100%; }
    .hz__perex { font-size: 15px; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .hz__title { font-size: 44px; }
}


/* --- HERO SPLIT --- */

.hz__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991.98px) {
    .hz__split { grid-template-columns: 1fr; }
}

.hz__copy { max-width: 1050px; }

.hz__visual { position: relative; align-items: center; justify-content: center; }

.hz__img-wrap { position: relative; width: 100%; }

.hz__img {
    width: 100%; height: auto; max-width: 100%;
    border-radius: 20px; object-fit: cover; display: block;
    box-shadow: 0 20px 60px rgba(26,26,46,0.12);
}

.hz__img-wrap::before {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid var(--green-mid);
    border-radius: 22px;
    z-index: -1;
}

/* bubbles */
.hz__bubble { position: absolute; border-radius: 50%; z-index: 1; pointer-events: none; }

.hz__bubble--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(67,97,238,0.18) 0%, rgba(67,97,238,0) 70%);
    top: -120px; right: -80px;
}

.hz__bubble--2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(67,97,238,0.22) 0%, rgba(67,97,238,0) 70%);
    bottom: -60px; left: -60px;
}

.hz__bubble--3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(190,201,249,0.30) 0%, rgba(190,201,249,0) 70%);
    top: 38%; left: 38%;
}

/* floating cards */
.hz__card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(26,26,46,0.12);
    border: 1px solid var(--green-light);
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
}

.hz__card--top    { top: -18px; right: -20px; animation-delay: 0s; }
.hz__card--bottom { bottom: 24px; left: -24px; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

.hz__card-ico {
    width: 34px; height: 34px;
    background: var(--green-light);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

.hz__card-ico--alt {
    background: #e8f0fb;
    color: #3b6cb7;
}

.hz__card-text { display: flex; flex-direction: column; gap: 1px; }

.hz__card-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 700; color: #1A1A2E; line-height: 1;
}

.hz__card-text span { font-size: 11px; color: #7A7A96; font-weight: 400; }


/* --- TAGBAR --- */

.tagbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.tagbar__inner {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}

.tagbar__label {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--ink-light);
    white-space: nowrap; flex-shrink: 0;
}

.tagbar__list { display: flex; flex-wrap: wrap; gap: 8px; }

.tag {
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    color: var(--green-dark);
    font-size: 12px; font-weight: 600;
    padding: 5px 14px; border-radius: 100px;
}

@media (max-width: 575.98px) {
    .tagbar__label { font-size: 10px; }
    .tag { font-size: 11px; padding: 4px 10px; }
}


/* --- SERVICES --- */

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

@media (min-width: 768px) and (max-width: 1099.98px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .svc-grid { grid-template-columns: 1fr; }
}

.svc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.svc-card__cover {
    display: block; aspect-ratio: 16/9; overflow: hidden;
    position: relative; flex-shrink: 0;
}

.svc-card__cover img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}

.svc-card:hover .svc-card__cover img { transform: scale(1.07); }

.svc-card__shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,30,20,0.80) 0%, rgba(10,30,20,0.05) 60%);
    display: flex; align-items: flex-end; padding: 16px;
}

.svc-card__ico {
    width: 42px; height: 42px;
    background: var(--green);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center; color: #fff;
}

.svc-card__ico svg { width: 20px; height: 20px; }

.svc-card__body {
    padding: 24px; display: flex; flex-direction: column; flex: 1; gap: 0;
}

.svc-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px; font-weight: 700; color: var(--ink);
    text-decoration: none; display: block; margin-bottom: 10px;
    transition: color var(--transition);
}

.svc-card__title:hover { color: var(--green); }

.svc-card__desc {
    font-size: 14px; color: var(--ink-light); line-height: 1.7; margin-bottom: 16px;
}

.svc-card__checks { list-style: none; padding: 0; margin: 0 0 20px; flex: 1; }

.svc-card__checks li {
    font-size: 13px; color: var(--ink-mid);
    padding: 7px 0 7px 20px; position: relative;
    border-bottom: 1px solid var(--border);
}

.svc-card__checks li:last-child { border-bottom: none; }

.svc-card__checks li::before {
    content: ''; position: absolute; left: 0; top: 11px;
    width: 6px; height: 10px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
}

.svc-card__more {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 700; color: var(--green);
    text-decoration: none; margin-top: auto;
    transition: gap var(--transition), color var(--transition);
}

.svc-card__more:hover { gap: 9px; color: var(--green-dark); }
.svc-card__more svg { flex-shrink: 0; }


/* --- ABOUT --- */

.about-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 70px; align-items: center;
}

@media (max-width: 991.98px) {
    .about-split { grid-template-columns: 1fr; gap: 36px; }
}

.about-split__photo { position: relative; align-items: center; justify-content: center; }

.about-split__photo img {
    border-radius: var(--radius-lg); width: 100%; display: block; box-shadow: var(--shadow-lg);
}

.about-split__chip {
    position: absolute; bottom: -16px; left: 24px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 100px; padding: 10px 18px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: var(--ink);
    box-shadow: var(--shadow-md);
}

.about-split__chip svg { color: var(--green); flex-shrink: 0; }

.about-split__copy p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; }

.about-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }

.about-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; font-weight: 600; color: var(--ink);
    padding: 10px 14px; background: var(--white);
    border-radius: var(--radius-sm); border: 1px solid var(--border);
}

.about-list li::before {
    content: ''; display: inline-block;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--green); flex-shrink: 0;
}


/* --- CTA BAND --- */

.cta-band {
    padding: 100px 0; position: relative;
    background: linear-gradient(135deg, #1e2e9e 0%, #2a3db8 40%, #1a2a8a 100%);
    overflow: hidden;
}

.cta-band__veil { position: absolute; inset: 0; z-index: 0; }

.cta-band .container { position: relative; z-index: 1; }

.cta-band__inner { max-width: 720px; margin: 0 auto; text-align: center; }

.cta-band__title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px; font-weight: 800; color: #fff;
    line-height: 1.15; margin-bottom: 18px;
}

.cta-band__sub { font-size: 17px; color: rgba(255,255,255,0.72); line-height: 1.75; }

@media (max-width: 991.98px) {
    .cta-band { padding: 70px 0; }
    .cta-band__title { font-size: 30px; }
    .cta-band__sub { font-size: 15px; }
}


/* --- TESTIMONIALS --- */

.testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; align-items: start;
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .testi-grid { grid-template-columns: 1fr; }
}

.testi-card {
    background: var(--white); border-radius: var(--radius-md);
    padding: 28px; border: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 16px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.testi-card--featured {
    background: var(--ink); border-color: var(--ink); transform: translateY(-8px);
}

.testi-card--featured:hover { transform: translateY(-12px); }

.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { color: #f5a623; fill: #f5a623; }

.testi-card__quote {
    font-size: 15px; color: var(--ink-mid); line-height: 1.75;
    font-style: italic; flex: 1;
}

.testi-card--featured .testi-card__quote { color: rgba(255,255,255,0.8); }

.testi-card__author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px; border-top: 1px solid var(--border);
}

.testi-card--featured .testi-card__author { border-top-color: rgba(255,255,255,0.10); }

.testi-card__avatar {
    width: 40px; height: 40px; background: var(--green-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.testi-card__avatar svg { color: var(--green); }

.testi-card--featured .testi-card__avatar { background: rgba(255,255,255,0.10); }
.testi-card--featured .testi-card__avatar svg { color: rgba(255,255,255,0.7); }

.testi-card__name { display: block; font-weight: 700; font-size: 14px; color: var(--ink); }
.testi-card--featured .testi-card__name { color: #fff; }

.testi-card__role { display: block; font-size: 12px; color: var(--ink-light); }
.testi-card--featured .testi-card__role { color: rgba(255,255,255,0.45); }


/* --- PROCESS --- */

.process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
}

.process-step { padding: 0 24px; text-align: center; position: relative; }

.process-step__num {
    font-family: 'Outfit', sans-serif;
    font-size: 52px; font-weight: 800; color: var(--green-mid);
    line-height: 1; margin-bottom: 14px; position: relative; z-index: 1;
}

.process-step__connector {
    position: absolute; top: 26px;
    left: calc(50% + 34px); right: calc(-50% + 34px);
    height: 1.5px;
    background: linear-gradient(to right, var(--green), var(--green-mid));
}

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

.process-step__title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.process-step__text { font-size: 13px; color: var(--ink-light); line-height: 1.65; }

@media (max-width: 767.98px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-step { padding: 0; }
    .process-step__connector { display: none; }
    .process-step__num { font-size: 38px; }
}


/* --- PRICING --- */

.price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; align-items: start;
    max-width: 940px; margin: 0 auto;
}

@media (max-width: 767.98px) {
    .price-grid { grid-template-columns: 1fr; max-width: 400px; }
}

.price-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 26px; border: 1.5px solid var(--border);
    display: flex; flex-direction: column; position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card--featured {
    background: var(--ink); border-color: var(--ink);
    transform: translateY(-10px); box-shadow: var(--shadow-lg);
}

.price-card--featured:hover { transform: translateY(-14px); }

.price-card__badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--green); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
    padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}

.price-card__icon {
    width: 50px; height: 50px; background: var(--green-light);
    border-radius: var(--radius-md);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px; color: var(--green);
}

.price-card--featured .price-card__icon { background: rgba(255,255,255,0.10); color: var(--green); }
.price-card__icon svg { width: 22px; height: 22px; }

.price-card__name {
    font-family: 'Outfit', sans-serif;
    font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 10px;
}

.price-card--featured .price-card__name { color: #fff; }

.price-card__price { font-size: 15px; color: var(--ink-light); margin-bottom: 8px; }

.price-card__price strong {
    font-family: 'Outfit', sans-serif;
    font-size: 34px; font-weight: 800; color: var(--green);
    display: block; line-height: 1.2;
}

.price-card__desc { font-size: 13px; color: var(--ink-light); margin-bottom: 20px; }
.price-card--featured .price-card__desc { color: rgba(255,255,255,0.55); }

.price-card__list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }

.price-card__list li {
    font-size: 14px; color: var(--ink-mid);
    padding: 8px 0 8px 20px; position: relative;
    border-bottom: 1px solid var(--border);
}

.price-card__list li:last-child { border-bottom: none; }

.price-card--featured .price-card__list li {
    color: rgba(255,255,255,0.75);
    border-bottom-color: rgba(255,255,255,0.07);
}

.price-card__list li::before {
    content: ''; position: absolute; left: 0; top: 13px;
    width: 6px; height: 10px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
}

.price-card .btn { border-radius: var(--radius-sm); }

.price-card--featured .btn--outline-dark {
    border-color: rgba(255,255,255,0.25); color: #fff;
}

.price-card--featured .btn--outline-dark:hover {
    border-color: var(--green); color: var(--green);
}


/* --- FAQ --- */

.faq-wrap {
    max-width: 740px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 10px;
}

.faq-item {
    border: 1.5px solid var(--border); border-radius: var(--radius-md);
    overflow: hidden; transition: border-color var(--transition); background: var(--white);
}

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

.faq-item__q {
    padding: 20px 22px; display: flex; align-items: center;
    justify-content: space-between; cursor: pointer; gap: 12px;
}

.faq-item__q span {
    font-weight: 600; font-size: 15px; color: var(--ink); flex: 1; line-height: 1.4;
}

.faq-item__ico {
    width: 30px; height: 30px; background: var(--green-light);
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--green); transition: background var(--transition);
}

.faq-item__ico svg { width: 16px; height: 16px; transition: transform 0.25s ease; }

.faq-item.active .faq-item__ico { background: var(--green); color: #fff; }
.faq-item.active .faq-item__ico svg { transform: rotate(180deg); }

.faq-item__a {
    display: none; padding: 0 22px 20px;
    font-size: 14px; color: var(--ink-mid); line-height: 1.8;
}

.faq-item__a p { margin: 0; }

@media (max-width: 767.98px) {
    .faq-item__q span { font-size: 13px; }
}


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

.site-footer {
    background: #111820;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}

.site-footer__top {
    padding: 72px 0 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1.1fr 1.2fr;
    gap: 48px; align-items: start;
}

@media (max-width: 1099.98px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 36px; }
}

@media (max-width: 575.98px) {
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .site-footer__top { padding: 48px 0 40px; }
}

.footer-col__title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: 1.8px; margin-bottom: 20px;
}

.footer-brand__logo { display: inline-block; margin-bottom: 18px; }
.footer-brand__logo img { height: 60px; width: auto; display: block; }
.footer-brand__logo .first  { display: none; }
.footer-brand__logo .second { display: block; }

.footer-brand__desc {
    font-size: 13px; color: rgba(255, 255, 255, 0.48);
    line-height: 1.75; max-width: 350px; margin-bottom: 24px;
}

.footer-social { display: flex; gap: 8px; }

.footer-social__link {
    width: 34px; height: 34px; border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social__link:hover { transform: translateY(-2px); }
.footer-social__link.linkedin:hover  { background: #0a66c2; }
.footer-social__link.facebook:hover  { background: #1877f2; }
.footer-social__link.instagram:hover { background: #c32aa3; }
.footer-social__link.youtube:hover   { background: #ff0000; }
.footer-social__link svg { flex-shrink: 0; }

.footer-nav__list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}

.footer-nav__list a {
    color: rgba(255, 255, 255, 0.52); text-decoration: none;
    font-size: 14px; font-weight: 400;
    transition: color 0.2s ease, padding-left 0.2s ease; display: inline-block;
}

.footer-nav__list a:hover { color: #fff; padding-left: 4px; }

.footer-contact__list {
    list-style: none; padding: 0; margin: 0 0 24px;
    display: flex; flex-direction: column; gap: 14px;
}

.footer-contact__list li { display: flex; align-items: center; gap: 11px; }

.footer-contact__ico {
    width: 30px; height: 30px;
    background: rgba(67, 97, 238, 0.15);
    border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--green);
}

.footer-contact__ico svg { flex-shrink: 0; }

.footer-contact__list a,
.footer-contact__list span {
    color: rgba(255, 255, 255, 0.62); font-size: 14px;
    text-decoration: none; transition: color 0.2s ease;
}

.footer-contact__list a:hover { color: #fff; }

.footer-cta-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--green); color: #fff;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 700;
    padding: 11px 20px; border-radius: 6px; text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.footer-cta-btn:hover {
    background: var(--green-dark); color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(67, 97, 238, 0.30);
}

.footer-cta-btn svg { flex-shrink: 0; }

.site-footer__bottom { padding: 18px 0; }

.footer-bottom__inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
}

.footer-bottom__copy { font-size: 12px; color: rgba(255, 255, 255, 0.32); }

.footer-bottom__links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-bottom__links a {
    font-size: 12px; color: rgba(255, 255, 255, 0.32);
    text-decoration: none; transition: color 0.2s ease;
}

.footer-bottom__links a:hover { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 575.98px) {
    .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
    .footer-bottom__links { gap: 14px; }
}


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

.sec__title-em { color: var(--green); }

.problem-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: start;
}

@media (max-width: 991.98px) {
    .problem-split { grid-template-columns: 1fr; gap: 36px; }
}

.problem-split__perex { font-size: 16px; color: var(--ink-mid); line-height: 1.8; }
.problem-split__intro .sec__head { text-align: left; }

.problem-label {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--ink-light); margin-bottom: 20px;
}

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 575.98px) {
    .problem-grid { grid-template-columns: 1fr; }
}

.problem-card {
    display: flex; gap: 14px; align-items: flex-start;
    background: var(--off-white); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); padding: 18px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.problem-card:hover { border-color: var(--green-mid); box-shadow: var(--shadow-sm); }

.problem-card--accent {
    background: var(--green-light); border-color: var(--green-mid);
    grid-column: span 2;
}

@media (max-width: 575.98px) {
    .problem-card--accent { grid-column: span 1; }
}

.problem-card__ico {
    width: 38px; height: 38px; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--green);
}

.problem-card--accent .problem-card__ico { background: var(--white); border-color: var(--green-mid); }

.problem-card__title {
    display: block; font-size: 14px; font-weight: 700; color: var(--ink);
    margin-bottom: 5px; line-height: 1.3;
}

.problem-card__text { font-size: 13px; color: var(--ink-light); line-height: 1.65; margin: 0; }


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

.solutions-table {
    max-width: 900px; margin: 0 auto;
    border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}

.solutions-table__head {
    display: grid; grid-template-columns: 1.2fr 2fr;
    gap: 0; background: var(--ink); padding: 14px 24px;
}

.solutions-table__head div {
    font-size: 11px; font-weight: 700; letter-spacing: 1.8px;
    text-transform: uppercase; color: rgba(255,255,255,0.45);
}

.solutions-row {
    display: grid; grid-template-columns: 1.2fr 2fr;
    gap: 0; padding: 22px 24px; border-top: 1px solid var(--border);
    align-items: center; transition: background var(--transition);
}

.solutions-row:hover { background: var(--off-white); }

.solutions-row--featured { background: var(--green-light); border-color: var(--green-mid); }
.solutions-row--featured:hover { background: #dce3fc; }

.solutions-row__name {
    display: flex; align-items: center; gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.3;
}

.solutions-row__ico {
    width: 36px; height: 36px; background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--green);
}

.solutions-row--featured .solutions-row__ico { background: var(--white); }

.solutions-row__desc { font-size: 13px; color: var(--ink-light); line-height: 1.7; padding: 0 20px; text-align: justify; }

.solutions-row__price { font-size: 13px; color: var(--ink-light); text-align: right; }

.solutions-row__price strong {
    display: block; font-family: 'Outfit', sans-serif;
    font-size: 20px; font-weight: 800; color: var(--green); line-height: 1.2;
}

@media (max-width: 767.98px) {
    .solutions-table__head { display: none; }
    .solutions-row { grid-template-columns: 1fr; gap: 10px; padding: 18px 16px; }
    .solutions-row__desc { padding: 0; }
    .solutions-row__price { text-align: left; }
}



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

.solutions-tiles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.solutions-tiles__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.solutions-tile {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px 28px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.solutions-tile:hover {
    border-color: var(--green-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* VeÄľkĂˇ dlaĹľdica hore */
.solutions-tile--hero {
    /*background: var(--ink);*/
    /*border-color: var(--ink);*/

    background: var(--green);
    border-color: var(--green);

    padding: 40px 36px;
}

.solutions-tile--hero:hover {
    border-color: var(--green);
}

.solutions-tile--hero p {
    color: rgba(255,255,255,0.8);
}

.solutions-tile--hero ul.sp li::marker {
    color: #fff;
}

.solutions-tile--hero .solutions-tile__ico {
    background: rgba(255,255,255,0.10);
    border-color: transparent;
    color: #fff;
}

.solutions-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.solutions-tile--hero .solutions-tile__name {
    color: #fff;
    font-size: 24px;
}

.solutions-tile--hero .solutions-tile__desc {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
}

/* ZvĂ˝raznenĂˇ dlaĹľdica */
.solutions-tile--accent {
    background: var(--green-light);
    border-color: var(--green-mid);
}

.solutions-tile--accent .solutions-tile__ico {
    background: var(--white);
    border-color: var(--green-mid);
}

/* Ikona */
.solutions-tile__ico {
    width: 46px;
    height: 46px;
    background: var(--green-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

/* NĂˇzov */
.solutions-tile__name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.3;
}

/* Popis */
.solutions-tile__desc {
    font-size: 14px;
    color: var(--ink-light);
    line-height: 1.75;
    margin: 0;
}

/* ResponzĂ­vnosĹĄ */
@media (max-width: 767.98px) {
    .solutions-tiles__grid {
        grid-template-columns: 1fr;
    }

    .solutions-tile--hero {
        padding: 28px 22px;
    }

    .solutions-tile--hero .solutions-tile__name {
        font-size: 20px;
    }
}










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

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .contact-split { grid-template-columns: 1fr; gap: 36px; }
}

/* Info karty */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-info-card:hover {
    border-color: var(--green-mid);
    box-shadow: var(--shadow-sm);
}

.contact-info-card__ico {
    width: 40px; height: 40px;
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--green);
}

.contact-info-card__label {
    display: block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--ink-light); margin-bottom: 4px;
}

.contact-info-card__value {
    display: block;
    font-size: 15px; font-weight: 600; color: var(--ink);
    text-decoration: none;
    transition: color var(--transition);
}

a.contact-info-card__value:hover { color: var(--green); }

/* NDA note */
.contact-note {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--ink-light);
    padding: 14px 16px;
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    border-radius: var(--radius-md);
    margin-top: 4px;
}

.contact-note svg { color: var(--green); flex-shrink: 0; }

/* FormulĂˇr */
.contact-split__form {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 575.98px) {
    .contact-form__row { grid-template-columns: 1fr; }
    .contact-split__form { padding: 24px 18px; }
}

.contact-form__group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.contact-form__group label {
    font-size: 12px; font-weight: 700;
    color: var(--ink); margin-bottom: 7px;
    letter-spacing: 0.3px;
}

.contact-form__input {
    height: 46px;
    padding: 0 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--ink);
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.contact-form__input:focus {
    border-color: var(--green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(67,97,238,0.12);
}

.contact-form__input::placeholder { color: #b0b0c0; font-size: 13px; }

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7A96' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.contact-form__textarea {
    height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

.contact-form__submit {
    width: 100%;
    justify-content: center;
    padding: 15px 26px;
    font-size: 15px;
    margin-top: 4px;
}











/************** HEX SECTION *********/


.hex-shadow {
    filter: drop-shadow(0px 8px 10px rgba(26, 47, 94, 0.25));
    position: absolute;
    z-index: 1;
}


.hex-part.main-part {
    padding-top: 25px;
}


.hex-shadow {
    width: 27%;
}

.hex-part {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
    background: #fff;
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 17px;
    padding-bottom: 25px;
    display: inline-flex;
    align-items: center;
    z-index: 3;
    will-change: transform;

}

.hex-part svg {
    color: #4361EE;
}


.hex-part.main-part::after {
    width: 100%;
    aspect-ratio: 1/1.1;

    display: flex;
    justify-content: center;
    padding-left: 8px;
    padding-right: 8px;
    z-index: 5;
    font-family: 'Outfit', sans-serif;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;

}


.hex-part svg {
    width: 40px;
    height: 40px;
    stroke-width: 1;
}


.hex-sec::after {
    content: '';
    display: block;
    border-radius: 50%;
    border: 2px dotted #4361EE;
    position: absolute;
    width: 76%;
    aspect-ratio: 1;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;

    animation: rotateRing 50s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.hex-shadow.shadow-1 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}



.hex-shadow.shadow-2 {
    position: absolute;
    top: 25%;
    right: 0;


}



.hex-shadow.shadow-3 {
    position: absolute;
    bottom: 5%;
    right: 10%;
}


.hex-shadow.shadow-4 {
    position: absolute;
    bottom: 5%;
    left: 10%;
}


.hex-shadow.shadow-5 {
    position: absolute;
    top: 25%;
    left: 0;


}

.hex-shadow.shadow-main {
    width: 32%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
}



.hex-part.main-part {
    width: 100%;
    aspect-ratio: 1/1.1;

    display: flex;
    justify-content: center;
    padding-left: 8px;
    padding-right: 8px;
    z-index: 5;
    font-family: 'Outfit', sans-serif;
    color: #4361EE;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;

}

.hex-part .cont {
    font-size: 11px;
    line-height: 1.3;
    text-align: center;
}

.hex-part .cont .hex-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 1px;
    font-family: 'Outfit', sans-serif;
    color: var(--main-color);
}

.hex-sec {
    width: 530px;
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    aspect-ratio: 1/1.1;
    margin: auto;
    position: relative;
}


.hex-part.part-1 { animation: levitate-center 3s ease-in-out infinite; animation-delay: 0.3s; }
.hex-part.part-2 { animation: levitate 3s ease-in-out infinite; animation-delay: 1.3s; }
.hex-part.part-3 { animation: levitate 3s ease-in-out infinite; animation-delay: 2.3s; }
.hex-part.part-4 { animation: levitate 3s ease-in-out infinite; animation-delay: 3.3s; }
.hex-part.part-5 { animation: levitate 3s ease-in-out infinite; animation-delay: 4.3s; }

@keyframes levitate {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}

@keyframes levitate-center {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}


@media (max-width: 767.98px) {



    .hex-part.main-part {
        font-size: 17px;
    }

    .hex-part .cont {
        font-size: 10px;
    }

    .hex-part .cont .hex-title {
        font-size: 12px;
    }

    .hex-part {
        padding-left: 4px;
        padding-right: 4px;
    }

    .hex-part svg {
        width: 25px;
        height: 25px;
        margin-bottom: 2px;
    }

    .hex-shadow {
        width: 31%;
    }



    .hex-shadow.shadow-1 {
        top: -10px;
    }

}







/*** justify ****/

.justify {
    text-align: justify !important;
}

ul.sp {
    list-style: square;
    padding-left: 20px;
}

ul.sp li::marker {
    color: #4361EE;
}


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




.heading-box .heading {
    font-family: 'Outfit', sans-serif;
    font-size: 49px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.15;
    margin-bottom: 14px;
}



/* =============================================
   SERVICE PAGES â€” vĹˇetky ĹˇtĂ˝ly pod .service-page
   ============================================= */

/* --- HERO --- */

.service-page .sp-hero {
    background: linear-gradient(135deg, #eef1fd 0%, #f5f7fe 50%, #ffffff 100%);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.service-page .sp-hero::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(67,97,238,0.12) 0%, transparent 70%);
    top: -150px; right: -100px;
    pointer-events: none;
}

.service-page .sp-hero__inner {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
}

.service-page .sp-hero__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.service-page .sp-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 12px;
}

.service-page .sp-hero__sub {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--green);
    margin-bottom: 22px;
}

.service-page .sp-hero__perex {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: justify;
}

.service-page .sp-hero__cta {
    margin-top: 30px;
}

@media (max-width: 767.98px) {
    .service-page .sp-hero { padding: 60px 0 50px; }
    .service-page .sp-hero__title { font-size: 34px; }
    .service-page .sp-hero__sub { font-size: 16px; }
    .service-page .sp-hero__perex { font-size: 14px; }
}


/* --- SEKCIE --- */

.service-page .sp-sec {
    padding: 80px 0;
    background: var(--white);
}

.service-page .hr-sec  {
    padding-top: 0;
}

.service-page .hr-sec .sp-intro-wrap {
    max-width: 700px;
}

.service-page .sp-sec--light {
    background: var(--green-light);
}

@media (max-width: 767.98px) {
    .service-page .sp-sec { padding: 50px 0; }
}


/* --- NADPISY --- */

.service-page .sp-title {
    font-family: 'Outfit', sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
    margin-bottom: 20px;
}

.service-page .sp-title--center {
    text-align: center;
}

.service-page .sp-intro-text {
    font-size: 16px;
    color: var(--ink-mid);
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 18px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .service-page .sp-title { font-size: 24px; }
    .service-page .sp-intro-text { font-size: 14px; text-align: left; }
}


/* --- SPLIT LAYOUT --- */

.service-page .sp-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-page .sp-split__text p {
    font-size: 15px;
    color: var(--ink-mid);
    line-height: 1.85;
    margin-bottom: 14px;
    text-align: justify;
}

@media (max-width: 991.98px) {
    .service-page .sp-split { grid-template-columns: 1fr; gap: 36px; }
}


/* --- CALLOUT BOX --- */

.service-page .sp-callout {
    background: var(--white);
    border: 1.5px solid var(--green-mid);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    position: sticky;
    top: 110px;
}

.service-page .sp-callout__ico {
    width: 44px; height: 44px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    margin-bottom: 14px;
}

.service-page .sp-callout__title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

.service-page .sp-callout__text {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.75;
    margin: 0;
}


/* --- CHECK LIST BOX --- */

.service-page .sp-check-list {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.service-page .sp-check-list__title {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
}

.service-page .sp-check-list ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}

.service-page .sp-check-list ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.5;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.service-page .sp-check-list ul li:last-child { border-bottom: none; }

.service-page .sp-check-list ul li::before {
    content: '';
    display: inline-block;
    width: 6px; height: 10px;
    border-right: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-top: 3px;
}


/* --- TABUÄ˝KA SIGNĂLOV --- */

.service-page .sp-table-wrap {
    max-width: 820px;
    margin: 40px auto 36px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-page .sp-table-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: var(--green);
    padding: 14px 24px;
    gap: 20px;
}

.service-page .sp-table-head div {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

.service-page .sp-table-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    padding: 18px 24px;
    border-top: 1px solid var(--border);
    align-items: center;
    transition: background var(--transition);
}

.service-page .sp-table-row:hover { background: var(--off-white); }

.service-page .sp-table-row--featured {
    background: var(--green-light);
    border-color: var(--green-mid);
}

.service-page .sp-table-row--featured:hover { background: #dce3fc; }

.service-page .sp-table-row__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.service-page .sp-table-row__label svg { color: var(--green); flex-shrink: 0; }

.service-page .sp-table-row__desc {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.6;
}

@media (max-width: 767.98px) {
    .service-page .sp-table-head { display: none; }
    .service-page .sp-table-row { grid-template-columns: 1fr; gap: 6px; padding: 16px; }
    .service-page .sp-table-row__desc { padding-left: 26px; }
}


/* --- INLINE CTA --- */

.service-page .sp-cta-inline {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.service-page .sp-cta-inline__note {
    font-size: 13px;
    color: var(--ink-light);
}


/* --- KROKY / STEPS --- */

.service-page .sp-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 820px;
    margin: 40px auto 0;
    position: relative;
}

.service-page .sp-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green), var(--green-mid));
}

.service-page .sp-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 0 0 32px 0;
    position: relative;
}

.service-page .sp-step:last-child { padding-bottom: 0; }

.service-page .sp-step__num {
    width: 42px; height: 42px;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px; font-weight: 800;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--green-light);
}

.service-page .sp-step__body { flex: 1; padding-top: 8px; }

.service-page .sp-step__title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.service-page .sp-step__text {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.75;
    margin: 0;
    text-align: justify;
}

@media (max-width: 767.98px) {
    .service-page .sp-steps::before { left: 16px; }
    .service-page .sp-step__num { width: 34px; height: 34px; font-size: 12px; }
    .service-page .sp-step__title { font-size: 15px; }
}


/* --- VĂťSLEDKY GRID --- */


.service-page .controlling .sp-results-grid {
    grid-template-columns: repeat(3, 1fr);
}


.service-page .sp-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}



.service-page  .but-5 .sp-results-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 991.98px) {
    .service-page .but-5 .sp-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .service-page .but-5 .sp-results-grid { grid-template-columns: 1fr; }
}


@media (max-width: 991.98px) {
    .service-page .sp-results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .service-page .sp-results-grid { grid-template-columns: 1fr; }

    .service-page .controlling .sp-results-grid {
        grid-template-columns: 1fr;
    }
}

.service-page .sp-result-card {
    background: var(--off-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-page .sp-result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-mid);
}

.service-page .sp-result-card__ico {
    width: 50px; height: 50px;
    background: var(--green-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--green);
    margin: 0 auto 14px;
}

.service-page .sp-result-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.service-page .sp-result-card__text {
    font-size: 13px;
    color: var(--ink-light);
    line-height: 1.65;
    margin: 0;
}


/* --- CTA BAND --- */

.service-page .sp-cta-band {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    padding: 80px 0;
}

.service-page .sp-cta-band__inner {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.service-page .sp-cta-band__title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.service-page .sp-cta-band__text {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.75;

    max-width: 750px;
    margin: auto;
    margin-bottom: 32px;
}

.service-page .sp-cta-band .btn--green {
    background: #fff;
    border-color: #fff;
    color: var(--green);
    font-size: 15px;
    padding: 15px 30px;
}

.service-page .sp-cta-band .btn--green:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

@media (max-width: 767.98px) {
    .service-page .sp-cta-band { padding: 60px 0; }
    .service-page .sp-cta-band__title { font-size: 26px; }
    .service-page .sp-cta-band__text { font-size: 14px; }
}


/* --- CONTENT BLOCK --- */

.service-page .sp-content-block {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}



.new-stup {
    border: 2px solid red;
}


.service-page .sp-sec--light .sp-table-row {
    background: #fff;
}








/** new home udpates ***/

.home-page .sec.services .solutions-tile .solutions-head {
    justify-content: center;
}

.home-page .sec.services .solutions-tile .solutions-tile__desc {
    text-align: center !important;
}

.home-page .sec.services .solutions-tile ul {
    padding-left: 0;
    list-style: none;
}


@media (min-width: 1200px) {
    .home-page .sec.services .solutions-tile {
        padding: 42px 38px;
    }

    .solutions-tile__name {
        font-size: 20px;
    }

    .home-page .sec.services .solutions-tile .solutions-tile__desc {
        font-size: 16px;

    }


}









/* === PROBLEM SECTION UPGRADES === */

#problem { background: #f5f7ff; }

#problem .prob-list {
    list-style: none; padding: 0; margin: 24px auto;
    display: flex; flex-direction: column; gap: 10px;
    max-width: 550px;
}

#problem .problem-split__intro {
    max-width: 1050px;
}

#problem .prob-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 17px; color: var(--ink-mid); line-height: 1.5;
    background: #fff; border: 1.5px solid var(--green-mid);
    border-radius: var(--radius-md); padding: 13px 16px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

#problem .prob-list li:hover {
    border-color: var(--green);
    box-shadow: 0 2px 12px rgba(67,97,238,0.10);
}

#problem .prob-list li::before {
    content: '?'; display: inline-flex; align-items: center; justify-content: center;
    width: 22px; height: 22px; min-width: 22px;
    background: var(--green); color: #fff;
    border-radius: 50%; font-size: 13px; font-weight: 700;
    font-family: 'Outfit', sans-serif; margin-top: 1px;
}

#problem .prob-outro {
    display: block;
    background: linear-gradient(135deg, #4361EE 0%, #2D4ACC 60%, #1a2fa8 100%);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 22px 28px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 28px rgba(67,97,238,0.30);
}

#problem .solutions-table {
    border: 1.5px solid var(--green-mid); background: #fff;
}

#problem .solutions-row { border-top-color: var(--green-light); }
#problem .solutions-row:hover { background: #f5f7ff; }
#problem .solutions-row__ico { background: var(--green-light); }



/*
   RIESENIA V2
  */

.riesenia-v2 {
    background: var(--green-light);
}


.riesenia-v2  .cont {
    max-width: 1050px;
    margin: auto;
}


/* --- HERO TILE --- */

.riesenia-v2 .rv2-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.riesenia-v2 .rv2-hero__left {
    padding: 40px 36px;
}

.riesenia-v2 .rv2-hero__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.riesenia-v2 .sec__title {

    color: var(--green);

}

.riesenia-v2 .rv2-hero__ico {
    width: 46px;
    height: 46px;
    background: rgba(67, 97, 238, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7b93f5;
    flex-shrink: 0;
}

.riesenia-v2 .rv2-hero__ico svg {
    width: 22px;
    height: 22px;
}

.riesenia-v2 .rv2-hero__name {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.riesenia-v2 .rv2-hero__left p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 8px;
}

.riesenia-v2 .rv2-hero__right {
    padding: 40px 36px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.riesenia-v2 .rv2-hero__conclusion {
    grid-column: span 2;
    padding: 18px 36px;
    background: rgba(67, 97, 238, 0.18);
    border-top: 1px solid rgba(67, 97, 238, 0.25);
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.65;
    display: flex;
    align-items: center;
    gap: 14px;
}

.riesenia-v2 .rv2-hero__conclusion::before {
    content: '';
    display: inline-flex;
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--green);
    border-radius: 50%;
}

/* --- LABEL --- */

.riesenia-v2 .rv2-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}

/* --- CHIPS --- */

.riesenia-v2 .rv2-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.riesenia-v2 .rv2-chip {
    background: rgba(67, 97, 238, 0.20);
    border: 1px solid rgba(67, 97, 238, 0.40);
    color: #a0b0f5;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 100px;
    line-height: 1;
}

/* --- GRID KARTY --- */

.riesenia-v2 .rv2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.riesenia-v2 .rv2-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.riesenia-v2 .rv2-card:hover {
    border-color: var(--green-mid);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.riesenia-v2 .rv2-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.riesenia-v2 .rv2-card__ico {
    width: 42px;
    height: 42px;
    background: var(--green-light);
    border: 1px solid var(--green-mid);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.riesenia-v2 .rv2-card__ico svg {
    width: 20px;
    height: 20px;
}

.riesenia-v2 .rv2-card__name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    line-height: 1.2;
}

.riesenia-v2 .rv2-card p {
    font-size: 14px;
    color: var(--ink-mid);
    line-height: 1.75;
    margin: 0 0 12px;
}

.riesenia-v2 .rv2-card .rv2-label {
    color: var(--ink-light);
    margin-bottom: 10px;
}

.riesenia-v2 .rv2-card .rv2-chips {
    justify-content: flex-start;
}

.riesenia-v2 .rv2-card .rv2-chip {
    background: var(--green-light);
    border-color: var(--green-mid);
    color: var(--green-dark);
}

.riesenia-v2 .rv2-card__conclusion {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--ink-light);
    font-style: italic;
    line-height: 1.6;
}

/* --- RESPONZÍVNOSŤ --- */

@media (max-width: 991.98px) {
    .riesenia-v2 .rv2-hero {
        grid-template-columns: 1fr;
    }

    .riesenia-v2 .rv2-hero__right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 28px;
    }

    .riesenia-v2 .rv2-hero__conclusion {
        grid-column: span 1;
    }
}

@media (max-width: 767.98px) {
    .riesenia-v2 .rv2-hero__left,
    .riesenia-v2 .rv2-hero__right {
        padding: 28px 22px;
    }

    .riesenia-v2 .rv2-hero__conclusion {
        padding: 16px 22px;
    }

    .riesenia-v2 .rv2-hero__name {
        font-size: 20px;
    }

    .riesenia-v2 .rv2-grid {
        grid-template-columns: 1fr;
    }
}


/* Hero tile - svetlá verzia */
.riesenia-v2 .rv2-hero {
    background: var(--white);
    border: 1.5px solid var(--green-mid);
    box-shadow: var(--shadow-md);
}

.riesenia-v2 .rv2-hero__left p {
    color: var(--ink-mid);
}

.riesenia-v2 .rv2-hero__name {
    color: var(--ink);
}

.riesenia-v2 .rv2-hero__ico {
    background: var(--green-light);
    color: var(--green);
}

.riesenia-v2 .rv2-hero__right {
    border-left: 1px solid var(--border);
    background: var(--off-white);
}

.riesenia-v2 .rv2-hero__right .rv2-label {
    color: var(--ink-light);
}

.riesenia-v2 .rv2-hero__right .rv2-chip {
    background: var(--green-light);
    border-color: var(--green-mid);
    color: var(--green-dark);
}

.riesenia-v2 .rv2-hero__conclusion {
    background: var(--green-light);
    border-top: 1px solid var(--green-mid);
    color: var(--ink-mid);
}

.riesenia-v2 .rv2-hero__conclusion::before {
    background: var(--green);
}