/* RESET & BASE STYLES ------------------------------------------------------------------------ */

/* Box sizing reset */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Remove default margins */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A2243;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Link Styles */
a {
  color: #1A2243;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1CB9C2;
  outline: none;
}

ul, ol {
  margin: 0;
  padding-left: 1.4em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin: 0 0 16px 0;
  line-height: 1.2;
  color: #1A2243;
}
h1 { font-size: 2.5rem; letter-spacing: -0.5px; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 500; }
h4, h5, h6 { font-size: 1rem; font-weight: 500; }

p {
  margin: 0 0 20px 0;
  font-size: 1rem;
  color: #1A2243;
}

strong {
  font-weight: 600;
}

blockquote {
  font-style: italic;
  margin: 0 0 8px 0;
  color: #1A2243;
}
cite {
  display: block;
  color: #888;
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* BUTTONS ------------------------------------------------------------------------ */

.cta-btn, .cookie-btn, .cookie-settings-btn, .mobile-menu-toggle, .mobile-menu-close {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #1CB9C2;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 28px;
  margin: 0;
  cursor: pointer;
  outline: none;
  box-shadow: 0 1px 6px 0 rgba(28,185,194,0.12);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover, .cta-btn:focus,
.cookie-btn:hover, .cookie-btn:focus,
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #1A2243;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 16px -2px rgba(28,185,194,0.18);
}

.cookie-btn.reject {
  background: #F1F6F9;
  color: #1A2243;
  border: 1px solid #D8DFE7;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e1e8ee;
  color: #1A2243;
}

/* LAYOUT UTILS ------------------------------------------------------------------------ */

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

.text-section {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 0 10px 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  box-shadow: none;
  border-radius: 18px;
}

/* FLEX CONTAINER PATTERNS ---------------------------------------------------------- */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px -8px rgba(26,34,67,0.08);
  padding: 32px 24px;
  flex: 1 1 320px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px -5px rgba(28,185,194,0.15);
  transform: translateY(-2px) scale(1.01);
}

.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: #F1F6F9;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(49, 64, 107, 0.04);
  margin-bottom: 20px;
  color: #1A2243;
  font-size: 1.1rem;
  min-width: 0;
}

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

/* FEATURE GRID -------------------------------------------------------------------- */

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 200px;
  background: #F8FAFB;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(28,185,194,0.07);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  margin-bottom: 0;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 24px -5px rgba(28,185,194,0.12);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 14px;
}
.feature-grid p {
  font-size: 0.98rem;
  margin-bottom: 0;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.value-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(26,34,67,0.03);
  padding: 24px 18px;
  flex: 1 1 220px;
  min-width: 200px;
  align-items: flex-start;
}

.client-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
}

.map-snippet {
  background: #F1F6F9;
  border-radius: 10px;
  padding: 18px 16px;
  font-size: 1rem;
  color: #1A2243;
  margin-top: 16px;
}

/* HEADER, NAV & FOOTER ------------------------------------------------------------- */

header {
  background: #fff;
  box-shadow: 0 2px 10px -6px rgba(28,185,194,0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1A2243;
  letter-spacing: 0.1em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.15s, color 0.15s;
}
header nav a:hover, header nav a.active {
  color: #1CB9C2;
  border-bottom: 2px solid #1CB9C2;
}
.cta-btn {
  margin-left: 16px;
}
header img {
  height: 34px;
}

footer {
  background: #F1F6F9;
  padding: 36px 0 0 0;
  border-top: 1px solid #D8DFE7;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
footer nav {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  font-size: 0.99rem;
  color: #1A2243;
}
footer nav a:hover {
  color: #1CB9C2;
}
.footer-info {
  font-size: 0.92rem;
  color: #6A768B;
  margin-bottom: 18px;
}

/* SPECIAL ELEMENTS ----------------------------------------------------------------*/

/* Hamburger menu button (mobile) */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #D8DFE7;
  color: #1A2243;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  line-height: 0;
  box-shadow: 0 2px 6px -2px rgba(28,185,194,0.08);
  transition: background 0.15s, color 0.15s;
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 204;
  cursor: pointer;
  padding: 0;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F1F6F9;
}

/* Slide-in mobile menu overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 24px 0 rgba(26,34,67,0.09);
  z-index: 300;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.75,.03,.47,.94);
  padding: 0 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #fff;
  color: #1A2243;
  border: none;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  position: absolute;
  top: 12px;
  right: 16px;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(49, 64, 107, 0.11);
  z-index: 305;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1CB9C2;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 80px 36px 0 36px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #1A2243;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  border-radius: 8px;
  padding: 14px 10px 12px 2px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1F6F9;
  color: #1CB9C2;
}


/* COOKIE CONSENT BANNER ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1.5px solid #e1e8ee;
  box-shadow: 0 -3px 18px -6px rgba(26,34,67,0.12);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  gap: 24px;
  font-size: 1rem;
  flex-wrap: wrap;
  transition: transform 0.28s cubic-bezier(.6,.95,.6,1), opacity 0.15s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  color: #1A2243;
  flex: 1 1 170px;
  min-width: 0;
}
.cookie-banner button {
  margin-right: 8px;
  min-width: 130px;
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}

/* COOKIE SETTINGS MODAL --------------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,34,67,0.23);
  z-index: 410;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.19s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  padding: 32px 24px 24px 24px;
  border-radius: 20px;
  box-shadow: 0 12px 40px -10px rgba(26,34,67,0.13);
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-settings-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-settings-category input[type="checkbox"] {
  accent-color: #1CB9C2;
  width: 20px;
  height: 20px;
}
.cookie-settings-category label {
  font-size: 1rem;
  color: #1A2243;
}
.cookie-modal .cookie-btn {
  width: 100%;
  margin-bottom: 10px;
}
.cookie-modal .cookie-btn:last-child {
  margin-bottom: 0;
}
.cookie-settings-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #1A2243;
  cursor: pointer;
  padding: 2px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
}
.cookie-settings-close:hover {
  background: #F1F6F9;
  color: #1CB9C2;
}

/* GENERAL INTERACTIVE STATES ----------------------------------------------------- */

button:focus, .cta-btn:focus, .mobile-menu-toggle:focus,
.mobile-menu-close:focus, .cookie-btn:focus {
  outline: 2px solid #1CB9C2;
  outline-offset: 2px;
}

/* FORMS (no forms present, just normalize for future-proofing */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #D8DFE7;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  margin-bottom: 16px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1CB9C2;
  outline: none;
}
label {
  font-weight: 500;
  color: #1A2243;
}

/* TYPOGRAPHY SCALE -------------------------------------------------------------- */
.display-1 { font-size: 3rem; font-family: 'Montserrat', 'Roboto', Arial, sans-serif; }
.display-2 { font-size: 2.25rem; font-family: 'Montserrat', 'Roboto', Arial, sans-serif; }
.subtle-text { color: #6A768B; font-size: 0.99rem; }

/* MISC. LIST, ICONS, ETC. ------------------------------------------------------ */
ul > li, ol > li {
  margin-bottom: 14px;
}
li img {
  vertical-align: middle;
  margin-right: 8px;
  width: 24px;
  height: 24px;
}

/* MEDIA QUERIES - RESPONSIVE DESIGN -------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
  .feature-grid, .value-list {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .feature-grid > div, .value-list > div, .card {
    min-width: 180px;
    padding: 22px 8px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 800px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .feature-grid, .value-list {
    gap: 12px;
  }
  .section {
    padding: 22px 6px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 14px 8px;
  }
}

@media (max-width: 768px) {
  header .container {
    min-height: 62px;
    gap: 14px;
    padding: 0 10px;
  }
  header nav {
    display: none !important;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
  }
  .feature-grid,
  .value-list {
    flex-direction: column;
    gap: 16px;
  }
  .client-logos {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 0.97rem;
  }
}

@media (max-width: 500px) {
  .section {
    padding: 16px 2px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
  h1 { font-size: 1.17rem; }
  .feature-grid > div, .value-list > div, .card {
    padding: 10px 3px;
    border-radius: 10px;
  }
  .cookie-modal {
    padding: 16px 6px;
    min-width: 92vw;
  }
}

/* ------------------------------------------ */
/* CUSTOM MICRO-INTERACTIONS/ANIMATIONS ----- */
/* ------------------------------------------ */

.cta-btn, .cookie-btn, .cookie-settings-btn {
  transition: background 0.20s, color 0.20s, box-shadow 0.18s, transform 0.19s;
}

/* Smooth fade-in effect for sections */
.section, .content-wrapper, .feature-grid > div, .value-list > div, .testimonial-card, .card {
  opacity: 0;
  animation: fadeIn 0.9s cubic-bezier(.44,0,.72,1.2) both;
}
.section { animation-delay: 0.05s; }
.content-wrapper { animation-delay: 0.08s; }
.feature-grid > div { animation-delay: 0.14s; }
.value-list > div { animation-delay: 0.2s; }
.testimonial-card { animation-delay: 0.3s; }
.card { animation-delay: 0.19s; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Utility: hide visually for accessibility */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* ------------------------------------------ */
/* END OF STYLES */
