/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Montserrat", sans-serif;
    color: #242529;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

/* Globální opravy prvků */
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Kontejner */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- 1. ZÁKLADNÍ STYL (MOBILNÍ VERZE) --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo a, 
.logo a:focus, 
.logo a:active {
    outline: none;
    border: none;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.logo img {
    max-width: 150px;
    border: none;
    outline: none;
    text-decoration: none;
}
.logo, .logo:focus, .logo:active {
    outline: none;
    border: none;
}
.nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    height: 100vh;
    justify-content: center;
    gap: 40px;
    transition: 0.2s ease-in-out;
    list-style: none;
}

.nav-menu.active {
    padding: 4em 2em 0;
    left: 0;
}
.nav-menu.active li {
    padding: 0 0 15px;
}
.nav-menu a {
    text-decoration: none;
    color: #242529;
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
}
.hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #242529;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) { -webkit-transform: translateY(9px) rotate(45deg); -ms-transform: translateY(9px) rotate(45deg); transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { -webkit-transform: translateY(-9px) rotate(-45deg); -ms-transform: translateY(-9px) rotate(-45deg); transform: translateY(-9px) rotate(-45deg); }
section {
    width: 100%;
    position: relative;
}
.hero {
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(../img/hp-img-new-69d66a87ad1a6.webp);
    background-size: 86%;
    background-position: 80% 0%;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 0;
    margin: 6em 0 0;
    overflow: hidden;
}
.hero-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px 20px;
}
.hero-content {
    max-width: 600px;
}
.hero-content h1 {
    text-align: left;
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 50px;
    font-weight: 300;
}
.hero-content .h1-span {
    font-weight: 600;
}
.hero-content p {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 30px;
}
.hero-content .hero-content-text {
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: 6px;
    font-weight: 200;
    margin-bottom: 30px;
}
.hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 4em 0;
}
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary {
    background: #7d84e3;
    color: #fff;
    border: 1px solid #7d84e3;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
}
.btn.btn-primary:hover {
    background: #ffffff;
    color: #4e4e4e;
    border: 1px solid #b5b6b8;
}
.btn-secondary {
    background: transparent;
    color: #4e4e4e;
    border: 1px solid #b5b6b8;
}
.btn.btn-secondary:hover {
    background: #7d84e3;
    color: #ffffff;
    border: 1px solid #7d84e3;
}
.phone-section {
    background-image: url(../img/od-navrhu-po-vysledky-69da418ef12e0.webp);
    background-size: auto;
    background-position: left;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 0;
    overflow: hidden;
}
.phone-section .section-text {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 300;
    color: #232325;
    padding: 0 0 15px;
}
.phone-section .section-text.small {
    font-size: 1.1rem;
    line-height: 1.6;
    padding: 0 0 .1em;
}

.phone-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}
.phone-image .phone-mobile {
    max-width: 280px;
    width: 100%;
}
.phone-content {
    text-align: left;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.3;
    padding: 0 0 20px;
}
.section-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
}
.features {
    position: relative;
    background-image: url(../img/section-bg-2-69d8a95273018.webp);
    background-size: contain;
    background-position: right;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 0 0 1em;
    overflow: hidden;
}
.features .feature-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 100px;
}
.features .feature-tablet-image img {
    width: 100%;
    max-width: 325px;
}
.features .features-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 500;
    max-width: 1100px;
    padding: 30px 0 0;
}
.features-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    padding: 20px 0 0;
}
.feature-tablet-image {
    display: none;
 position: absolute;
    right: 0;
    bottom: 0;
}
.feature-icon img {
    width: 100%;
    max-width: 60px;
}
.feature-card p {
    font-size: 1rem;
    line-height: 1.4;
    font-style: normal;
    font-weight: 300;
    max-width: 600px;
}
.feature-card h3 {
    font-size: 1.3rem;
    line-height: 1.4;
    font-weight: 600;
    padding: 0 0 10px;
}
.feature-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    -webkit-box-shadow: 11px 10px 16px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 11px 10px 16px 0px rgba(0, 0, 0, 0.1);
    border-bottom-right-radius: 25px;
    background: #ffffff;
    padding: 1.1em;
    margin-left: 0;
    max-width: 630px;
}
.feature-card.left-margin {
    margin-left: 0;
}
.gallery-grid, .testimonials-grid {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.monitor-section {
    background-image: url(../img/od-vize-k-vysledkum-pozadi-69da47ae7400a.webp);
    background-size: 90%;
    background-position: left;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 50px 0 40px;
    overflow: hidden;
}
.monitor-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 50px;
}
.accordion {
    min-height: 100%;
    max-width: 800px;
    margin: 20px auto 0;
}
.accordion-item {
    border-bottom: 1px solid #e2e8f0;
}
.accordion-header {
    width: 100%;
    padding: 25px 15px;
    background: #fff;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #6A77BB;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .5px;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    text-align: left;
}
.accordion-header:hover {
    background-color: #f8fafc;
}
.accordion-header i {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, 
    -webkit-transform 0.3s ease;
    font-size: 0.9rem;
    color: #7d84e3;
}
.accordion-item.active .accordion-header i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-out;
    -o-transition: max-height 0.3s ease-out;
    transition: max-height 0.3s ease-out; 
    background-color: #fff;
    padding: 0;
}
.accordion-content p {
    padding: 0 20px 20px 20px;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}
.accordion-item.active .accordion-content {
    max-height: 300px; 
    -webkit-transition: max-height 1s ease-in-out; 
    -o-transition: max-height 1s ease-in-out; 
    transition: max-height 1s ease-in-out;
}
.target {
    padding: 0;
}
.target-card {
    -webkit-box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 20px 20px 30px 0px rgba(0, 0, 0, 0.1);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 0 0 25px;
    width: 100%;
}
.target-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 500;
}
.target-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 600px;
}
.target-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 25px;
    padding: 50px 0 0;
}
.target-card img {
    object-fit: cover;
    width: 100%;
    height: 165px;
}
.target-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1em 1em 0;
    min-height: 100%;
}
.target-content h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 500;
    padding: 0 0 1em;
}
.target-content p {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 0 30px;
}
.target-btn {
    color: #ffffff;
    background: #7d84e3;
    border-radius: 25px;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    text-decoration: none;
    border-width: 1px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    transition: all 0.3s ease;
    width: 14em;
}
.target-btn:hover {
 background: transparent;
    color: #4e4e4e;
    border: 1px solid #b5b6b8;
}
.stats {
    padding: 80px 0 60px;
}
.stats-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}
.stats-title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    padding: 0 0 1em;
}
.stats-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
}
.stats-content,
.stats-grid {
    width: 100%;
}
.stats-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.circle-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}
.stat-number {
    position: absolute;
    font-size: 1.4rem;
    font-weight: 400;
}
.progress-ring {
    width: 90px;
    height: 90px;
}
.progress-ring .circle-bar {
    -webkit-transition: stroke-dashoffset 1.5s ease-in-out;
    -o-transition: stroke-dashoffset 1.5s ease-in-out;
    transition: stroke-dashoffset 1.5s ease-in-out;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-dasharray: 502.6;
    stroke-dashoffset: 502.6;
}
.stat-item {
    text-align: center;
    width: 30%;
}
.stat-label {
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
}
.portfolio-gallery {
    background-image: url("../img/section-bg-6-1-69d8b41144e08.webp");
    background-size: contain;
    background-position: right top;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 80px 0 0;
    overflow: hidden;
}
.gallery-title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
}
.gallery-container {
    padding: 80px 0 0;
    margin: 0 auto;
}
.gallery-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    margin-bottom: 15px;
}
.gallery-item:hover img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
.gallery-item.w-2 {
    -ms-grid-column-span: 2;
    grid-column: span 2;
}
.gallery-item.h-2 {
    -ms-grid-row-span: 2;
    grid-row: span 2;
}
.testimonials {
    background-image: url("../img/section-bg-2-69d8a95273018.webp");
    background-size: contain;
    background-position: right top;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 0 0 80px;
    overflow: hidden;
}
.testimonials-title {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    padding: 1.5em 0 1em;
}
.testimonials-container {
    max-width: 900px;
    margin: 0;
}
.testimonials-slider {
    position: relative;
    min-height: 250px;
}
.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}
.quote-icon {
    font-size: 80px;
    color: #69dae3; /* Tvá tyrkysová */
    line-height: 1;
    margin-bottom: -20px;
    font-family: serif; /* Pro hezčí tvar uvozovek */
}
.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #242529;
    font-weight: 300;
    margin-bottom: 15px;
    font-style: italic;
}
.author-info {
    font-weight: 300;
    font-size: 1.1rem;
    color: #242529;
    letter-spacing: .5px;
}
.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}
.testimonials-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
    transition: -webkit-transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
    -o-transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
    transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
    transition: transform 0.6s cubic-bezier(0.45, 0, 0.55, 1), 
    -webkit-transform 0.6s cubic-bezier(0.45, 0, 0.55, 1);
    width: 100%;
}
.testimonial-slide {
    -webkit-box-flex: 0; 
    -ms-flex: 0 0 100%; 
    flex: 0 0 100%;
    width: 100%;
    opacity: 1;
    visibility: visible;
}
.slider-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    margin: 20px 0 25px;
}
.slider-nav button {
    background: none;
    border: 1px solid #7d84e3;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #7d84e3;
}
.slider-nav button:hover {
    background-color: #7d84e3;
    color: #fff;
    border-color: #7d84e3;
}
.contact {
    background-image: url("../img/section-bg-7-69d8cd541f0c0-1.webp");
    background-size: cover;
    background-position: left center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    padding: 0;
    padding: 0 0 3em;
    overflow: hidden;
}
.contact-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 50px;
    background-color: #ffffffc4;
    border-radius: 16px;
    -webkit-box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
    box-shadow: 0 4px 20px rgb(0 0 0 / 15%);
    padding: 20px;
}
.contact-form {
    padding: 0;
    width: 100%;
}
.contact-info {
    width: 100%;
}
.form-group {
    margin-bottom: 15px;
}
.form-group input, .form-group textarea {
    font-size: 1rem;
    font-weight: 300;
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-top: 5px;
}
.contact-title-inner {
    padding: 0 0 50px;
}
.contact-title-inner h2 {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 500;
    text-align: left;
    padding: 0 0 1em;
}
.contact-title-inner .right {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    text-align: left;
}
.contact-form-title p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    padding: 0 0 30px;
}
.contact-details {
    padding: 0;
}
.contact-details p {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    padding: 0 0 30px;
}
.contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    padding: 0 0 10px;
}
.contact-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}
.contact-text a {
    color: #232325;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    text-decoration: none;
}
.contact-icon .fa-solid, .fas {
    color: #7e83df;
    font-size: 1.1rem;
}
.contact-icon .fa-solid, .fas:hover {
    color: #fff;
}
.social-links {
    padding: 0;
}
.social-links a {
    font-size: 1.3rem;
    color: #7e83df;
    padding: 0 10px 0 0;
}
.social-links p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    padding: 20px 0 10px;
}
.billing-data {
    padding: 1.5em 0 0 0;
}
.billing-data .billing-data-title {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 0 0 5px;
}
.billing-data p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    padding: 0;
}
.form-group label,
.form-checkbox label {
    font-size: 1rem;
    font-weight: 300;
}
.form-group input {
    font-size: 1rem;
    font-weight: 300;
}
.form-group .error-message,
.form-checkbox .error-message {
    font-size: 1rem;
    font-weight: 500;
    color: #c8280c;
}
.contact-form .success-message {
    font-size: 1rem;
    font-weight: 500;
    color: #2f7d00;
    padding: 30px 0 0;
}
.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.form-row .form-group {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.error-message {
    display: none;
}
.success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    color: #134e4a;
}
.form-group.has-error .error-message,
.form-checkbox.has-error .error-message {
    display: block;
}
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #c8280c;
}
.form-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    margin: 25px 0 30px;
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    -moz-appearance: none;
    appearance: none;
    -webkit-appearance: none;
    display: -ms-grid;
    display: grid;
    place-content: center;
    width: 25px;
    height: 25px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin: 0;
}
.form-checkbox input[type="checkbox"]:checked {
    background-color: #69dae3;
    border-color: #69dae3;
}
.form-checkbox input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 120ms -webkit-transform ease-in-out;
    transition: 120ms -webkit-transform ease-in-out;
    -o-transition: 120ms transform ease-in-out;
    transition: 120ms transform ease-in-out;
    transition: 120ms transform ease-in-out, 120ms 
    -webkit-transform ease-in-out;
    -webkit-box-shadow: inset 1em 1em white;
    box-shadow: inset 1em 1em white;
    -webkit-clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.form-checkbox input[type="checkbox"]:checked::before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.form-checkbox input[type="checkbox"]:hover {
    border-color: #7d84e3;
}
.form-checkbox label {
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
}
.footer {
   background-image: linear-gradient(rgba(36, 37, 41, 0.2), rgba(36, 37, 41, 0.2)), 
        url("../img/footer-img-bg-69df5883503ca.webp");
    background-size: cover;
    background-position: left center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 80px 0 35px;
}
.footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 40px;
}
.footer-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}
.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    padding: 0 0 10px;
}
.footer-section p,
.footer-section a {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
}
.footer .social-links {
    padding: 20px 0 0;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding: 30px 15px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
}
.title-header-section {
    padding: 120px 0 35px;
    width: 100%;
    background: -o-linear-gradient(315deg, rgb(130, 144, 229) 0%, rgb(166, 225, 216) 100%);background: linear-gradient(135deg, rgb(130, 144, 229) 0%, rgb(166, 225, 216) 100%);
}
.faq-title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}
.faq-title-column {
    width: 100%;
    text-align: center;
}
.faq-main-title {
    color: #ffffff; 
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    text-transform: none;
}
.faq-section {
    padding: 50px 0;
    background-color: #ffffff;
}
.faq-section .accordion {
    min-height: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.faq-section .accordion-item {
    background: #fff;
    border: none;
}
.faq-section .accordion-header {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Montserrat';
    border-top: 1px solid rgb(36 37 41 / 20%);
    border-bottom: 1px solid rgb(36 37 41 / 20%);
    border-left: 1px solid rgb(36 37 41 / 20%);
    border-right: 1px solid rgb(36 37 41 / 20%);
    border-radius: 6px;
    background: #fff;
    padding: 15px; 
    margin: 0 0 10px;
    color: #202020; 
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    text-transform: none; 
    letter-spacing: 0;
}
.faq-section .accordion-item.active .accordion-header {
    color: #fff;
    background-color: #7d84e3;
}
.faq-section .accordion-item.active .accordion-header .fas.fa-chevron-down {
    color: #fff;
}
.faq-section .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.faq-section .accordion-item.active .accordion-content {
    max-height: 100%;
}
.faq-section .accordion-item.active .accordion-content a {
    color: #879ae4;
}
.faq-section .accordion-content p {
    font-size: 1.1rem;
    padding: 0 15px 30px 15px;
    font-weight: 300;
    line-height: 1.6;
    color: #202020;
    min-height: 1px;
}
.faq-list {
    padding: 0 2em 1em;
}
.faq-list li {
    padding: 0 0 5px;
}
.pricing-section { padding: 80px 0; background: #fff; }
.pricing-tabs { margin-bottom: 50px; }
.tabs-header { 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex; 
    -webkit-box-pack: center; 
    -ms-flex-pack: center; 
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 0; 
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
}
.tab-btn {
    font-family: Montserrat;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: .2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 2px solid #eee;
    background: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 5px 5px 0 0;
}
.tab-btn.active, .tab-btn:hover {
    border-color: #7d84e3;
    background-color: #7d84e3;
    color: #ffffff;
}
.tabs-content h3 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Montserrat';
}
.tab-pane { display: none; animation: fadeIn 0.5s; }
.tab-pane.active { 
    display: block; 
}
.pricing-tabs .tabs-content {
    border: 1px solid #7e84e3;
    border-radius: 8px;
    padding: 1em;
}
.price-list,
.price-list-desktop { 
    list-style: none; 
    padding: 0; 
    margin: 20px 0; 
}
.price-list li {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    font-weight: 300;
    font-family: 'Montserrat';
}
.price-list i,
.price-list-desktop i { 
    color: #28a745; 
    margin-top: 4px; 
}
.pricing-tabs .tabs-content .info-text {
    font-size: 1rem;
    font-style: italic;
}
.price-tag { 
    font-family: 'Montserrat';
    font-size: 1rem;
    font-weight: 400;
    color: #242529;
    margin-top: 25px; 
}
.pricing-tabs .tabs-content p,
.price-list-desktop li {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
}
.pricing-mobile-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.mobile-price-box {
    background: #ffffff;
    border: 2px solid #7d84e3;
    border-radius: 12px;
    padding: 25px;
    margin: 0 0 1em;
    -webkit-box-shadow: 0 4px 6px rgba(0,0,0,0.05);box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.mobile-price-box h2 {
    font-size: 1.3rem;
    color: #242529;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
}
.mobile-price-box p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #242529;
    line-height: 1.6;
    margin-bottom: 15px;
}
.mobile-price-box .info-text {
    font-size: 1rem;
    font-style: italic;
}
.mobile-price-box.highlight {
    border: 2px solid #7d84e3;
    background: #f8fbff;
}
.pricing-footer { 
    background: #f9f9f9; 
    padding: 20px; 
    border-radius: 10px; 
}
.pricing-footer h4 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    padding: 0 0 15px;
}
.pricing-footer p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}
.footer-grid { 
    display: -ms-grid; 
    display: grid; 
    -ms-grid-columns: 1fr; 
    grid-template-columns: 1fr; 
    gap: 20px; 
}
.divider { 
    margin: 50px 0 30px; 
    border: 0; 
    border-top: 1px solid #ddd; 
}
.pricing-footer .disclaimer { 
    font-size: 0.9rem; 
    color: #777; 
    line-height: 1.6; 
}
@keyframes fadeIn { 
    from { opacity: 0; } to { opacity: 1; } 
}
.show-on-mobile { display: block; }
.hide-on-mobile {display: none;}

.privacy-policy {
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    color: #242529;
    line-height: 1.6;
}
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 15px 50px;
}
.policy-section {
    margin-bottom: 35px;
}
.privacy-policy h2 {
    color: #242529;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.2;
    padding: 0 0 15px;
    margin: 0;
    text-transform: none;
}
.privacy-policy p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 15px;
}
.privacy-policy ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}
.privacy-policy li {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 8px;
}
.privacy-policy strong {
    font-weight: 500;
}


/* --- RESPONZIVITA --- */

@media (min-width: 768px) {
    .logo img {
        max-width: 180px;
    }
    .nav-menu a {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
    .nav-menu a:hover {
        color: #007bff;
    }
    .hero-content h1 {
        font-size: 5rem;
        margin-bottom: 40px;
    }
    .hero-container {
        padding: 50px 20px;
    }
    .phone-section .section-text.small {
        padding: 0 0 1em;
    }
    .phone-container {
        -webkit-box-align: start;-ms-flex-align: start;align-items: flex-start;
    }
    .accordion-header {
        padding: 20px;
    }
    .accordion {
        min-height: 400px;
        margin: 20px auto;
    }
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    .features .features-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
        padding: 0;
    }
    .feature-card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .feature-card.left-margin {
        margin-left: 2rem;
    }
    .features-grid {
        padding: 50px 0 0;
    }
    .monitor-section {
        padding: 100px 0 40px;
    }
    .target-title {
        font-size: 2.5rem;
    }
    .stats-title {
        font-size: 2.5rem;
    }
    .stats-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
    }
    .progress-ring {
        width: 175px;
        height: 175px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .gallery-title {
        font-size: 2.5rem;
    }
    .gallery-container {
        padding: 80px 50px 0;
        margin: 0 auto;
    }
    .gallery-grid {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 300px;
        gap: 30px;
    }
    .gallery-item img {
        margin-bottom: 0;
        height: 100%;
    }
    .testimonials-title {
        font-size: 2.5rem;
        padding: 3em 0 1em;
    }
    
    .contact-title-inner h2 {
        font-size: 2.5rem;
        text-align: right;
    }
    .contact-title-inner .right {
        text-align: right;
    }
    .form-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .faq-section {
        padding: 100px 0;
    }
    .faq-section .accordion {
        min-height: 900px;
    }
    .faq-section .accordion-header {
        font-size: 1.2rem;
        font-weight: 300;
        font-family: 'Montserrat';
    }
    .pricing-tabs .tabs-content {
        padding: 2em;
    }
    .footer-grid { 
        -ms-grid-columns: 1fr 1fr; 
        grid-template-columns: 1fr 1fr; 
    }
    .show-on-mobile { display: none; }
    .hide-on-mobile {display: block;}
    
}

@media (min-width: 1024px) {
    .hero{
       background-image: url(../img/hp-img-new-69d66a87ad1a6.webp);
    }
    .nav-menu {
        position: static;
        height: auto;
        width: auto;
        left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 30px;
        background: transparent;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end; 
        -webkit-box-align: center; 
        -ms-flex-align: center; 
        align-items: center;
    }
    .hamburger {
        display: none;
    }
    .monitor-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 50px;
    }
    .phone-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 50px;
    }
    .phone-section {
        padding: 80px 0;
    }
    .target {
        padding: 40px 0;
    }
    .feature-tablet-image {
        display: block;
    }
    .features {
        padding: 0;
    }
    .contact {
        padding: 90px 120px;
    }
    .contact-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 40px;
    }
    .contact-details {
        padding: 0 0 0 3em;
    }
    .social-links {
        padding: 0 0 0 3em;
    }
    .billing-data {
        padding: 1.5em 0 0 3em;
    }
    .contact-form {
        width: 50%;
    }
    .contact-info {
        width: 50%;
    }
    .footer-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .footer-section {
        width: 30%;
    }
    .policy-container {
        padding: 80px 0 50px;
    }
}

@media (min-width: 1200px) {
    .target-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .target-content {
        min-height: 333px;
    }
    .features .feature-tablet-image img {
        max-width: 450px;
    }
    .stats-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 60px;
    }
    .stats-content,
    .stats-grid {
        width: 50%;
    }
    .stats-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: end;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width: 1600px) {
    .monitor-section,
    .contact,
    .hero {
        background-size: 53%;
    }
}
