/* ==========================
   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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F5F7FA;
  color: #1C325D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
a {
  color: #00A698;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.79,.01,.15,1);
}
a:hover, a:focus { color: #1C325D; text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin-left: 0; }
table { border-collapse: collapse; width: 100%;}
th, td { text-align: left; padding: 16px 12px; }

/* =============================
   TYPOGRAPHY & GEOMETRIC FONTS
============================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.25; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 16px; font-weight: 700; }
h4 { font-size: 1.125rem; margin-bottom: 12px; }
p, ul, ol { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; margin-bottom: 16px; }
.lead {
  font-size: 1.25rem;
  color: #1C325D;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
strong { font-weight: 700; }

/* ========== COLORS ==========
Brand: #1C325D (primary), #00A698 (secondary), #F5F7FA (accent) 
*/
:root {
  --primary: #1C325D;
  --secondary: #00A698;
  --accent: #F5F7FA;
  --text: #1C325D;
  --bg: #F5F7FA;
  --card: #fff;
  --shadow: 0 4px 14px rgba(28,50,93,0.08), 0 1.5px 5px rgba(0,166,152,0.05);
  --border-radius: 18px;
  --radius-sm: 10px;
  --spc-xs: 8px;
  --spc-sm: 16px;
  --spc-md: 24px;
  --spc-lg: 40px;
  --spc-xl: 60px;
}

/* =============================
   STRUCTURED GEOMETRIC LAYOUTS
============================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: var(--card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--spc-lg) var(--spc-md);
  margin-bottom: var(--spc-xl);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-wrapper.center {
  align-items: center;
  text-align: center;
}

/***** SECTION SPACING *****/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
section:last-child { margin-bottom: 0; }

/***** FLEXBOX UTILITY CLASSES *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--spc-md);
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  transition: transform 0.20s cubic-bezier(.79,.01,.15,1), box-shadow 0.25s cubic-bezier(.79,.01,.15,1);
}
.card:hover { 
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px rgba(28,50,93,0.12), 0 2.5px 9px rgba(0,166,152,0.07);
}
.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;
  background: #F5F7FA;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 5px rgba(28, 50, 93, 0.07);
  border: 1.5px solid #E6EEF5;
  margin-bottom: 20px;
  flex: 1 1 340px;
  color: #212b36;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 260px;
}

/***** HEADER & NAV STRUCTURE *****/
header {
  background: var(--card);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
  padding: 0 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  padding: 10px 0 10px 4px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--secondary);
  color: #fff;
}
header nav a.btn-primary {
  margin-left: 20px;
}
.mobile-menu-toggle {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  padding: 6px 16px 8px 16px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.22s cubic-bezier(.79,.01,.15,1), transform 0.17s;
  z-index: 1010;
  box-shadow: 0 2px 8px rgba(0,166,152,0.08);
  display: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: 0 4px 16px rgba(0,166,152,0.16);
}

/***** BUTTONS *****/
.btn-primary, a.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 13px 34px;
  border-radius: 32px 8px 28px 8px; /* geometric angles */
  box-shadow: 0 3px 12px rgba(0,166,152,0.18);
  cursor: pointer;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: background 0.21s cubic-bezier(.79,.01,.15,1), transform 0.18s, box-shadow .18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 26px rgba(28, 50, 93, 0.15);
}

/***** HERO BANNER *****/
.content-wrapper > h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--primary);
}

/***** FEATURES GRID *****/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: space-between;
}
.features-grid > div {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,166,152,0.09);
  padding: 22px 18px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 270px;
  min-width: 210px;
  text-align: left;
  border-bottom: 4px solid var(--secondary);
  transition: transform 0.16s, box-shadow 0.21s;
  margin-bottom: 10px;
}
.features-grid > div:hover {
  box-shadow: 0 8px 26px rgba(28,50,93,0.12);
  transform: translateY(-3px) scale(1.03);
}
.features-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}

/***** LOGO TRUST BAR *****/
.logo-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  margin-top: 16px;
}
.logo-trust-bar img {
  width: 56px; filter: grayscale(0.3); opacity: 0.94;
  transition: filter 0.15s, opacity 0.18s;
}
.logo-trust-bar img:hover {
  filter: none;
  opacity: 1;
}

/***** FAQ ACCORDION *****/
.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.accordion-faq > div {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(28,50,93,0.09);
  padding: 18px 16px;
  border-left: 5px solid var(--secondary);
}
.accordion-faq > div h3 { margin-bottom: 8px; font-size: 1.12rem; color: var(--primary); }

/***** TABLES *****/
table {
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,166,152,0.10);
  margin-bottom: var(--spc-md);
  min-width: 260px;
  overflow: hidden;
}
thead {
  background: var(--accent);
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.08rem;
  border-bottom: 2px solid #E6EEF5;
}
tbody tr {
  border-bottom: 1px solid #E6EEF5;
}
tbody tr:last-child { border-bottom: none; }
td {
  color: var(--text);
}

/***** PRICING PAGE FEATURES *****/
.pricing-features ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}

/* =============================
    CARDS & GEOMETRIC ELEMENTS
============================== */
.testimonial-card, .testimonial-list > .testimonial-card {
  background: #F5F7FA;
  color: #222;
  border-left: 6px solid var(--secondary);
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px rgba(28,50,93,0.06);
}
.testimonial-card p {
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 4px;
}
.testimonial-author {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}
.star-ratings {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FFD600;
  font-size: 1.25rem;
  margin-left: 12px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

/***** PILLARS & CAROUSEL SHORT *****/
.trust-pillars, .infographic-short, .callout-tips {
  background: var(--accent);
  border-radius: var(--radius-sm);
  min-height: 42px;
  font-size: 1.05rem;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 24px 0 0 0;
  box-shadow: 0 2px 4px rgba(28,50,93,0.07);
}
.trust-pillars p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-size: 1rem;
}

/***** VALUE-LIST *****/
.value-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.08rem;
}
.value-list li { padding-left: 0; }

/***** LEGAL TEXT *****/
.legal-text {
  font-size: 1.02rem;
  color: #26374D;
  line-height: 1.7;
  margin-top: 10px;
}
.legal-text ul { padding-left: 18px; }

/***** MAP EMBED *****/
.map-embed {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 22px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(28,50,93,0.08);
  margin: 16px 0;
}
.map-embed img {
  margin: 8px auto 0 auto;
  width: 90%;
  max-width: 340px;
  border-radius: 7px;
}

/***** LISTS *****/
ul li, ol li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 7px;
}
ul li:before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 13px; height: 13px;
  background: var(--secondary);
  border-radius: 4px;
  display: inline-block;
}
ol li:before {
  content: counter(item) '.';
  color: var(--secondary);
  left: 0; top: 0;
  font-weight: bold;
  position: absolute;
  font-family: 'Montserrat', Arial, sans-serif;
}
ol { counter-reset: item; }
ol li { counter-increment: item; }

/* For nested ul/ol, remove before */
ul ul li:before, ol ol li:before { content: none; }

/***** SERVICE ICONS *****/
.service-icons {
  display: flex;
  gap: 34px;
  margin: 18px 0 20px 0;
  align-items: center;
}
.service-icons img {
  width: 54px;
  height: 54px;
  background: #E6EEF5;
  border-radius: 14px;
  box-shadow: 0 2px 6px rgba(28,50,93,0.11);
  padding: 7px;
  transition: box-shadow 0.21s;
}
.service-icons img:hover {
  box-shadow: 0 8px 24px rgba(0,166,152,0.13);
}

/***** SERVICE DESCRIPTIONS *****/
.service-descriptions p { margin-bottom: 9px; }

/***** FORMS & INPUTS (if any) *****/
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #BED3E6;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 18px;
  width: 100%;
  font-size: 1rem;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  outline: none;
}

/* ============= FOOTER ============= */
footer {
  background: var(--primary);
  color: #F5F7FA;
  padding: 34px 0 28px 0;
  font-size: 1rem;
  box-shadow: 0 -3px 20px rgba(28,50,93,0.07);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.footer-brand img {
  height: 44px;
  width: auto;
}
footer nav {
  display: flex;
  gap: 21px;
  flex-direction: column;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  transition: text-decoration 0.17s, color 0.18s;
}
footer nav a:hover { text-decoration: underline; color: var(--secondary);}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
  justify-content: flex-start;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  vertical-align: middle;
  margin-right: 5px;
  filter: grayscale(1) contrast(0.7);
}

/***** ================
      MOBILE MENU
=================== *****/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(28, 50, 93, 0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.79,.01,.15,1);
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 16px 26px 10px 16px;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 20px 32px 16px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  padding: 16px;
  letter-spacing: 0.01em;
  border-radius: 10px;
  transition: background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #1C325D;
}

/***********
   COOKIE BANNER
************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  padding: 22px 22px 20px 22px;
  background: #fff;
  color: #1C325D;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 3000;
  box-shadow: 0 -5px 24px rgba(28,50,93,0.17);
  border-top: 3.5px solid var(--secondary);
  animation: slide-up-cookie 0.5s cubic-bezier(.79,.01,.15,1);
}
@keyframes slide-up-cookie {
  0% { transform: translateY(120%); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  flex: 1 1 320px;
  font-size: 1rem;
  margin-right: 6px;
}
.cookie-banner__actions {
  display: flex;
  gap: 18px;
}
.cookie-banner__button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 8px 26px 10px 24px;
  padding: 10px 20px;
  margin: 0 2px;
  box-shadow: 0 2px 8px rgba(0,166,152,0.09);
  transition: background 0.18s, transform 0.14s;
}
.cookie-banner__button.settings {
  background: #1C325D;
}
.cookie-banner__button.reject {
  background: #eee;
  color: #1C325D;
  border: 1px solid #D8E2EA;
}
.cookie-banner__button:active, .cookie-banner__button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px; 
}
.cookie-banner__button:hover {
  background: #1C325D;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}
.cookie-banner__button.reject:hover {
  background: #E6EEF5;
  color: var(--secondary);
}

/***** COOKIE MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28,50,93,0.33);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.32s cubic-bezier(.79,.01,.15,1);
}
@keyframes fadeInModal { 0% { opacity:0; } 100% { opacity:1; } }
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(28,50,93,0.19);
  max-width: 400px;
  width: 96vw;
  padding: 40px 34px 28px 34px;
  color: #1C325D;
  position: relative;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 12px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"]:disabled + label {
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 13px;
  background: transparent;
  border: none;
  font-size: 1.45rem;
  color: #00A698;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #1C325D; }

/***** =============
      RESPONSIVE
================ ***/
@media (max-width: 1100px){
  .container { max-width: 98vw; }
  .features-grid { gap: 18px; }
}
@media (max-width: 900px){
  .content-wrapper { padding: 28px 10px; }
  .content-wrapper > h1 { font-size: 2rem; }
  .features-grid { flex-wrap: wrap; justify-content: center; }
  .logo-trust-bar { gap: 22px; }
  footer .container { flex-direction: column; align-items: flex-start; gap: 26px; }
}
@media (max-width: 768px){
  .container, header .container, footer .container { padding: 0 10px; }
  header nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .content-wrapper, .content-wrapper.center {
    padding: 20px 6px;
    gap: 12px;
  }
  .section { padding: 24px 5px; }
  .features-grid, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  .logo-trust-bar { flex-direction: column; gap: 20px; }
  .faq-accordion, .value-list { gap: 10px; }
  .footer-contact { font-size: 0.95rem; }
}
@media (max-width: 580px){
  h1 { font-size:1.55rem; }
  h2 { font-size: 1.2rem; }
  .btn-primary, .cookie-banner__button {
    font-size: 0.99rem;
    padding: 11px 18px;
  }
  .footer-brand img { height: 32px; }
  .cookie-banner__text { font-size:0.99rem; }
  .content-wrapper { padding: 11px 2px; }
  .card, .features-grid > div { min-width: 145px; max-width: unset; padding: 14px 9px; }
  .testimonial-card { padding: 13px 5px; }
}

/* Hide cookie banner and modal initially with .hidden class */
.cookie-banner.hidden, .cookie-modal-overlay.hidden { display: none !important; visibility: hidden !important; }

/***** ANIMATIONS & MICRO INTERACTIONS *****/
.btn-primary, .cookie-banner__button {
  transition: background 0.21s, color 0.13s, transform 0.16s, box-shadow 0.18s;
}
.card, .features-grid > div, .accordion-faq > div, .testimonial-card {
  transition: transform 0.18s, box-shadow 0.21s;
}
.card:active, .features-grid > div:active, .accordion-faq > div:active, .testimonial-card:active {
  transform: scale(0.98);
  box-shadow: 0 2px 5px rgba(28,50,93,0.07);
}

/*********
  PRINT
**********/
@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section { margin: 0 !important; padding: 0 !important; }
  .container, .content-wrapper { box-shadow: none !important; background: none !important; }
}

/* ===========================
      END OF STYLE.CSS
=========================== */
