/* ==== 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FBFBFA;
  color: #2E3241;
  box-sizing: border-box;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
ul, ol {
  list-style: none;
}

/* ==== SOFT PASTEL COLOR VARIABLES ==== */
:root {
  --brand-primary: #20427A;
  --brand-secondary: #4FC3A1;
  --brand-accent: #F7F7F7;
  --pastel-pink: #F6CFDA;
  --pastel-blue: #CCE3F6;
  --pastel-mint: #D3F2EA;
  --pastel-lavender: #E2D8F6;
  --pastel-yellow: #FFF8E5;
  --pastel-shadow: 0 4px 24px rgba(80, 98, 140, 0.08);
}

/* ==== TYPOGRAPHY ==== */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  color: var(--brand-primary);
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: #385572;
  margin-bottom: 13px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #62749B;
  margin-bottom: 8px;
}
p, li, ul, ol, a, span, label, input, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2E3241;
}
p {
  margin-bottom: 16px;
  line-height: 1.7;
}
strong {
  font-weight: bold;
  color: var(--brand-primary);
}

/* ==== GLOBAL LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: var(--pastel-shadow);
  background: var(--pastel-yellow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(125, 170, 192, 0.09);
  position: relative;
  padding: 32px 24px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(125, 170, 192, 0.14);
  transform: translateY(-4px) scale(1.02);
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 3px 18px rgba(170, 171, 228, 0.09);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 420px;
  border: 1px solid var(--pastel-blue);
  transition: box-shadow 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(164, 184, 224, 0.16);
  background: var(--pastel-lavender);
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: #26355E;
  margin-bottom: 0;
}
.testimonial-name {
  color: var(--brand-secondary);
  font-weight: 600;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--pastel-blue);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(140, 179, 222, 0.07);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.22s;
}
.feature-item:hover {
  background: var(--pastel-mint);
  box-shadow: 0 8px 36px rgba(99, 207, 184, 0.13);
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
}

/* ==== HERO ==== */
.hero {
  background: linear-gradient(132deg, var(--pastel-mint) 0%, var(--pastel-lavender) 80%, var(--pastel-blue) 100%);
  padding: 64px 20px 48px 20px;
  border-radius: 0 0 48px 48px;
  margin-bottom: 60px;
}
.hero h1 {
  color: var(--brand-primary);
  font-weight: 800;
  line-height: 1.13;
}
.hero p {
  color: #43657A;
  max-width: 680px;
}

/* ==== CTA ==== */
.cta, .cta.primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--brand-secondary) 30%, var(--pastel-pink) 120%);
  color: #fff;
  border-radius: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.19rem;
  padding: 14px 38px;
  margin-top: 8px;
  margin-bottom: 0;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 12px rgba(79, 195, 161, 0.13);
  transition: background 0.19s, color 0.19s, box-shadow 0.22s, transform 0.18s;
  border: none;
  outline: none;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--brand-primary);
  color: var(--brand-secondary);
  box-shadow: 0 9px 30px rgba(32, 66, 122, 0.14);
  transform: translateY(-2px) scale(1.025);
}
.cta:active {
  box-shadow: 0 2px 6px rgba(32,66,122, 0.14);
}

/* ==== HEADER ==== */
header {
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(151, 192, 218, 0.06);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #385572;
  font-size: 1.05rem;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.14s, color 0.13s;
}
header nav a:hover,
header nav a:focus {
  background: var(--brand-secondary);
  color: #fff;
}
header .cta.primary {
  margin-left: 30px;
}
header img {
  height: 48px;
  width: auto;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  margin-left: 18px;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-secondary);
  color: #fff;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu {
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(115deg, var(--pastel-blue) 65%, var(--brand-secondary) 100%);
  box-shadow: 0 12px 54px rgba(79,195,161,.12);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px;
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.65,0,.23,1), opacity 0.24s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: var(--brand-primary);
  border: none;
  margin-bottom: 24px;
  align-self: flex-end;
  transition: background 0.17s, color 0.17s;
  border-radius: 8px;
  padding: 6px 12px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  padding: 12px 28px;
  color: var(--brand-primary);
  background: transparent;
  border-radius: 16px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-primary);
  color: #fff;
}

@media (max-width: 1050px) {
  .container {
    max-width: 95vw;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 800px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.55rem; }
  .hero { padding-top: 30px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    padding: 24px 12px;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 38px;
  }
  .hero {
    padding: 32px 7px 24px 7px;
    border-radius: 0 0 32px 32px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: unset;
    max-width: unset;
  }
  .footer-links, .footer-social {
    gap: 10px !important;
  }
}

/* ==== CARDS & BADGES ==== */
.trust-badges {
  display: flex;
  gap: 18px;
  align-items: center;
}
.trust-badges img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(64,81,133,0.13));
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
}
.client-logos img {
  height: 34px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.12s;
}
.client-logos img:hover {
  opacity: 1;
}

/* ==== BLOG LIST ==== */
.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 38px;
}
.blog-list li {
  background: var(--pastel-yellow);
  border-radius: 13px;
  padding: 18px 14px;
  box-shadow: 0 1.5px 9px rgba(217, 192, 234, 0.07);
  transition: background 0.17s, box-shadow 0.16s;
}
.blog-list li:hover {
  background: var(--pastel-blue);
  box-shadow: 0 6px 19px rgba(148, 186, 218, 0.13);
}
.featured-article {
  background: var(--pastel-pink);
  border-left: 6px solid var(--brand-secondary);
  border-radius: 10px;
  padding: 16px 18px 14px 22px;
  margin-bottom: 8px;
  box-shadow: 0 4px 18px rgba(246,207,218,0.09);
}

/* ==== FOOTER ==== */
footer {
  background: #FFF;
  border-top: 2px solid var(--pastel-blue);
  padding: 38px 0 28px 0;
  margin-top: 56px;
  box-shadow: 0 -4px 24px rgba(182, 224, 236, 0.09);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #354B73;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-links a {
  color: #43657A;
  padding: 5px 9px;
  transition: color 0.11s, background 0.11s, border-radius 0.18s;
  border-radius: 9px;
}
.footer-links a:hover {
  background: var(--pastel-mint);
  color: var(--brand-primary);
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social img {
  width: 29px;
  height: 29px;
  filter: grayscale(30%);
  transition: filter 0.16s;
}
.footer-social img:hover {
  filter: grayscale(0%);
}

@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-brand,
  .footer-links,
  .footer-social {
    justify-content: flex-start;
  }
  .footer-links {
    gap: 10px;
  }
}

/* ==== OTHER STYLES - LISTS, BLOCKS, ETC. ==== */
ol, ul {
  margin-left: 20px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 12px;
  padding-left: 0;
}
.about-highlight ul, .values ul, .sector-examples ul {
  background: var(--pastel-yellow);
  border-radius: 11px;
  padding: 12px 17px;
}
.about-highlight ul li strong,
.values ul li strong,
.sector-examples ul li strong {
  color: var(--brand-primary);
}

/* ==== CONTACT BLOCKS ==== */
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--pastel-mint);
  border-radius: 14px;
  box-shadow: 0 2px 11px rgba(111, 188, 190, 0.09);
  padding: 20px 15px;
  gap: 12px;
  min-width: 170px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, background 0.17s;
}
.contact-block img {
  width: 32px;
  height: 32px;
}
.contact-block a {
  color: var(--brand-primary);
  word-break: break-word;
  font-weight: 600;
  transition: color 0.13s, text-decoration 0.13s;
}
.contact-block a:hover {
  color: var(--brand-secondary);
  text-decoration: underline;
}

/* ==== FAQ ==== */
.faq ul, .faq ol {
  background: var(--pastel-yellow);
  padding: 13px 18px;
  border-radius: 10px;
  margin-bottom: 0;
  color: #283046;
}
.faq li {
  margin-bottom: 13px;
}

/* ==== PROCESS BENEFITS & HIGHLIGHTS ==== */
.process-benefits {
  background: var(--pastel-blue);
  border-radius: 10px;
  padding: 16px 13px;
  margin-top: 17px;
  box-shadow: 0 2px 6px rgba(173, 200, 232, 0.07);
}

/* ==== SPECIAL PAGE BACKGROUNDS ==== */
.privacy, .gdpr, .terms, .cookie-policy {
  background: var(--pastel-blue);
  border-radius: 14px;
  padding: 32px 15px;
  margin-bottom: 0;
  box-shadow: var(--pastel-shadow);
}

/* ==== THANK YOU PAGE ==== */
.thank-you {
  background: var(--pastel-mint);
  border-radius: 20px;
  padding: 44px 16px;
  margin-top: 28px;
  box-shadow: 0 6px 26px rgba(91, 203, 189, 0.09);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, var(--pastel-yellow) 85%, var(--pastel-mint) 100%);
  color: #3B4765;
  box-shadow: 0 -7px 30px rgba(111, 191, 205, 0.11);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 15px 15px 15px;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(.71,-0.12,0,1.02), opacity 0.32s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1rem;
  flex: 1 1 250px;
  color: #4B5678;
  margin-bottom: 0;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  background: var(--brand-secondary);
  color: #FFF;
  border-radius: 22px;
  padding: 7px 19px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.14s, color 0.14s;
  margin-right: 0;
}
.cookie-banner .cookie-settings-btn {
  background: var(--brand-primary);
}
.cookie-banner button:hover, .cookie-banner button:focus, .cookie-banner .cookie-settings-btn:hover {
  background: #183869;
  color: #dcfff3;
}
.cookie-banner .reject-btn {
  background: #F6CFDA;
  color: #2E3241;
}
.cookie-banner .reject-btn:hover {
  background: #efb5c9;
  color: #385572;
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2500;
  background: rgba(50,66,120, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 46px rgba(86,105,173,0.16);
  padding: 36px 22px 24px 22px;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  color: var(--brand-primary);
  font-size: 1.8rem;
  border: none;
  border-radius: 7px;
  padding: 4px 8px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--pastel-pink);
  color: var(--brand-secondary);
}
.cookie-modal__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.24rem;
  color: var(--brand-primary);
  margin-bottom: 0;
}
.cookie-modal__desc {
  font-size: 1rem;
  color: #42517c;
}
.cookie-modal__category {
  background: var(--pastel-mint);
  border-radius: 9px;
  padding: 13px 10px 10px 13px;
  margin-bottom: 8px;
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal__category label {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #234070;
  margin: 0 0 0 6px;
}
.cookie-modal__category input[type=checkbox] {
  accent-color: var(--brand-secondary);
  width: 18px; height: 18px;
}
.cookie-modal__category.essential {
  background: var(--pastel-blue);
  font-weight: 600;
  color: #426984;
  border-left: 5px solid var(--brand-primary);
}
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal button {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 20px;
  padding: 7px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: none;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal button:hover {
  background: var(--brand-primary);
  color: #e1fff6;
}

/* ==== SIMPLE ANIMATIONS ==== */
.section, .hero, .card, .feature-item, .testimonial-card, .cookie-banner, .cookie-modal__dialog {
  animation: pastelFadeIn 0.7s cubic-bezier(.55,.19,.21,.74) 0s 1 both;
}
@keyframes pastelFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* ==== REMOVE DEFAULT OUTLINES, ADD CUSTOM ==== */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 1.5px;
  box-shadow: 0 0 0 2px var(--pastel-pink);
}

/* ==== VISUAL MICRO-INTERACTIONS ==== */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, background 0.17s, transform 0.17s;
}
.card:active, .feature-item:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* ==== ACCESSIBILITY ==== */
[aria-hidden="true"] {
  display: none !important;
}

/* ==== UTILITIES ==== */
.hide {
  display: none !important;
}
.flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.gap20 {
  gap: 20px;
}

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