/* 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, 
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;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #213045;
  background: #f7f9fb;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #004261;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #002c41;
  text-decoration: underline;
}
ul,ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}
/* Typography Scale & Headings */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  margin-bottom: 20px;
  color: #004261;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: #004261;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 14px;
  color: #213045;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #004261;
}
p, ul, ol, li, small {
  color: #213045;
  font-size: 1rem;
  margin-bottom: 10px;
}
small {
  font-size: 0.93em;
  color: #547593;
  font-weight: 400;
}
strong {
  font-weight: bold;
  color: #004261;
}
/* Common Spacing Utilities */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 28px 0 rgba(33,64,100,0.07);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
/* NavBar & Header */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,20,40,0.04);
  z-index: 1002;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 18px;
}
header nav > a > img {
  height: 38px;
}
header nav ul {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav ul li {
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #213045;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
header nav ul li a:hover {
  background: #f0f4fa;
  color: #004261;
}
header nav .cta.primary {
  background: #004261;
  color: #fff;
  border-radius: 8px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,66,97,0.09);
  margin-left: 28px;
  transition: background 0.2s, box-shadow 0.2s;
}
header nav .cta.primary:hover {
  background: #002c41;
  color: #FFD700;
  box-shadow: 0 4px 22px rgba(0,66,97,0.16);
}
/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: #004261;
  color: #fff;
  padding: 13px 17px;
  border-radius: 7px;
  font-size: 1.8rem;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 1204;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #012f47;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100%;
  z-index: 1300;
  background: rgba(7,38,65,0.90);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,.27,.4,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #FFD700;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1;
  margin: 23px 38px 7px 0;
  cursor: pointer;
  transition: color 0.2s;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 24px 38px 36px 42px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.12rem;
  padding: 14px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.19s;
}
.mobile-nav a:hover {
  color: #FFD700;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  header nav ul {
    gap: 17px;
  }
  header nav {
    padding: 15px 8px;
  }
}
@media (max-width: 900px) {
  header nav ul, header nav .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  header nav {
    padding: 8px 0 8px 4px;
  }
  .mobile-menu-toggle {
    right: 10px;
    top: 10px;
  }
}
/* Hero Section */
.hero-section {
  background: linear-gradient(107deg, #e9f2fb 0%, #fff 93%);
  padding: 54px 0 48px 0;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 4px 24px 0 rgba(0,66,100,0.05);
}
.hero-section .container,
.hero-section .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.hero-section h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
.hero-section p {
  font-size: 1.13rem;
  max-width: 600px;
  margin-bottom: 24px;
}
.hero-section .cta.primary {
  margin-top: 4px;
}
/* Section Spacing Patterns */
.features-section, .about-section, .services-section, .testimonials-section, .contact-section,
.privacy-policy-section, .about-mission-section, .team-section, .numbers-section, .services-list-section, .process-section, .use-cases-section, .security-features-section, .assurance-section, .cta-section, .contact-info-section, .contact-cta-section, .cookies-policy-section, .rodo-section, .terms-section, .news-list-section, .thankyou-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 28px 0 rgba(33,64,100,0.08);
}
/* Card Containers for Grids */
.card-container, .team-grid, .service-teasers, .use-case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card, .team-grid > div, .service-teasers > div, .use-case-grid > div {
  background: #f7fafd;
  border-radius: 13px;
  box-shadow: 0 2px 15px 0 rgba(0,66,97,0.07);
  padding: 22px 22px 18px 22px;
  flex: 1 1 270px;
  min-width: 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.16s;
}
.card:hover, .team-grid > div:hover, .service-teasers > div:hover, .use-case-grid > div:hover {
  box-shadow: 0 7px 28px 0 rgba(0,66,97,0.12);
  transform: translateY(-3px) scale(1.022);
}
/* Content Grids and Flex Patterns */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
/* Testimonial Cards */
.testimonials-section .content-wrapper {
  gap: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #f1f6fb;
  border-left: 6px solid #004261;
  border-radius: 10px;
  padding: 20px 26px 19px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(0,42,61,0.06);
  transition: box-shadow 0.19s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #1d2633;
}
.testimonial-card small {
  color: #687f99;
  font-size: 0.99rem;
}
.testimonial-card:hover {
  box-shadow: 0 3px 20px 0 rgba(0,42,61,0.12);
}
/* Feature Items */
.features-section ul, .services-list-section ul, .security-features-section ul, .about-mission-section ul, .numbers-section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 0 0 0;
  margin: 17px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-section ul li img, .services-list-section ul li img, .security-features-section ul li img, .contact-info-section ul li img {
  vertical-align: bottom;
  margin-right: 11px;
  height: 23px;
}
.features-section ul li, .services-list-section ul li, .security-features-section ul li, .about-mission-section ul li, .numbers-section ul li {
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #29566d;
  background: #f3f7fa;
  border-radius: 8px;
  padding: 13px 15px;
  box-shadow: 0 1px 6px 0 rgba(0,66,97,0.04);
}
.numbers-section ul li strong {
  font-size: 1.13em;
  color: #004261;
}
.technical-highlights ul {
  gap: 11px !important;
}
.technical-highlights ul li {
  background: #e9f2fb;
  color: #2d4662;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 1.01rem;
}
/* Infographic Placeholder */
.infographic {
  margin: 24px 0 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.infographic img {
  width: 62px;
  height: auto;
}
/* Categories/Tags */
.categories-tags {
  margin-top: 27px;
  font-size: 0.98rem;
  color: #557093;
}
.categories-tags strong {
  color: #004261;
}
/* Footer */
footer {
  background: #002940;
  color: #fff;
  padding: 38px 0 28px 0;
  border-radius: 18px 18px 0 0;
  margin-top: 45px;
  width: 100%;
}
footer > a img {
  height: 30px;
  margin-bottom: 17px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 21px;
  margin-bottom: 12px;
}
footer nav a {
  color: #FFD700;
  font-size: 1.04rem;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #fff;
}
.footer-contact {
  margin-top: 11px;
  color: #e2e5e7;
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.89;
}
.footer-contact a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-contact a:hover {
  color: #fff;
}
@media (max-width: 600px) {
  footer nav {
    flex-direction: column;
    gap: 8px;
  }
}
/* Buttons - CTAs */
.cta, .cta.primary, .cta.secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  border-radius: 8px;
  padding: 13px 29px;
  margin-top: 8px;
  box-shadow: 0 2px 10px rgba(0,66,97,0.07);
  background: #eeeff2;
  color: #004261;
  border: 1.2px solid #004261;
  cursor: pointer;
  transition: background 0.21s, color 0.21s, box-shadow 0.2s;
  text-align: center;
  min-width: 164px;
}
.cta.primary {
  background: #004261;
  color: #fff;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #002c41;
  color: #FFD700;
  box-shadow: 0 4px 22px rgba(0,66,97,0.17);
}
.cta.secondary {
  background: #FFD700;
  color: #004261;
  border: none;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #fff6c8;
  color: #002c41;
  box-shadow: 0 4px 14px #fde88b85;
}
.cta:hover, .cta:focus {
  background: #f4f7fa;
  color: #002c41;
}
/* Contact Info & Map Placeholder */
.contact-info-section ul {
  margin: 22px 0 17px 0;
}
.contact-info-section ul li {
  font-size: 1.1rem;
}
.contact-info-section ul li img {
  min-width: 26px;
  height: 26px;
}
.map-placeholder {
  background: #e9f1fa;
  border-radius: 15px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  width: 100%;
}
.map-placeholder img {
  opacity: 0.62;
  height: 60px;
}
@media (max-width: 1024px) {
  .hero-section, .features-section, .about-section, .services-section, .testimonials-section, .contact-section,
  .privacy-policy-section, .about-mission-section, .team-section, .numbers-section, .services-list-section, .process-section, .use-cases-section, .security-features-section, .assurance-section, .cta-section, .contact-info-section, .contact-cta-section, .cookies-policy-section, .rodo-section, .terms-section, .news-list-section, .thankyou-section {
    padding: 26px 6px;
    border-radius: 13px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 4px;
  }
  h1 {
    font-size: 1.77rem;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 1.42rem;
    margin-bottom: 11px;
  }
  .card, .team-grid > div, .service-teasers > div, .use-case-grid > div {
    min-width: 90%;
    padding: 17px 12px 12px 14px;
  }
  .hero-section {
    padding: 28px 0 23px 0;
    border-radius: 0 0 14px 14px;
  }
  .section {
    padding: 22px 4px;
    border-radius: 10px;
  }
  .map-placeholder {
    height: 95px;
  }
}
/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(33,64,100,0.10);
  padding: 25px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3000;
  gap: 18px;
  border-top: 3px solid #004261;
  animation: cookiebanner-enter 0.6s cubic-bezier(.4, .27, .4, 1);
}
@keyframes cookiebanner-enter {
  from { transform: translateY(100%); opacity: 0.5; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  text-align: center;
  color: #213045;
  font-size: 1.09rem;
}
.cookie-consent-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 5px;
}
.cookie-btn {
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  font-weight: 600;
  min-width: 115px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 7px 0 rgba(0,66,97,0.07);
}
.cookie-btn.accept {
  background: #004261;
  color: #FFD700;
}
.cookie-btn.accept:hover {
  background: #002c41;
  color: #fff;
}
.cookie-btn.reject {
  background: #eeeff2;
  color: #004261;
}
.cookie-btn.reject:hover {
  background: #f3f6fb;
  color: #a32024;
}
.cookie-btn.settings {
  background: #FFD700;
  color: #004261;
}
.cookie-btn.settings:hover {
  background: #fff6c8;
  color: #002c41;
}
/* Cookie Consent Modal (Settings) */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100dvh;
  background: rgba(0,42,61,0.70);
  z-index: 3011;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodal-bg 0.3s;
}
@keyframes cookiemodal-bg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 10px 40px 0 rgba(0,66,97,0.26);
  max-width: 420px;
  min-width: 245px;
  width: 96vw;
  padding: 30px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  animation: cookiemodal-enter 0.38s cubic-bezier(.4, .27, .4, 1);
}
@keyframes cookiemodal-enter {
  from { transform: scale(0.85) translateY(42px); opacity: 0.4; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
  color: #004261;
}
.cookie-modal .cookie-modal-close{
  position: absolute;
  top: 15px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: #004261;
  cursor: pointer;
  transition: color 0.18s;
  line-height: 1;
}
.cookie-modal .cookie-modal-close:hover{
  color: #FFD700;
}
.cookie-categories {
  width: 100%;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 1.01rem;
  color: #004261;
  font-weight: 500;
}
.cookie-category .toggle {
  margin-left: 7px;
  width: 36px;
  height: 18px;
}
.cookie-category .toggle input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.cookie-category .slider {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 18px;
  background: #e0e3e8;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-category .slider:before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 12px; height: 12px;
  background: #004261;
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
}
.cookie-category .toggle input:checked + .slider {
  background: #FFD700;
}
.cookie-category .toggle input:checked + .slider:before {
  background: #FFD700;
  transform: translateX(16px);
}
.cookie-category .toggle input:disabled + .slider {
  background: #c9d3de;
  cursor: not-allowed;
}
.cookie-category .toggle input:disabled + .slider:before {
  background: #7d8e9f;
}
.cookie-category .toggle {
  position: relative;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
}
.cookie-modal .cookie-btn {
  flex: 1 1 0;
  min-width: 80px;
}
/* Hide banner/modal by default (toggle via class in JS) */
.cookie-consent-banner,
.cookie-modal-overlay {
  display: none;
}
.cookie-consent-banner.show {
  display: flex;
}
.cookie-modal-overlay.show {
  display: flex;
}
/* --- Miscellaneous & Mobile Fixes --- */
@media (max-width: 768px) {
  .hero-section .container, .hero-section .content-wrapper {
    gap: 12px;
  }
  .card-container, .team-grid, .service-teasers, .use-case-grid {
    flex-direction: column;
    gap: 20px;
  }
  .news-list-section .content-wrapper article {
    margin-bottom: 27px;
  }
  .cookie-modal {
    padding: 19px 9px 17px 10px;
  }
}

/* --- Animations & Micro-Interactions --- */
.cta, .cta.primary, .cta.secondary, .card, .testimonial-card, .service-teasers > div, .team-grid > div, .use-case-grid > div {
  transition: box-shadow 0.22s, background 0.21s, color 0.19s, transform 0.17s;
}
.cta:active, .cta.primary:active, .cta.secondary:active {
  transform: scale(0.98);
}
.card:active, .service-teasers > div:active, .team-grid > div:active, .use-case-grid > div:active {
  transform: translateY(1.5px) scale(0.99);
}
.testimonial-card:active {
  transform: scale(0.99);
}

/* Utility classes (for JS toggling) */
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.open {
  display: flex !important;
}

/* --- END OF STYLE --- */