/* RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F6F7FB;
  color: #232870;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #232870;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(0.7, 0, 0.3, 1);
}
a:hover, a:focus {
  color: #FF9900;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 1px solid #E0E2EF;
  font-family: 'Roboto', Arial, sans-serif;
}
th {
  background: #edeffa;
  font-weight: 700;
  letter-spacing: 0.02em;
}

display,
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #232870;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.section h1,
.section h2,
.section h3 {
  margin-top: 0;
}
p {
  margin-bottom: 14px;
}

/* FLEX CONTAINER UTILITIES */
.container {
  width: 100%;
  max-width: 1080px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35, 40, 112, 0.06), 0 0.5px 1.5px rgba(35, 40, 112, 0.02);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px 22px;
  border: 2.5px solid #E0E2EF;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(35,40,112,0.15);
  border-color: #FF9900;
  z-index: 1;
}
.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 {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35,40,112,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 24px 16px 24px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 410px;
  color: #222444;
  border: 2px solid #edeffa;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  border-color: #FF9900;
  box-shadow: 0 4px 20px rgba(255,153,0,0.09);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F6F7FB;
  border-radius: 24px;
  box-shadow: 0 2px 6px rgba(35,40,112,0.04);
}

/* BUTTONS */
.cta,
button,
input[type='submit'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 32px;
  border: none;
  letter-spacing: 0.05em;
  background: #FF9900;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 1.5px 6px rgba(255,153,0,0.08);
  transition: background 0.17s, box-shadow 0.18s, color 0.15s;
}
.cta:hover, .cta:focus,
button:hover, button:focus,
input[type='submit']:hover, input[type='submit']:focus {
  background: #232870;
  color: #fff;
  box-shadow: 0 6px 18px rgba(35,40,112,0.13);
  outline: none;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 4px solid #FF9900;
  box-shadow: 0 2px 12px rgba(35,40,112,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header a img {
  height: 38px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
}
header nav a {
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 7px;
  transition: color 0.18s, background 0.13s;
}
header nav a.cta {
  background: #FF9900;
  color: #fff;
  border-radius: 25px;
  padding: 10px 22px;
  font-weight: 700;
  margin-left: 8px;
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #232870;
  color: #fff;
}
header nav a:hover,
header nav a:focus {
  color: #FF9900;
  background: #edeffa;
}
.mobile-menu-toggle {
  display: none;
  background: #232870;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 5px 16px;
  transition: background 0.15s, box-shadow 0.18s;
  outline: none;
  cursor: pointer;
  margin-left: 20px;
}
.mobile-menu-toggle:hover {
  background: #FF9900;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #232870;
  color: #fff;
  display: flex;
  flex-direction: column;
  z-index: 99;
  transform: translateX(100vw);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.7,0,0.3,1),
    opacity 0.26s cubic-bezier(0.7,0,0.3,1),
    visibility 0s linear 0.34s;
}
.mobile-menu.active {
  transform: translateX(0vw);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.37s cubic-bezier(0.69,0.01,0.21,1),
    opacity 0.33s cubic-bezier(0.69,0.01,0.21,1),
    visibility 0s;
}
.mobile-menu-close {
  background: #FF9900;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 36px 0 0;
  border-radius: 30px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 999;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #fff;
  color: #232870;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 35px;
}
.mobile-nav a {
  font-size: 1.45rem;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 7px;
  transition: background 0.17s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF9900;
  color: #fff;
}

@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
  }
  header nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header nav a {
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 56px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .section {
    padding: 28px 6vw;
    margin-bottom: 38px;
    border-radius: 14px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 100%;
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 16px 2vw;
    margin-bottom: 32px;
  }
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  h3 {
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 12px 6px 10px 6px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .content-wrapper,
  .card-container {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .feature-item {
    flex-direction: column;
    gap: 10px;
  }
}

/* HERO SECTIONS (with geometric accent) */
section:first-of-type {
  background: #edeffa;
  border-radius: 24px;
  box-shadow: none;
  border-left: 10px solid #FF9900;
  position: relative;
  overflow: hidden;
}
section:first-of-type .container::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: #23287011;
  border-radius: 18% 49% 44% 36% / 44% 13% 45% 34%;
  z-index: 0;
}
section:first-of-type .content-wrapper {
  position: relative;
  z-index: 2;
}

/* LISTS & CONTENT ULs */
.content-wrapper ul li,
.content-wrapper ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.7;
}
.content-wrapper ul li:before {
  content: '';
  width: 16px;
  height: 16px;
  background: #FF9900;
  border-radius: 40% 18% 44% 32% / 44% 30% 35% 34%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
  opacity: 0.16;
}
.content-wrapper ul li strong {
  color: #232870;
}
/* ULs with emojis: don't show geometric marker */
.content-wrapper ul li:has(strong):has(span),
.content-wrapper ul li:has(😉), .content-wrapper ul li:has(🚀), .content-wrapper ul li:has(🤖), .content-wrapper ul li:has(🔒), .content-wrapper ul li:has(📲) {
  padding-left: 0;
}

/* TABLES (for quick comparison) */
table {
  background: #FFFFFF;
  border-radius: 15px;
  margin: 16px 0;
  box-shadow: 0 1.5px 10px rgba(35,40,112,0.04);
  overflow: auto;
}
th, td {
  border-bottom: 1.5px solid #E0E2EF;
}
@media (max-width: 600px) {
  table, th, td {
    font-size: 13px;
  }
}

/* FOOTER */
footer {
  margin-top: 44px;
  background: #232870;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 32px 0 0 0;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  width: 100%;
}
footer nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 1.01rem;
}
footer nav a {
  color: #E0E2EF;
  transition: color 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a:hover,footer nav a:focus {
  color: #FF9900;
}
footer .text-section {
  margin-top: 18px;
  font-size: 0.97rem;
  color: #E0E2EF;
  width: 100%;
  text-align: center;
}
footer .text-section address {
  font-style: normal;
  margin-top: 10px;
  color: #D6D9EF;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
footer .text-section img {
  height: 1.12em;
  vertical-align: text-bottom;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  footer .container {
    gap: 8px;
  }
}

/* NEWSLETTER & CTA CARD */
.section .cta {
  margin-top: 18px;
  align-self: flex-start;
}

/* ACCESSIBILITY/HELPER CLASSES */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #232870;
  color: #fff;
  z-index: 200;
  box-shadow: 0 -4px 28px rgba(35,40,112,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 22px 18px 19px 18px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  transition: transform 0.33s cubic-bezier(0.68,0.02,0.29,1), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  background: #FF9900;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 17px;
  border-radius: 22px;
  font-size: 0.99rem;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.16s, color 0.14s;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: #232870;
  border: 1.5px solid #FF9900;
}
.cookie-banner button.cookie-settings {
  background: #edeffa;
  color: #232870;
  border: 1.5px solid #A2A7DE;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #232870;
  color: #fff;
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: #FF9900;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 10px 6vw 14px 6vw;
  }
  .cookie-banner .cookie-btn-group {
    justify-content: center;
    gap: 9px;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,40,112,0.55);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.29s;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #232870;
  border-radius: 18px;
  padding: 32px 32px 22px 32px;
  box-shadow: 0 8px 60px rgba(35,40,112,0.12);
  min-width: 330px;
  max-width: 94vw;
  position: relative;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.36s cubic-bezier(0.7,0,0.3,1);
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cookie-modal h2 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}
.cookie-modal .cookie-setting-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #E0E2EF;
  position: relative;
}
.cookie-modal .cookie-setting-item:last-child {
  border-bottom: 0;
}
.cookie-modal .cookie-setting-label {
  font-weight: 600;
  font-family: 'Montserrat', Arial;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal .cookie-switch {
  margin-left: auto;
  position: relative;
}
.cookie-modal .cookie-switch input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
}
.cookie-modal .switch-slider {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 19px;
  background: #edeffa;
  border-radius: 19px;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-modal .switch-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 13px;
  height: 13px;
  background: #232870;
  border-radius: 50%;
  transition: transform 0.22s;
}
.cookie-modal .cookie-switch input[type=checkbox]:checked + .switch-slider:before {
  transform: translateX(15px);
  background: #FF9900;
}
.cookie-modal .cookie-switch input[type=checkbox]:checked + .switch-slider {
  background: #FFDCAA;
}
.cookie-modal .cookie-switch input[type=checkbox]:disabled + .switch-slider {
  background: #eef0fa;
  opacity: 0.6;
}
.cookie-modal .cookie-setting-desc {
  font-size: 0.98rem;
  color: #6268ac;
  margin-left: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  border-radius: 24px;
  border: none;
  background: #232870;
  color: #fff;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal button.light {
  background: #edeffa;
  color: #232870;
  border: 1.7px solid #FF9900;
}
.cookie-modal button.light:hover, .cookie-modal button.light:focus {
  background: #FF9900;
  color: #fff;
}
.cookie-modal button:hover {
  background: #FF9900;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: #edeffa;
  color: #232870;
  border: none;
  font-size: 1.2rem;
  width: 32px; height: 32px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .modal-close:hover {
  background: #FF9900;
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 8vw 12px 8vw;
    min-width: unset;
  }
}

/* ANIMATION HELPERS */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeinup 0.6s forwards cubic-bezier(0.7,0,0.29,1);
}
@keyframes fadeinup {
  to {
    opacity: 1;
    transform: none;
  }
}

/* GEOMETRIC SHAPES/DECOR */
.geometric-accent {
  width: 62px; height: 62px;
  background: #FF9900;
  clip-path: polygon(0 26%, 63% 0, 100% 63%, 36% 100%);
  position: absolute; top: -31px; right: -31px; opacity: 0.17;
  z-index: 1;
}

/* MISC */
::-webkit-input-placeholder { color: #A2A7DE; }
::-moz-placeholder { color: #A2A7DE; }
:-ms-input-placeholder { color: #A2A7DE; }
::placeholder { color: #A2A7DE; }

/* Ensure min spacing (no overlap) for all possible content containers */
.card, .testimonial-card, .content-wrapper > *, .card-container > *, .content-grid > * {
  margin-bottom: 20px;
}

/* ENSURE CONTRAST ON TESTIMONIALS */
.testimonial-card p {
  color: #232870;
}

/* --- END --- */