/* ==============================
   RESET & BASE STYLES
============================== */
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 {
  /* For smooth animations and vibrant look */
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F0F6FA;
  color: #1A273A;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #2468FF;
  text-underline-offset: 2px;
  text-decoration-thickness: 2px;
  transition: color .15s;
}
a:hover, a:focus {
  color: #FF2EA6;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
ul {
  list-style: disc inside;
}
ol {
  list-style: decimal inside;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
}

/* ==============================
   TYPOGRAPHY
============================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #1A273A;
  letter-spacing: -2px;
  margin-bottom: 10px;
  font-weight: 800;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
  line-height: 1.10;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.13;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #2468FF;
}
h4 {
  font-size: 1rem;
}
p, .subheadline, .legal-text {
  font-size: 1.125rem;
  margin-bottom: 18px;
  color: #223355;
}
.subheadline {
  color: #FF2EA6;
  font-weight: 600;
  font-size: 1.18rem;
}
.legal-text {
  font-size: 0.95rem;
  color: #556185;
}
blockquote {
  background: #FFF2FE;
  border-left: 6px solid #FF2EA6;
  padding: 20px 26px;
  margin-bottom: 24px;
  color: #1A273A;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(255,46,166,0.06);
}
.expert-quote span {
  display: block;
  margin-top: 6px;
  color: #73A47B;
  font-size: 1rem;
}

/* ==============================
   HEADER & MAIN NAVIGATION
============================== */
header {
  background: #1A273A;
  width: 100%;
  z-index: 500;
  position: relative;
  box-shadow: 0 1px 12px 0 #1a273a33;
}
header .container {
  padding: 16px 8px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header img {
  height: 42px;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #F0F6FA;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.16s;
  padding: 4px 6px;
  border-radius: 6px;
}
header nav a:hover, header nav a:focus {
  color: #FF2EA6;
  background: #f0f6fa22;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  padding: 12px 30px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #2468FF 65%, #FF2EA6 100%);
  background-color: #2468FF;
  border-radius: 28px;
  box-shadow: 0 5px 16px rgba(36, 104, 255, 0.18);
  cursor: pointer;
  transition: box-shadow 0.17s, background 0.18s, transform 0.14s;
  margin-left: 8px;
}
.cta-button:hover, .cta-button:focus {
  box-shadow: 0 3px 22px #FF2EA6bb;
  background: linear-gradient(90deg, #FF2EA6 60%, #2468FF 100%);
  background-color: #FF2EA6;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* ==============================
   MOBILE NAV MENU & BURGER ICON
============================== */
.mobile-menu-toggle {
  display: none;
  background: #FF2EA6;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  padding: 10px 14px;
  border-radius: 50%;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1201;
  box-shadow: 0 5px 24px #FF2EA633;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #2468FF;
  box-shadow: 0 8px 18px #2468FF44;
  outline: 2px solid #2468FF;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1200;
  background: #1A273A;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.68, -.6, .32, 1.6);
  box-shadow: 4px 0 40px #FF2EA644;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  background: none;
  border: none;
  color: #F0F6FA;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color 0.17s, transform .10s;
  z-index: 1202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FF2EA6;
  transform: rotate(12deg) scale(1.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 16px;
  padding: 0 28px;
}
.mobile-nav a {
  color: #F0F6FA;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: none;
  padding: 16px 0 6px 0;
  display: block;
  border-bottom: 1px solid #25314b;
  width: 100%;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF2EA6;
  background: #f0f6fa10;
}
@media (max-width: 1020px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  header .container {
    padding: 12px 8px 12px 8px;
  }
  header img { height: 36px; }
}

/* ==============================
   FOOTER
============================== */
footer {
  background: #1A273A;
  color: #F0F6FA;
  padding: 38px 0 0 0;
  box-shadow: 0 -2px 12px #1A273a13;
  margin-top: 80px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.footer-content > a img {
  height: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.footer-nav a {
  color: #F0F6FA;
  text-decoration: none;
  font-size: 1rem;
  transition: color .16s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF2EA6;
  text-decoration: underline;
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.social-links img {
  height: 28px;
  width: 28px;
  transition: filter .17s;
  cursor: pointer;
  border-radius: 6px;
}
.social-links img:hover, .social-links img:focus {
  filter: brightness(1.1) drop-shadow(0 0 8px #2468ff99);
  background: #f0f6fa11;
}
.legal-text {
  margin-top: 18px;
  font-size: .99rem;
  color: #BCD8E2;
  text-align: center;
  padding-bottom: 18px;
}
@media (max-width: 820px) {
  .footer-content {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}

/* ==============================
   LAYOUT & SECTIONS
============================== */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px #2468FF14, 0 1px 2px #1A273A05;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.14s;
  padding: 26px 24px 22px 24px;
  min-width: 240px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px #2468FF33, 0 1.5px 2px #FF2EA606;
  transform: translateY(-2px) scale(1.015);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  justify-content: space-between;
  margin-bottom: 10px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #2468FF13;
  padding: 26px 22px 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 220px;
  margin-bottom: 8px;
}
.feature-grid li img {
  height: 38px;
}
.feature-grid li strong {
  font-size: 1.19rem;
  color: #2468FF;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width:900px){
  .feature-grid{gap: 18px;}
  .feature-grid li{min-width: 165px;max-width:100%;}
}
@media (max-width:600px){
  .feature-grid{flex-direction:column;align-items:stretch;}
  .feature-grid li{min-width:100%;}
}

.step-list {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
  font-size: 1.15rem;
}
.process-overview {
  background:#EAF7E7;
  color:#176559;
  border-left:4px solid #73A47B;
  padding:14px 20px;
  border-radius:11px;
  margin-bottom:18px;
  font-weight:600;
}

.step-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.step-cards > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #2468FF11;
  padding: 24px 22px 18px 22px;
  min-width: 230px;
  flex: 1 1 210px;
  transition: box-shadow 0.14s;
  margin-bottom: 8px;
}
.step-cards > div:hover {
  box-shadow: 0 4px 24px #2468FF18;
}
@media (max-width: 600px) {
  .step-cards {
    flex-direction: column;
  }
  .step-cards > div {
    min-width: 100%;
  }
}
.action-tips, .question-list, .values-list, .tips-list, .pre-buy-checklist, .documentation-list, .after-buy-tips {
  margin-bottom: 22px;
  padding-left: 0;
}
.action-tips li, .question-list li, .values-list li, .tips-list li, .pre-buy-checklist li, .documentation-list li, .after-buy-tips li {
  margin-bottom: 10px;
  background: #fcfcfd;
  border-radius: 10px;
  color: #1A273A;
  padding: 7px 16px;
  font-size: 1.07rem;
  border-left: 4px solid #FF2EA6;
  font-family: 'Montserrat', Arial, sans-serif;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
}
.values-list img {
  height: 28px;
}
@media (max-width: 600px) {
  .values-list li {flex-direction:column;align-items:flex-start;gap:4px;}
}

.downloadable-guides, .quick-tips, .useful-links {
  margin-bottom: 18px;
}
.downloadable-guides ul li {
  color: #2468FF;
  font-weight: 600;
  background: none;
  border: none;
}
.quick-tips ul li {
  color: #FF2EA6;
  font-weight: 600;
  background: none;
  border: none;
}
.useful-links ul li {
  color: #73A47B;
  background: none;
  border: none;
  font-weight: 600;
}
.do-dont-list {
  margin-bottom: 20px;
}
.do-dont-list h3 {
  color: #FF2EA6;
}
.do-dont-list ul li {
  margin-bottom: 10px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-highlights {
  margin-top: 14px;
  padding: 15px 17px 12px 17px;
  background: #F0F6FA;
  border-radius: 12px;
  box-shadow: 0 1px 6px #2468FF10;
}
.team-highlights h3 {
  color: #2468FF;
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.team-highlights ul li {
  background: none;
  color: #73A47B;
  border: none;
  font-size: 1rem;
  margin-left: 0;
}

.submit-question-form {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 6px #2468FF10;
  padding: 20px 18px;
  margin-top: 32px;
}
.submit-question-form h3 {
  color: #FF2EA6;
}

.thank-you-message, .next-steps {
  background: #F7E9FB;
  border-radius: 12px;
  padding: 18px 20px;
  color: #1A273A;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.11rem;
}

/* ==============================
   TESTIMONIAL CARDS
============================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 20px 28px;
  background: #fff;
  color: #1A273A;
  border-radius: 18px;
  box-shadow: 0 3px 22px rgba(36,104,255,0.08);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.testimonial-card p {
  color: #1A273A;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
}
.testimonial-meta {
  font-size: 1rem;
  color: #2468FF;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}
.star-rating img {
  height: 21px;
  filter: drop-shadow(0 1px 3px #2468FF11);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 18px 10px;
    min-width: 0;
    max-width: 100%;
  }
}

/* ==============================
   COOKIE CONSENT BANNER & MODAL
============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #1a273a;
  color: #fff;
  padding: 28px 16px 22px 16px;
  box-shadow: 0 -3px 24px #2468FF23;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  animation: cookieBannerBounce 0.7s both;
}
@keyframes cookieBannerBounce {
  0% { transform: translateY(100px); opacity: 0; }
  60% { transform: translateY(-6px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  border: none;
  padding: 10px 22px;
  border-radius: 22px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  font-size: 1rem;
  transition: background .16s, color .14s, box-shadow .19s;
  margin-right: 0;
}
.cookie-btn.accept {
  background: #2468FF;
  color: #fff;
  box-shadow: 0 3px 16px #2468FF40;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FF2EA6;
}
.cookie-btn.reject {
  background: #fff;
  color: #1A273A;
  border: 2px solid #73A47B;
  box-shadow: 0 .6px 6px #73A47B22;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  color: #fff;
  background: #ff2ea6;
  border-color: #ff2ea6;
}
.cookie-btn.settings {
  background: #F0F6FA;
  color: #2468FF;
  border: 2px solid #2468FF;
  box-shadow: 0 .5px 6px #2468FF11;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #2468FF;
  color: #fff;
}

/* Cookie Modal Popup */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2510;
  background: rgba(26,39,58, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeModalBg 0.21s;
}
@keyframes fadeModalBg{
  from{opacity:0;} to{opacity:1;}
}
.cookie-modal-content {
  background: #fff;
  color: #1A273A;
  padding: 36px 28px;
  border-radius: 17px;
  box-shadow: 0 12px 48px #FF2EA633, 0 1.5px 3px #2468FF08;
  max-width: 390px;
  width: 93vw;
  animation: cookieModalIn 0.45s cubic-bezier(.68, -.6, .32, 1.6);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieModalIn{
  0%{transform:translateY(-80px);opacity:0;}
  65%{transform:translateY(17px);}
  100%{transform:translateY(0);opacity:1;}
}
.cookie-modal-content h3 {
  color: #FF2EA6;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-preference-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0F6FA;
  border-radius: 10px;
  padding: 13px 16px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 18px;
  background: #73A47B;
  position: relative;
  cursor: pointer;
  margin-left: 7px;
  transition: background .2s;
  display: flex;
  align-items: center;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .21s cubic-bezier(.68, -.6, .32, 1.6);
}
.cookie-toggle input:checked + .slider {
  transform: translateX(22px);
  background: #2468FF;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #2468FF;
  font-size: 1.7rem;
  align-self: flex-end;
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FF2EA6;
}
@media (max-width: 600px) {
  .cookie-modal-content { padding: 24px 3vw; }
  .cookie-modal-close { right: 4vw; }
}

/* ==============================
   FORMS, BUTTONS & MICROACTIONS
============================== */
button, .cta-button {
  cursor: pointer;
  outline: none;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
}
button:focus, .cta-button:focus {
  outline: 2px solid #2468FF;
}

input[type="text"], input[type="email"], input[type="password"], textarea {
  border: 2px solid #2468FF40;
  border-radius: 7px;
  padding: 11px 14px;
  font-size: 1rem;
  transition: border .13s, box-shadow .15s;
  margin-bottom: 16px;
  background: #fff;
  color: #1A273A;
  font-family: 'Open Sans', Arial, sans-serif;
}
input:focus, textarea:focus {
  border: 2px solid #2468FF;
  outline: none;
}

/* ==============================
   RESPONSIVE RULES & FLEXBOX PATTERNS
============================== */
@media (max-width:900px){
  .container { max-width:97vw; }
  .content-wrapper { max-width: 97vw; }
}
@media (max-width: 800px) {
  h1 {font-size:2.2rem;}
  h2 {font-size:1.5rem;}
  .footer-content {gap:18px;}
  section, .section { padding: 28px 6vw; }
}
@media (max-width: 600px) {
  h1 {font-size:1.5rem;}
  h2 {font-size:1.13rem;}
  .section, section { padding: 22px 6px; }
  .container { padding: 0 3px; }
  .card, .feature-grid li, .step-cards > div, .testimonial-card {padding:14px 7px;}
  .cookie-consent-banner {font-size:0.99rem;padding:15px 6px;}
}

/* ==============================
   ANIMATIONS & MICRO-INTERACTIONS
============================== */
.card, .cta-button, .testimonial-card, .feature-grid li, .step-cards > div {
  transition: box-shadow .16s cubic-bezier(.27,.79,.75,1.02), transform 0.18s cubic-bezier(.57,.47,.9,1.21);
}
.cta-button:active, .cookie-btn:active {
  transform:scale(0.97);
}

/* ==============================
   HIGH CONTRAST FOR CRITICAL SECTIONS
============================== */
.testimonial-card, .testimonial-card p { color: #1A273A; background: #fff; }

/* ==============================
   Z-INDEX LAYERING
============================== */
header { z-index: 500; }
.cookie-consent-banner { z-index: 2500; }
.cookie-modal { z-index: 2510; }
.mobile-menu { z-index: 1202; }
.mobile-menu-toggle { z-index: 1201; }

/* ==============================
   VIBRANT, ENERGETIC ACCENTS
============================== */
::-webkit-scrollbar {
  width: 9px;
  background: #F0F6FA;
}
::-webkit-scrollbar-thumb {
  background: #2468FF;
  border-radius: 9px;
  border: 2px solid #F0F6FA;
}
::-webkit-scrollbar-thumb:hover {
  background: #FF2EA6;
}

/* Make checklists and lists pop with color for energetic feel */
.pre-buy-checklist li, .documentation-list li, .after-buy-tips li {
  color: #FF2EA6;
  background: #FFE6F5;
  border-left: 4px solid #2468FF;
}

/* Focus state for accessibility */
*:focus-visible {
  outline: 2.5px dashed #FF2EA6 !important;
  outline-offset: 1px;
}

/* ============ END =========== */
