/* === RESET & BASE === */
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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  background: #fff;
  color: #262A31;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: background 0.2s,color 0.2s,box-shadow 0.2s;
}

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #184E77;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}

p, li, span, small, strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #262A31;
}

strong {
  font-weight: 700;
}
small {
  font-size: 0.95em;
  color: #555E6C;
}

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

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

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

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: #F2F2F2;
  box-shadow: 0 8px 24px rgba(24,78,119, 0.07), 0 1.5px 6px rgba(73,160,120,0.03);
  border-radius: 18px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 540px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 2px solid #184E77;
  box-shadow: 0 2px 6px 0 rgba(24,78,119,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
/* Primary navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 5px 2px;
  color: #184E77;
  position: relative;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #49A078;
}

.cta-btn {
  display: inline-block;
  background: #49A078;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 14px 34px;
  border-radius: 36px;
  border: none;
  box-shadow: 0 2px 18px rgba(73,160,120,0.11);
  letter-spacing: 0.02em;
  margin-left: 24px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.15s, transform 0.15s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #184E77;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 28px rgba(24,78,119,0.14);
}

.mobile-menu-toggle {
  display: none;
  margin-left: 24px;
  background: #184E77;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.12s, color 0.12s, box-shadow 0.13s;
  box-shadow: 0 2px 12px rgba(24,78,119,0.09);
}
.mobile-menu-toggle:focus {
  outline: 2px solid #49A078;
}
/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #184E77;
  color: #fff;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(73,160,120,0.18);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 32px 0 36px;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.13s, border-bottom 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #49A078;
  border-bottom: 2px solid #49A078;
}
/* Hide navigation main on small screens */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  header .container {
    height: 72px;
  }
  .logo img {
    width: 110px;
    height: auto;
  }
  .mobile-nav {
    padding: 48px 18px 0 18px;
  }
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(90deg,#184E77 80%,#49A078 120%);
  color: #fff;
  padding: 68px 0 54px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
  max-width: 700px;
  width: 100%;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero p {
  color: #f2f2f2;
  font-size: 1.25rem;
}
.hero .cta-btn {
  background: #49A078;
  color: #fff;
  margin-top: 16px;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #fff;
  color: #184E77;
}

/* === FEATURES BLOCKS === */
.features {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper > h2 {
  color: #184E77;
  margin-bottom: 24px;
}
.features ul, .features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 32px;
  justify-content: flex-start;
}
.features ul li, .features .feature-grid li {
  background: #fff;
  border: 2.5px solid #49A078;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(73,160,120,.13);
  padding: 32px 24px 30px 24px;
  min-width: 220px;
  max-width: 265px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.08rem;
  transition: border 0.16s, box-shadow 0.16s, transform 0.15s;
}
.features ul li img, .features .feature-grid li img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.features ul li:hover, .features .feature-grid li:hover {
  border-color: #184E77;
  box-shadow: 0 8px 28px rgba(24,78,119,0.10);
  transform: translateY(-4px) scale(1.04);
}
.features ul li strong,
.features .feature-grid li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.18rem;
  color: #184E77;
}

/* === INDUSTRY / SERVICE SECTIONS === */
.service-list, .industry-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.service-item, .industry-item {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 265px;
  background: #fff;
  border-radius: 15px;
  border: 2px solid #F2F2F2;
  box-shadow: 0 2px 18px rgba(24,78,119,0.07);
  padding: 30px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: border 0.15s, box-shadow 0.15s, transform 0.15s;
}
.service-item img, .industry-item img {
  width: 40px;
  height: 40px;
}
.service-item:hover, .industry-item:hover {
  border: 2.5px solid #49A078;
  box-shadow: 0 8px 26px rgba(73,160,120,0.11);
  transform: translateY(-3px) scale(1.04);
}

/* === CARD / CASE STUDY === */
.case-study-summary {
  background: #fff;
  border-left: 9px solid #49A078;
  padding: 24px 28px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(24,78,119,0.04);
}

/* === CTA SECTION === */
.cta-section {
  margin-bottom: 0;
  padding: 60px 0 60px 0;
  background: #49A078;
  color: #fff;
  text-align: center;
}
.cta-section .content-wrapper {
  align-items: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2.15rem;
}
.cta-section p {
  color: #f2f2f2;
  font-size: 1.17rem;
}
.cta-section .cta-btn {
  background: #fff;
  color: #184E77;
  margin-top: 22px;
  box-shadow: 0 4px 24px rgba(255,255,255,0.13)
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: #184E77;
  color: #fff;
}

/* === TESTIMONIALS === */
.testimonials {
  background: #f2f2f2;
  padding: 50px 0 50px 0;
}
.testimonials .content-wrapper > h2 {
  color: #184E77;
}
.testimonial-card {
  background: #fff;
  border: 2.5px solid #49A078;
  box-shadow: 0 7px 20px rgba(24,78,119,0.13);
  color: #262A31;
  font-size: 1.12rem;
  margin-bottom: 24px;
  transition: border 0.18s, box-shadow 0.17s, transform 0.14s;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #184E77;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 13px;
}
.testimonial-card span {
  color: #49A078;
  font-weight: 700;
  text-align: right;
  font-size: 1.02rem;
}
.testimonial-card:hover {
  border-color: #184E77;
  box-shadow: 0 12px 28px rgba(24,78,119,0.17);
  transform: translateY(-2px) scale(1.02);
}

/* === ABOUT/DETAIL/INFO === */
.about-overview, .about-detail, .about-innovation, .about-case-studies, .about-location, .privacy-policy, .cookie-policy, .terms-section, .rodo-info, .services-summary, .contact-details {
  background: #fff;
  border-radius: 16px;
  padding: 40px 0;
  margin-bottom: 60px;
}
.about-overview h2,
.about-detail h2,
.services-summary h2,
.privacy-policy h1,
.cookie-policy h1,
.terms-section h1,
.contact-details h2,
.about-innovation h2 {
  color: #184E77;
}
.contact-info-note {
  background: #F2F2F2;
  color: #184E77;
  font-size: 1.08rem;
  border-radius: 9px;
  padding: 22px 20px;
  margin-top: 20px;
}

/* === MAP / EMBED === */
.map-embed {
  border-radius: 12px;
  background: #f2f2f2;
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-size: 1.05rem;
  color: #184E77;
}

/* === FOOTER === */
footer {
  background: #184E77;
  color: #fff;
  padding: 0 0 0 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 45px 0 18px 0;
  border-bottom: 1.5px solid #284B71;
}
.footer-main img {
  height: 40px;
}
.footer-nav, .footer-utility {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-utility a {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-utility a:hover {
  color: #49A078;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.02rem;
  margin-bottom: 5px;
}
.footer-social {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  background: #49A078;
  padding: 10px;
  border-radius: 50%;
  transition: background 0.14s, transform 0.13s;
}
.footer-social a:hover {
  background: #fff;
  transform:scale(1.08);
}
.footer-social img {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  padding: 14px 0 8px 0;
  text-align: center;
  font-size: 0.95rem;
  color: #F2F2F2;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #fff;
  border-top: 3px solid #49A078;
  box-shadow: 0 -2px 16px rgba(24,78,119,.06);
  z-index: 3300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 26px 16px 22px 16px;
  font-size: 1.09rem;
  animation: fadeInCookie 0.6s;
}
@keyframes fadeInCookie {
  from { opacity:0; transform:translateY(50px);} to { opacity:1; transform:translateY(0); }
}
.cookie-banner p {
  color: #184E77;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0 10px 0 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: #49A078;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 9px 22px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(73,160,120,0.05);
  transition: background 0.12s, color 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #184E77;
}
.cookie-banner .cookie-settings-btn {
  background: #184E77;
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #fff;
  color: #184E77;
  border: 1.5px solid #184E77;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,78,119,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3400;
  animation: fadeInCookieModal 0.4s;
}
@keyframes fadeInCookieModal { from { opacity: 0;} to {opacity:1;} }
.cookie-modal-inner {
  background: #fff;
  border-radius: 22px;
  max-width: 430px;
  width: 94vw;
  padding: 32px 32px 30px 32px;
  box-shadow: 0 7px 38px rgba(24,78,119,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-inner h2 {
  font-size: 1.26rem;
  margin-bottom: 5px;
  color: #184E77;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-category label {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 10px;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #49A078;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  background: #49A078;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 9px 22px;
}
.cookie-modal-actions button.secondary {
  background: #184E77;
  color: #fff;
}
.cookie-modal-actions button:hover {
  background: #184E77;
}
.cookie-modal-actions button.secondary:hover {
  background: #fff;
  color: #184E77;
  border: 1.5px solid #184E77;
}

/* === FORM ELEMENTS === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 16px;
  border: 2px solid #49A078;
  border-radius: 11px;
  background: #fff;
  color: #262A31;
  margin-bottom: 16px;
  transition: border 0.18s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 2.5px solid #184E77;
  box-shadow: 0 3px 12px rgba(24,78,119,0.10);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  color: #184E77;
  font-weight: 700;
}

/* === TYPOGRAPHY / FLOW === */
p + p, p + ul, ul + p, ul + ul, .content-wrapper > * + * {
  margin-top: 10px;
}
ul, ol {
  margin-left: 16px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .footer-main { gap: 24px; }
}
@media (max-width: 900px) {
  .footer-main, .card-container, .content-grid, .service-list, .industry-list, .features ul, .features .feature-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .service-item, .industry-item, .features ul li, .features .feature-grid li {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  h1 {font-size: 2rem;} h2 {font-size: 1.45rem;} .hero {padding:40px 0 32px;}
  .footer-main {flex-direction: column; align-items: flex-start; gap:16px;}
  .section {padding:32px 8px;margin-bottom:40px;}
  .features {padding: 28px 0;}
  .testimonials {padding:30px 0;}
  .cta-section {padding:32px 0;}
  .about-overview, .about-detail, .about-innovation, .about-case-studies, .about-location, .privacy-policy, .cookie-policy, .terms-section, .rodo-info, .services-summary, .contact-details {
    padding:24px 0;
    margin-bottom:32px;
  }
  .content-wrapper, .cta-section .content-wrapper {gap: 14px;}
  .text-image-section { flex-direction: column; gap: 18px; }
  .testimonial-card {padding: 20px 12px;}
  .footer-social {margin-top: 10px;}
}
@media (max-width: 540px) {
  .hero {padding:28px 0 18px;}
  .section, .about-overview, .about-detail, .about-innovation, .about-case-studies, .about-location, .privacy-policy, .cookie-policy, .terms-section, .rodo-info, .services-summary, .contact-details {
    padding:12px 0;
  }
  .footer-main {
    gap: 12px;
    padding:24px 0 8px 0;
  }
  .footer-contact p {font-size:0.98rem;}
}

/* === MICRO-INTERACTIONS === */
a, button, .cta-btn, .main-nav a, .footer-nav a, .footer-utility a, .mobile-nav a, .footer-social a, .service-item, .industry-item, .testimonial-card {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, border 0.14s, transform 0.15s;
}

/* === GEOMETRIC SHAPES & BOLD — Modern Bold Style === */
h1, h2, h3 {
  text-transform: none;
}
h2 {
  border-left: 8px solid #49A078;
  padding-left: 16px;
}
.features ul li, .features .feature-grid li {
  border-radius: 18px 6px 18px 6px;
}
.service-item, .industry-item {
  border-radius: 15px 3px 11px 11px;
}
.cta-section, .footer-main {
  border-radius: 0;
}

/* === Utility Classes === */
.hide {
  display: none !important;
}

/* === Override autofill color === */
input:-webkit-autofill {
  box-shadow: 0 0 0 30px #fff inset;
}

/* === END === */
