/* --- CSS RESET & NORMALIZE --- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #131B23;
  color: #F4F7FA;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.2em;
}
a {
  color: #91C43A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F7FA;
  font-weight: 700;
}

h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
p, li { font-size: 1rem; color: #E3EAF2; }
strong { color: #fff; }

@media (min-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  h3 { font-size: 1.5rem; }
  p, li { font-size: 1.125rem; }
}

/* --- SPACING & CONTAINER --- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 20px;
}

.text-section {
  max-width: 760px;
}

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #192839;
  border-radius: 16px;
  box-shadow: 0 2px 18px 2px rgba(53,180,230,0.07), 0 8px 34px 0 rgba(36,92,139,0.11);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 38px 6px rgba(145,196,58,0.18), 0 16px 46px 2px rgba(36,92,139,0.18);
  transform: translateY(-4px) scale(1.02);
  border-color: #91C43A;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.feature, .service {
  background: #1E3246;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(36,92,139,0.10);
  padding: 28px 20px;
  min-width: 230px;
  flex: 1 1 220px;
  transition: box-shadow 0.25s, border-color 0.25s;
  border: 1.5px solid transparent;
  margin-bottom: 20px;
}
.feature img {
  width: 48px; height: 48px; margin-bottom: 12px;
}
.feature:hover, .service:hover {
  border-color: #91C43A;
  box-shadow: 0 8px 38px 4px rgba(145,196,58,0.10), 0 8px 22px 0 rgba(36,92,139,0.16);
}

.services-list {
  gap: 24px;
  margin-bottom: 24px;
}
.service h3 a {
  color: #F4F7FA;
  letter-spacing: -0.04em;
  transition: color 0.15s;
}
.service h3 a:hover {
  color: #91C43A;
}

.service-card {
  background: #18253A;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 28px 22px;
  box-shadow: 0 1px 8px 0 rgba(36,92,139,0.11);
  border: 1.5px solid transparent;
  transition: box-shadow 0.22s, border-color 0.2s;
}
.service-card:hover {
  border-color: #91C43A;
  box-shadow: 0 10px 30px 6px rgba(145,196,58,0.13);
}
.service-card span {
  color: #91C43A;
  font-size: 1rem;
  margin-left: 8px;
  font-weight: 500;
}

ol, ul {
  margin-bottom: 16px;
  line-height: 1.7;
  margin-left: 22px;
}
li + li {margin-top: 8px;}
ol {
  list-style: decimal inside;
}
ul {
  list-style: disc inside;
}


/* --- HERO --- */
.hero {
  position: relative;
  padding: 64px 0 54px 0;
  background: linear-gradient(120deg, #255D8B 70%, #131B23 100%);
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  box-shadow: 0 2px 32px 0 rgba(36,92,139,0.20);
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 24px #000B19;
}
.hero p {
  color: #B6CDE8;
  font-size: 1.18rem;
  margin-bottom: 32px;
}
.hero .btn {
  margin-top: 10px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 14px 36px;
  border: none;
  border-radius: 100px;
  background: #192839;
  color: #91C43A;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.07em;
  margin-right: 12px;
  margin-bottom: 6px;
  box-shadow: 0 1px 5px rgba(36,92,139,0.07);
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.24s, transform 0.17s;
}
.btn.primary {
  background: #91C43A;
  color: #192839;
  box-shadow: 0 2px 8px 2px rgba(145,196,58,0.14);
}
.btn.primary:hover, .btn.primary:focus {
  background: #255D8B;
  color: #fff;
  box-shadow: 0 4px 32px 8px rgba(36,92,139,0.16);
}
.btn:hover, .btn:focus {
  background: #255D8B;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 3px 18px 2px rgba(36,92,139,0.19);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #111822;
  z-index: 99;
  box-shadow: 0 2px 18px 0 rgba(36,92,139,0.11);
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 45px;
  width: auto;
  margin-right: 22px;
}
.main-nav {
  display: flex;
  gap: 24px;
  flex: 2;
  margin-left: 30px;
  align-items: center;
}
.main-nav a {
  color: #E3EAF2;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  transition: background 0.13s, color 0.14s;
}
.main-nav a.active, .main-nav a:hover, .main-nav a:focus {
  background: #255D8B;
  color: #91C43A;
}
.header .btn {
  margin-left: auto;
}

.mobile-menu-toggle {
  display: inline-flex;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border: none;
  background: #91C43A;
  color: #161D25;
  border-radius: 50%;
  margin-left: 22px;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.15s, outline 0.12s;
  z-index: 200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #255D8B;
  color: #fff;
  outline: 2px solid #255D8B;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,27,35,0.98);
  z-index: 2150;
  flex-direction: column;
  padding: 0 0 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.23s, transform 0.23s cubic-bezier(.72,0,.45,1.12);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  margin: 24px 24px 16px auto;
  font-size: 2.3rem;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, color 0.13s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #91C43A;
  color: #192839;
}
.mobile-nav {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  background: #192839;
  border-radius: 16px;
  padding: 16px 36px;
  margin-bottom: 6px;
  width: 80vw;
  max-width: 400px;
  text-align: center;
  transition: background 0.12s, color 0.13s, transform 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #255D8B;
  color: #91C43A;
  transform: scale(1.04);
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none!important;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F7FA;
  color: #192839;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(36,92,139,0.08);
  padding: 20px 28px;
  margin-bottom: 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  position: relative;
  min-width: 220px;
}
.testimonial-card blockquote {
  color: #18253A !important;
  border-left: 4px solid #91C43A;
  margin-right: 14px;
  padding-left: 16px;
  font-style: italic;
  font-size: 1.1em;
}
.testimonial-card p {
  color: #18253A !important;
  margin-top: 0;
  font-size: 1em;
}
.testimonial-card strong {
  color: #255D8B;
}

/* --- TABLES (eg. comparison) --- */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 18px 0 22px 0;
  background: #18253A;
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  padding: 16px 8px;
  text-align: left;
  color: #F4F7FA;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
th {
  background: #255D8B;
  font-family: 'Montserrat', Arial, sans-serif;
}
tr:nth-child(even) {
  background: #1E3246;
}
tr:nth-child(odd) {
  background: #18253A;
}

/* --- ACCORDION (Dotace page) --- */
.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion-item {
  background: #18253A;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 2px 6px 0 rgba(36,92,139,0.08);
  margin-bottom: 8px;
  border: 1.5px solid transparent;
  transition: border-color 0.18s;
}
.accordion-item h3 {
  font-size: 1.18rem;
  color: #91C43A;
  margin-bottom: 8px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}
.accordion-item.open, .accordion-item:focus-within {
  border-color: #91C43A;
  box-shadow: 0 6px 24px 0 rgba(145,196,58,0.07);
}
.accordion-item div {
  color: #E3EAF2;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
  transition: max-height 0.18s cubic-bezier(.62,0,.33,1.15);
}

/* --- FOOTER --- */
footer {
  background: #111822;
  color: #E3EAF2;
  padding: 38px 0 12px 0;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #91C43A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 12px;
  padding: 8px 14px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover {
  background: #255D8B;
  color: #fff;
}
.footer-brand {
  color: #B6CDE8;
  font-size: 1rem;
  margin-top: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* --- FORMS / MODALS (cookie settings etc.) --- */
input[type="checkbox"], input[type="radio"] {
  accent-color: #91C43A;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 2090;
  background: #192839;
  color: #F4F7FA;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 16px 17px 16px;
  box-shadow: 0 -2px 18px 3px rgba(36,92,139,0.09);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0; transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .btn,
.cookie-banner button {
  padding: 10.5px 22px;
  margin: 0 8px 0 0;
  font-size: 0.98rem;
  border-radius: 64px;
  background: #255D8B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-weight: 600;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .btn.primary {
  background: #91C43A;
  color: #192839;
}
.cookie-banner .btn.primary:focus,
.cookie-banner .btn.primary:hover {
  background: #fff;
  color: #255D8B;
}
.cookie-banner .btn:focus,
.cookie-banner .btn:hover {
  background: #192839;
  color: #91C43A;
}
.cookie-banner p {
  color: #E3EAF2;
  margin: 0 18px 0 0;
  font-size: 1rem;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -60%) scale(0.92);
  z-index: 3010;
  background: #131B23;
  border-radius: 22px;
  color: #F4F7FA;
  min-width: 295px;
  max-width: 96vw;
  width: 410px;
  box-shadow: 0 14px 64px 4px rgba(36,92,139,0.16);
  padding: 34px 30px 30px 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.27s cubic-bezier(.65,0,.33,1.1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1.001);
}
.cookie-modal h2 {
  color: #91C43A;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 1.3rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: #F4F7FA;
}
.cookie-modal .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .btn, .cookie-modal button {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 36px;
}
.cookie-modal .btn.primary {
  background: #91C43A;
  color: #131B23;
}
.cookie-modal .btn.primary:hover, .cookie-modal .btn.primary:focus {
  background: #255D8B;
  color: #fff;
}
.cookie-modal .btn {
  background: #255D8B;
  color: #fff;
}
.cookie-modal .btn:hover, .cookie-modal .btn:focus {
  background: #91C43A;
  color: #131B23;
}
.cookie-modal .close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  color: #F4F7FA;
  border: none;
  font-size: 1.8rem;
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.14s, color 0.11s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: #18253A;
  color: #91C43A;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .features-grid, .services-list, .card-container, .card-grid, .footer-nav {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .main-nav {
    display: none !important;
  }
}
@media (max-width: 768px) {
  body {font-size: 0.99rem;}
  .container {
    padding: 0 8px;
  }
  .section {
    margin-bottom: 36px;
    padding: 26px 8px;
  }
  .hero {
    padding: 32px 0 22px 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
  .card {
    padding: 20px 10px;
    margin-bottom: 16px;
    border-radius: 8px;
  }
  .feature, .service, .service-card {
    padding: 14px 10px;
    min-width: 0;
    border-radius: 8px;
  }
  .content-wrapper {
    gap: 16px;
    margin-bottom: 12px;
  }
  .footer-brand, .footer-nav a {
    font-size: 0.98rem;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px;
    border-radius: 8px;
  }
  .hero h1 {font-size: 1.37rem;}
  h2 {font-size: 1.12rem;}
  h3 {font-size: 1.02rem;}
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    margin-left: 8px;
    width: 38px;height: 38px;
    font-size: 1.6rem;
  }
}
@media (max-width: 500px) {
  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
  }
  th, td {
    padding: 10px 3.2vw;
    font-size: 1rem;
  }
}

/* --- MICROINTERACTIONS & ANIMATION --- */
.btn, .main-nav a, .footer-nav a, .mobile-nav a, .mobile-menu-toggle, .mobile-menu-close, .service, .feature, .card {
  transition: background 0.2s, color 0.17s, box-shadow 0.20s, transform 0.13s, border-color 0.19s;
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar {
  width: 14px;
  background: #131B23;
}
::-webkit-scrollbar-thumb {
  background: #255D8B;
  border-radius: 12px;
  border: 3px solid #131B23;
}
::-webkit-scrollbar-thumb:hover {
  background: #91C43A;
}

/* --- VISUAL FOCUS --- */
a:focus, button:focus, .btn:focus, input:focus {
  outline: 2px solid #91C43A;
  outline-offset: 2px;
}

/* --- VISUAL FUTURISTIC EFFECTS (authentic neon) --- */
.btn.primary, .main-nav a.active, .footer-nav a:hover {
  box-shadow: 0 0 8px 0 #91C43A80;
  text-shadow: 0 0 6px #fff2, 0 0 8px #91C43A44;
}
.card, .feature, .service-card, .testimonial-card {
  box-shadow: 0 0 0 0 #fff8, 0 4px 32px 2px #255D8B11, 0 0 18px 1px #91C43A22;
}
.card:hover, .feature:hover, .service-card:hover {
  box-shadow: 0 0 24px 2px #91C43A44, 0 8px 38px 8px #255D8B22;
}

/* --- ALIGNMENTS (MANDATORY PATTERNS) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- END OF STYLE.CSS --- */
