/* =====================
   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;
}

html {
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  background: #f7fafc;
  color: #23496b;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #23496b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8abf47;
}
ul, ol {
  padding-left: 1.1em;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}

/* ============================
   BRAND & VIBRANT_ENERGETIC BASE
   ============================ */
:root {
  --primary: #23496b;
  --secondary: #8abf47;
  --accent: #f7fafc;
  --electric-blue: #1EA7FF;
  --neon-green: #5FFF7B;
  --sun-yellow: #FFE600;
  --danger: #e85640;
  --grey-light: #e5ecf3;
  --grey-dark: #284360;
}

body {
  background: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; color: var(--primary); line-height: 1.1; margin-bottom: 18px; }
h2 { font-size: 2.0rem; color: var(--primary); margin-bottom: 12px; }
h3 { font-size: 1.25rem; color: var(--secondary); font-weight: 800; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; color: var(--grey-dark); font-weight: 700; margin-bottom:8px; }

p, ul, ol { font-size: 1rem; line-height: 1.7; color: var(--primary); margin-bottom: 12px; }

/*========================
  LAYOUT CONTAINERS
========================*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 22px 0 rgba(30,167,255,0.06),
              0 1.5px 7px 0 rgba(36,73,107,0.07);
}

.features-grid, .card-container, .testimonials, .partner-logos, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  margin-bottom: 30px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(30,167,255,0.08),
              0 0.5px 2px 0 rgba(36,73,107,0.08);
  transition: box-shadow 0.24s cubic-bezier(.5,0,.1,1), transform 0.18s;
  padding: 26px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  flex: 1 1 210px;
  z-index: 1;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 36px 0 rgba(30,167,255,0.16),
    0 2px 7px 0 rgba(36,73,107,0.17);
  transform: translateY(-6px) scale(1.03);
}

.content-grid {
  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;
  background: #f7f9fB;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  color: #202f37;
  box-shadow: 0 2px 10px 0 rgba(30,167,255,0.05);
  min-width: 260px;
  max-width: 390px;
  flex: 1 1 260px;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 18px;
  flex-wrap: wrap;
}

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

.usp-list, .icon-list, .service-list {
  list-style: none;
  padding: 0;
}
.usp-list li, .icon-list li, .service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #e5ecf3;
  border-radius: 12px;
  padding: 20px;
  margin: 12px 0 24px 0;
  color: var(--primary);
}

/* ==================================
   HEADER, MAIN NAVIGATION, CTA STYLES
   ==================================*/
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 30;
  box-shadow: 0 3px 22px 0 rgba(30,167,255,0.08);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}
.main-nav a {
  color: var(--primary);
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.main-nav .cta.primary {
  background: var(--electric-blue);
  color: #fff;
  font-size: 1.09rem;
  border-radius: 10px;
  padding: 9px 22px;
  font-weight: 900;
  box-shadow: 0 2px 8px 0 rgba(30,167,255,0.14);
  transition: transform 0.16s, box-shadow 0.2s;
  margin-left: 8px;
  letter-spacing: 0.01em;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.07);
  box-shadow: 0 4px 17px 0 rgba(30, 167, 255, 0.18);
}

/* Hamburger (mobile menu button) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--electric-blue);
  cursor: pointer;
  margin-left: 15px;
  line-height: 1;
  width: 44px; height: 44px;
  border-radius: 6px;
  transition: background 0.16s;
  z-index: 41;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--electric-blue);
  color: #fff;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* === MOBILE MENU === */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 30px;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #142841ee;
  box-shadow: 0 8px 60px 0 rgba(30,167,255,0.27);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.81,.14,.15,1.09);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: var(--neon-green);
  cursor: pointer;
  width: 44px; height: 44px;
  align-self: flex-end;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--neon-green);
  color: #23496b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  padding: 13px 8px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.17s, color 0.17s;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--neon-green);
  color: #142841;
}

/* =================
   HERO SECTIONS
   ================= */
.hero {
  background: linear-gradient( 80deg, #e5ecf3 73%, #ffe60020 100% );
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  box-shadow: 0 16px 80px 0 rgba(36,73,107,0.018);
  min-height: 280px;
  padding: 65px 0 48px 0;
  margin-bottom: 48px;
}
.hero h1 {
  color: var(--electric-blue);
  font-size: 2.7rem;
  font-weight: 950;
  margin-bottom: 18px;
}
.hero p {
  color: var(--secondary);
  font-size: 1.14rem;
  font-weight: 600;
}

/* ===========================
   BUTTONS, CTA
   =========================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 18px;
  font-size: 1.18rem;
  text-align: center;
  box-shadow: 0 4px 18px 0 rgba(30,167,255,0.13);
  cursor: pointer;
  transition: background 0.19s, color 0.17s, transform 0.16s, box-shadow 0.17s;
}
.cta.primary {
  background: var(--electric-blue);
  color: #fff;
  border: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--neon-green);
  color: var(--primary);
  transform: scale(1.04);
}
.cta.secondary {
  background: var(--secondary);
  color: #fff;
  border: none;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--primary);
  color: #fff000;
  transform: scale(1.04);
}

/* =========
   SECTIONS
   ========= */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.features-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(138,191,71,0.07),
              0 1px 3px 0 rgba(30, 167, 255, 0.05);
  flex: 1 1 200px;
  min-width: 220px;
  padding: 24px 18px 19px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow 0.17s, transform 0.15s;
}
.features-grid > div:hover {
  box-shadow: 0 7px 34px 0 rgba(30,167,255,0.16);
  transform: scale(1.03);
}
.features-grid img {
  height: 48px; width: 48px;
  margin-bottom: 10px;
}
.features-grid h3 {
  font-size: 1.17rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 8px;
}
.features-grid p {
  color: #2b5b85;
  font-size: 1rem;
}

/* Testimonial styles */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #1d2230;
  border-left: 7px solid var(--electric-blue);
  font-size: 1.06rem;
  box-shadow: 0 5px 22px 0 rgba(36,73,107,0.09);
  font-style: italic;
  min-height: 94px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.testimonial-card strong {
  font-size: 1.03rem;
  font-weight: 800;
  color: var(--secondary);
  margin-top: 0;
  font-style: normal;
}

/* Icon list (services, USP, contact, etc.) */
.icon-list img,
.usp-list img,
.service-list img,
li img {
  height: 28px; width: 28px; display: inline-block;
  margin-right: 10px;
}

/* ===============
   ABOUT / FEATURES
   =============== */
.usp-list li, .icon-list li {
  background: #e5ecf3;
  border-radius: 7px;
  padding: 11px 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #23496b;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #142841;
  color: #fff;
  padding: 36px 0 16px 0;
  font-size: 1rem;
  box-shadow: 0 -2px 14px 0 rgba(30,167,255,0.03);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
}
.footer-nav, .footer-cta, .footer-info, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-weight: 700;
  margin-right: 9px;
  margin-left: 9px;
}
.footer-nav a:hover { color: var(--neon-green); }
.footer-cta {
  justify-content: center;
  margin-bottom: 3px;
}
.footer-cta .cta.primary {
  font-size: 1.03rem;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 1.1px 3px 0 rgba(138,191,71,0.13);
}
.footer-cta .cta.primary:hover {
  background: var(--electric-blue);
  color: #fff;
}
.footer-info {
  color: #bec5ca;
  font-size: 0.97rem;
  gap: 9px;
}
.footer-info img {
  height: 33px;
  margin: 0 6px 0 0;
}
.footer-social a {
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 37px;
  width: 37px;
  margin: 0 3px;
  transition: background 0.18s, transform 0.14s;
}
.footer-social a img {
  height: 21px; width: 21px;
}
.footer-social a:hover { background: var(--neon-green); transform: scale(1.13); }

/* =============================
   RESPONSIVE DESIGN
   ============================= */
@media (max-width: 1200px) {
  .container { max-width: 1002px; }
  .features-grid > div { min-width: 180px; }
}
@media (max-width: 992px) {
  .container { max-width: 97vw; padding: 0 9vw; }
  .main-nav { display: none; }
  .features-grid, .testimonials, .partner-logos, .content-grid {
    gap: 17px;
  }
  .features-grid > div { min-width: 150px; }
}
@media (max-width: 768px) {
  .section, section { padding: 28px 0; }

  .container { padding: 0 6vw; }

  .hero h1 { font-size: 2.0rem; }
  .hero { padding: 39px 0 25px 0; }

  .features-grid, .testimonials, .partner-logos, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div, .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .testimonial-card {
    font-size: 1.01rem;
    padding: 19px;
  }
  .content-wrapper { gap: 12px; }
  .footer-info { font-size: 0.93rem; flex-direction: column; gap: 7px; }
  .footer-nav, .footer-cta, .footer-social { flex-direction: column; gap: 7px; }
  .footer-social { margin-bottom: 7px; }
  .content-grid, .card-container, .features-grid {
    flex-direction: column;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 17px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.04rem; }
  .section, section { padding: 15px 0 22px 0; margin-bottom: 30px; }
  .container { padding: 0 3.5vw; }
  .cta { font-size: 0.99rem; padding: 11px 18px; }
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
#cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #23496b;
  color: #fff;
  z-index: 1001;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 26px 20px 20px 24px;
  box-shadow: 0 -2px 18px 1px rgba(30,167,255,0.19);
  font-size: 1rem;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  transition: transform 0.3s cubic-bezier(.7,.02,.41,1.04), opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
}
#cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
#cookie-consent-banner .cookie-text {
  flex: 1 1 0%;
  color: #fff;
}
#cookie-consent-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: 22px;
}
#cookie-consent-banner button {
  padding: 9px 20px;
  border: none;
  border-radius: 14px;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  cursor: pointer;
  margin-right: 7px;
  transition: background 0.16s, color 0.13s, transform 0.15s;
}
#cookie-consent-banner .accept {
  background: var(--neon-green);
  color: #23496b;
}
#cookie-consent-banner .accept:hover, #cookie-consent-banner .accept:focus {
  background: var(--electric-blue);
  color: #fff;
  transform: scale(1.06);
}
#cookie-consent-banner .reject {
  background: #fff;
  color: var(--danger);
}
#cookie-consent-banner .reject:hover, #cookie-consent-banner .reject:focus{
  background: var(--danger);
  color: #fff;
  transform: scale(1.05);
}
#cookie-consent-banner .settings {
  background: var(--electric-blue);
  color: #fff;
}
#cookie-consent-banner .settings:hover, #cookie-consent-banner .settings:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.05);
}

@media (max-width: 680px) {
  #cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 19px 6vw 15px 7vw;
    font-size: 0.97rem;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
  #cookie-consent-banner .cookie-actions {
    margin: 0 0 0 0;
  }
  #cookie-consent-banner button {
    margin-bottom: 7px;
  }
}

/* =====================
   COOKIE MODAL
   ===================== */
#cookie-modal {
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(36,73,107, 0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
#cookie-modal .modal-content {
  background: #fff;
  color: #23496b;
  border-radius: 18px;
  padding: 32px 24px;
  max-width: 440px; width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  box-shadow: 0 6px 40px 0 rgba(30,167,255,0.16);
}
#cookie-modal .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 13px;
}
#cookie-modal .modal-title {
  font-size: 1.33rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
#cookie-modal .close-modal {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 2.1rem;
  cursor: pointer;
  transition: background 0.12s, color 0.11s;
  border-radius: 8px;
  width: 44px; height: 44px;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  background: var(--danger);
  color: #fff;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 12px;
}
#cookie-modal .cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  flex: 1 1 0%;
}
#cookie-modal .cookie-category input[type="checkbox"] {
  transform: scale(1.3);
  accent-color: var(--secondary);
  margin-right: 5px;
  outline: 2px solid var(--electric-blue);
}
#cookie-modal .cookie-category input[disabled] {
  accent-color: var(--neon-green);
  opacity: 0.6;
  outline: none;
}
#cookie-modal .cookie-expl {
  font-size: 0.97rem;
  color: #496489;
  margin-bottom: 11px;
}
#cookie-modal .modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 2px;
}
#cookie-modal .modal-actions button {
  padding: 10px 25px;
  border-radius: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.11s, transform 0.13s;
}
#cookie-modal .modal-actions .save {
  background: var(--electric-blue);
  color: #fff;
}
#cookie-modal .modal-actions .save:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.06);
}
#cookie-modal .modal-actions .cancel {
  background: #bec5ca;
  color: var(--primary);
}
#cookie-modal .modal-actions .cancel:hover {
  background: var(--danger);
  color: #fff;
  transform: scale(1.06);
}
@media (max-width: 540px) {
  #cookie-modal .modal-content {
    padding: 19px 6vw;
    min-width: 70vw;
  }
}

/* ===========================
   MISC: FORMS, UTILITY, ETC.
   =========================== */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--electric-blue);
  background: #e5f7ff;
}

::-webkit-input-placeholder { color: #779; }
::-moz-placeholder { color: #779; }
:-ms-input-placeholder { color: #779; }
::placeholder { color: #779; }

hr {
  border:0; border-bottom:1.6px solid #d5e6f7;
  margin:34px 0 28px 0;
}

/* =========================
   PRINT (minimal)
   ========================= */
@media print {
  header, footer, .mobile-menu, #cookie-consent-banner, #cookie-modal { display: none !important; }
  body { background: #fff; color: #000; }
}
