/* =============================================
   CSS RESET & BASE NORMALIZATION (Mobile First)
   ============================================= */
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: #f6f8fa;
  color: #223144;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #223144;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #60B1D8;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}
button {
  cursor: pointer;
}

/* =============================================
   BRAND TYPOGRAPHY HIERARCHY
   ============================================= */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #223144;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #223144;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #223144;
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1.125rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
p, li {
  font-size: 1rem;
  color: #223144;
}
strong {
  font-weight: 600;
}
.text-section ul, .text-section ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* =============================================
   LAYOUT CONTAINERS
   ============================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(34,49,68,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e4e8ec;
  box-shadow: 0 3px 16px 0 rgba(34,49,68,0.02);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.logo {
  margin-right: 24px;
  display: flex;
  align-items: center;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 5px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  color: #223144;
}
header nav a:hover,
header nav a:focus {
  background: #eef4fa;
  color: #60B1D8;
}
.btn-primary {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #60B1D8;
  color: #fff;
  border-radius: 24px;
  padding: 12px 30px;
  box-shadow: 0 2px 8px rgba(34,49,68,0.06);
  transition: background 0.23s, color 0.23s, box-shadow 0.23s;
  border: none;
  margin-left: 12px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #223144;
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,49,68,0.14);
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  color: #223144;
  width: 44px;
  height: 44px;
  transition: background 0.15s;
  margin-left: 8px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eef4fa;
}
.mobile-menu {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,49,68,0.90);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-105vw);
  transition: transform 0.38s cubic-bezier(0.6, 0.2, 0.1, 1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 20px 0 0 20px;
  align-self: flex-start;
  border: none;
  transition: color 0.18s;
  z-index: 10;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #60B1D8;
}
.mobile-nav {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 17px;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 7px;
  min-width: 160px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #60B1D8;
  color: #fff;
}

/* Hide main nav and show mobile toggle on mobile */
@media (max-width: 900px) {
  header nav,
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Cookie Consent Banner (fixed bottom) */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #223144;
  color: #fff;
  box-shadow: 0 -2px 16px rgba(34,49,68,0.10);
  padding: 18px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  transition: transform 0.35s;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-message {
  font-size: 1rem;
  margin-bottom: 0;
  color: #fff;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Cookie buttons */
.cookie-btn {
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  background: #60B1D8;
  color: #fff;
  transition: background 0.19s, color 0.19s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #19a2d7;
  color: #fff;
}
.cookie-btn.settings {
  background: #eef4fa;
  color: #223144;
  border: 1px solid #60B1D8;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #d4e8f4;
}
.cookie-btn.reject {
  background: #fff;
  color: #223144;
  border: 1px solid #60B1D8;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #f6f8fa;
}

/* Cookie Preferences Modal (fullscreen overlay flex) */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1300;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,49,68,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 410px;
  width: 92vw;
  padding: 30px 22px 22px 22px;
  box-shadow: 0 6px 40px rgba(34,49,68,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  color: #223144;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #60B1D8;
  width: 18px;
  height: 18px;
}
.cookie-category.essential label {
  font-weight: 700;
  color: #223144;
  opacity: 0.87;
}
.cookie-category label {
  font-weight: 500;
  margin-left: 0.25em;
  color: #223144;
}
.cookie-modal-close {
  position: absolute;
  right: 11px;
  top: 10px;
  background: none;
  color: #223144;
  font-size: 1.4rem;
  border: none;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #60B1D8;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  width: 100%;
  background: #f6f8fa;
  padding: 50px 0 16px 0;
  margin-bottom: 44px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  padding: 18px 0;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.17rem;
  margin-bottom: 22px;
}

/* CTA Section */
.cta {
  background: #223144;
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px rgba(34,49,68,0.10);
  padding: 40px 20px;
}
.cta h2,
.cta p {
  color: #fff;
}
.cta .btn-primary {
  background: #60B1D8;
  color: #fff;
  margin-top: 18px;
}
.cta .btn-primary:hover,
.cta .btn-primary:focus {
  background: #fff;
  color: #223144;
}

/* =============================================
   FEATURE/CARD/LISTS STYLES
   ============================================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(34,49,68,0.07);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 350px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.2s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 28px rgba(96,177,216,0.14);
}
.feature-grid li img {
  width: 44px;
  height: 44px;
  margin-bottom: 9px;
}
.feature-grid h3 {
  font-size: 1.12rem;
  margin: 0 0 7px 0;
  color: #223144;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1px 6px rgba(34,49,68,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 24px 0;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(34,49,68,0.06);
  padding: 28px 16px 16px 16px;
  flex: 1 1 280px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 5px 32px rgba(96,177,216,0.15);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.solutions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 8px 0 0 0;
}
.solutions-list > div {
  flex: 1 1 240px;
  min-width: 220px;
  background: #f6f8fa;
  border-radius: 12px;
  padding: 18px 20px 15px 20px;
  box-shadow: 0 1px 6px rgba(34,49,68,0.04);
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(34,49,68,0.11);
  border-radius: 16px;
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-card p {
  color: #223144;
  font-size: 1.09rem;
  flex: 1 1 0;
}
.testimonial-card strong {
  min-width: 120px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #223144;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
}
.stats-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0 0;
  padding: 0;
}
.stats-highlights li {
  background: #eef4fa;
  border-radius: 8px;
  padding: 13px 18px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #223144;
  font-size: 1.07rem;
}

/* =============================================
   TEXT-IMAGE AND CONTENT GRIDS
   ============================================= */
.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;
}
.text-image-section > * {
  flex: 1 1 200px;
  min-width: 180px;
}

/* FAQ, Support info, Contact details */
.text-section {
  background: #f6f8fa;
  border-radius: 12px;
  padding: 28px 22px;
  margin-bottom: 32px;
}
.text-section ul li {
  margin-bottom: 8px;
  color: #223144;
}
.text-section ul li strong {
  display: inline-block;
  min-width: 44px;
}
.text-section h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #fff;
  border-top: 1px solid #e4e8ec;
  margin-top: 60px;
  width: 100%;
  padding: 32px 0 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #223144;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.92;
  transition: color 0.15s, opacity 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #60B1D8;
  opacity: 1;
}
footer .contact-info {
  color: #223144;
  font-size: 0.96rem;
  opacity: 0.78;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* =============================================
   UTILITIES (SPACING CONSISTENCY)
   ============================================= */
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-60 { margin-bottom: 60px; }
.pt-16 { padding-top: 16px; }
.pt-32 { padding-top: 32px; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Icons in lists (Address/Phones) */
.text-section ul li img,
.content-wrapper ul li img {
  width: 1.25em;
  height: 1.25em;
  margin-right: 7px;
  vertical-align: -2px;
}

/* =============================================
   RESPONSIVE DESIGN (Mobile First)
   ============================================= */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    height: 54px;
  }
  .hero {
    padding-top: 32px;
    margin-bottom: 28px;
  }
  .section, .cta {
    padding: 22px 7px;
    margin-bottom: 32px;
    border-radius: 11px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li {
    max-width: 100vw;
  }
  .card-container, .solutions-list, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .solutions-list > div {
    min-width: 0;
    padding: 13px 9px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 10px;
    font-size: 0.99rem;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
  }
  .text-section {
    padding: 16px 7px;
    margin-bottom: 20px;
    border-radius: 8px;
  }
  .stats-highlights {
    flex-direction: column;
    gap: 8px;
  }
  .cta {
    border-radius: 10px;
    padding: 18px 7px;
    margin-bottom: 28px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 414px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.1rem; }
  .btn-primary, .cookie-btn { padding: 10px 15px; font-size: 0.98rem; }
  .hero {
    padding-top: 22px;
    margin-bottom: 14px;
  }
}

/* =============================================
   MICRO-INTERACTIONS & ANIMATIONS
   ============================================= */
.btn-primary,
.cookie-btn,
.card,
.feature-grid li,
.mobile-menu-toggle,
.mobile-menu-close,
input[type="checkbox"] {
  transition: background 0.22s, color 0.22s, box-shadow 0.20s, border 0.20s;
}
.card:active, .feature-grid li:active {
  box-shadow: 0 2px 8px rgba(96,177,216,0.09);
}
/* Subtle card hover effect */
.card:hover, .feature-grid li:hover, .solutions-list > div:hover {
  box-shadow: 0 7px 26px 0 rgba(34,49,68,0.14);
}
/* Button press effect */
.btn-primary:active,
.cookie-btn:active {
  box-shadow: 0 1px 4px rgba(34,49,68,0.11);
}

/* =============================================
   MISC/HELPER CLASSES
   ============================================= */
.hidden { display: none !important; }

/* Remove webkit autofill bg */
input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: #223144 !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Accessibility: focus states for all clickable elements */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus {
  outline: 2px solid #60B1D8;
  outline-offset: 2px;
}

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