/* 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;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7fafc;
  color: #244A68;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #244A68;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4A300;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
}

/* FONTS - Vibrant and energetic */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.15;
  color: #244A68;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 2px 8px rgba(36,74,104,0.10);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #D28A00;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #244A68;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #244A68;
  line-height: 1.7;
}
strong {
  color: #F4A300;
  font-weight: 700;
}
.tag,
.category {
  display: inline-block;
  background: #F4A300;
  color: #fff;
  font-size: 0.85rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 0.15em 0.75em;
  border-radius: 1em;
  margin-right: 6px;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(36,74,104,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 12px 32px rgba(244,163,0,0.15), 0 2px 8px rgba(36,74,104,0.13);
  transform: translateY(-4px) scale(1.03);
}
.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;
  background: #fff;
  border-radius: 20px;
  padding: 20px 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(244,163,0,0.07), 0 2px 8px rgba(36,74,104,0.10);
  min-width: 240px;
  max-width: 420px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #244A68;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(36,74,104,0.12), 0 4px 14px rgba(212,138,0,0.10);
  transform: scale(1.03);
}
.star-ratings {
  display: flex;
  gap: 5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* NAVIGATION & HEADER */
header {
  background: #244A68;
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 60;
  box-shadow: 0 2px 12px rgba(36,74,104,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 4px;
  transition: color 0.13s;
}
header nav a:hover, header nav a:focus {
  color: #F4A300;
}
header img {
  height: 46px;
}
.primary-cta {
  display: inline-block;
  padding: 12px 36px;
  background: #F4A300;
  color: #fff !important;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px rgba(244,163,0,0.11);
  transition: background 0.20s, transform 0.18s, box-shadow 0.20s;
}
.primary-cta:hover, .primary-cta:focus {
  background: #D28A00;
  color: #fff;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 6px 18px rgba(244,163,0,0.19);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F4A300;
  font-size: 2rem;
  cursor: pointer;
  z-index: 61;
  padding: 4px 10px;
  margin-left: 16px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #F4A300;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #244A68;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 95vw;
  max-width: 380px;
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.75,0,0.25,1);
  box-shadow: 0 8px 32px rgba(36,74,104,0.16);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F4A300;
  font-size: 2rem;
  align-self: flex-end;
  margin: 18px 18px 0 0;
  cursor: pointer;
  z-index: 151;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  padding: 14px 32px;
  width: 100%;
  border-radius: 0 28px 28px 0;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4A300;
  color: #244A68;
}

@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
    gap: 12px;
  }
  header nav {
    gap: 12px;
  }
}
@media (max-width: 880px) {
  header nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #F4A300 0%, #244A68 100%);
  color: #fff;
  padding: 70px 0 60px 0;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.16);
}
.hero p {
  color: #fff;
  font-size: 1.2rem;
}
.hero .primary-cta {
  margin-top: 14px;
}

/* GENERAL CTA */
.cta, .cta-news, .cta-blog {
  background: #89B2D6;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(36,74,104,0.06);
  margin-bottom: 60px;
}
.cta h2, .cta-news h2, .cta-blog h2 {
  color: #244A68;
}
.cta p, .cta-news p, .cta-blog p {
  color: #244A68;
}
.cta .primary-cta, .cta-news .primary-cta, .cta-blog .primary-cta {
  margin-top: 18px;
}

/* LISTS & FEATURE LISTS */
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 18px;
}
.content-wrapper > ul, .features ul, .platform-features ul, .company-story-timeline ul, .company-values ul, .awards-certifications ul, .certifications ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 8px;
  margin-bottom: 12px;
}
.content-wrapper > ul > li,
.features ul > li,
.platform-features ul > li,
.company-story-timeline ul > li,
.company-values ul > li,
.awards-certifications ul > li,
.certifications ul > li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,74,104,0.07);
  padding: 28px 20px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.content-wrapper > ul > li:hover,
.features ul > li:hover,
.platform-features ul > li:hover {
  box-shadow: 0 6px 20px rgba(244,163,0,0.09), 0 3px 9px rgba(36,74,104,0.10);
  transform: translateY(-2px) scale(1.025);
}
.content-wrapper > ul > li img,
.features ul > li img,
.platform-features ul > li img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}

/* CARDS AND PARTNER LOGOS */
.trusted-by-logos, .partners-logos, .tech-stack-icons {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.trusted-by-logos span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #89B2D6;
  font-weight: 700;
}
.tech-stack-icons img {
  height: 42px;
  filter: grayscale(0.2) brightness(1.1) saturate(1.3);
  transition: filter 0.16s;
}
.tech-stack-icons img:hover {
  filter: none;
}

/* ABOUT PAGE TIMELINE & VALUES */
.company-story-timeline, .company-values, .team-philosophy, .team-bios {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,74,104,0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.company-story-timeline ul, .company-values ul, .team-philosophy ul, .team-bios ul {
  flex-direction: column;
  gap: 8px;
}
.company-story-timeline strong {
  color: #D28A00;
}

/* TESTIMONIALS SPACING */
.testimonials .content-wrapper {
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.testimonials {
  background: #f9fbfd;
  margin-bottom: 60px;
}
.testimonials .testimonial-card {
  margin-right: 10px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
}
.testimonial-card > span {
  font-size: 1rem;
  color: #244A68;
}

/* FOOTER */
footer {
  background: #244A68;
  color: #fff;
  padding: 40px 0 0 0;
  margin-top: 50px;
  box-shadow: 0 -2px 12px rgba(36,74,104,0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 40px;
  justify-content: space-between;
}
footer img {
  height: 42px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #F4A300;
}
.footer-contact p {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 0.98rem;
  gap: 7px;
}
.footer-copy {
  margin-top: 22px;
  font-size: 0.9rem;
  color: #89B2D6;
}

/* SUCCESS & THANK YOU */
.thank-you-section {
  background: #fffbe8;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(244,163,0,0.07);
  padding: 60px 0;
  margin-bottom: 48px;
}
.success-message,
.next-steps {
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #244A68;
}

/* CONTACT PAGE */
.contact-section .container .content-wrapper {
  gap: 30px;
}
.direct-contact-info {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,74,104,0.08);
  padding: 20px 22px;
  gap: 7px;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.opening-hours {
  background: #fffff8;
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 12px;
  font-size: 1.01rem;
  color: #244A68;
}
.office-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.03rem;
  color: #244A68;
  background: #f3f6f9;
  border-radius: 8px;
  padding: 8px 18px;
  margin-top: 8px;
}
.cta .primary-cta {
  margin-top: 20px;
  min-width: 180px;
}

/* NEWS/BLOG/LEGAL PAGES */
.news-list article, .blog-list article {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(36,74,104,0.07);
  margin-bottom: 20px;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-list time, .blog-list .author {
  font-size: 0.98rem;
  color: #778daf;
}
.legal {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(36,74,104,0.07);
  margin-bottom: 50px;
  padding: 40px 24px;
}
.privacy-policy-content ul, .gdpr-content ul, .terms-of-service-content ul, .cookies-policy-content ul {
  flex-direction: column;
  gap: 11px;
}
.privacy-policy-content ul li:before, .gdpr-content ul li:before, .terms-of-service-content ul li:before, .cookies-policy-content ul li:before {
  content: '•';
  color: #F4A300;
  display: inline-block;
  font-size: 1.2em;
  margin-right: 7px;
  vertical-align: middle;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1999;
  background: #244A68;
  color: #fff;
  font-size: 1rem;
  width: 100%;
  padding: 26px 18px 18px 18px;
  box-shadow: 0 -8px 22px rgba(36,74,104,0.18);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.3s;
  will-change: transform;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 230px;
  color: #fff;
  margin-bottom: 9px;
  font-size: 1.02rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 9px 24px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.12s, color 0.12s, transform 0.12s;
}
.cookie-banner .cookie-accept {
  background: #F4A300;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #D28A00;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #244A68;
  border: 1.5px solid #ddd;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #F4A300;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #89B2D6;
  color: #fff;
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(36,74,104,0.60);
  animation: fadeIn 0.2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px 28px 28px;
  max-width: 340px;
  width: 92vw;
  box-shadow: 0 10px 44px rgba(36,74,104,0.19), 0 4px 12px rgba(244,163,0,0.10);
  color: #244A68;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: popIn 0.19s;
}
@keyframes popIn {
  from { transform: scale(0.93); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #F4A300;
  font-size: 2rem;
  cursor: pointer;
  z-index: 11;
}
.cookie-modal h3 {
  color: #244A68;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #244A68;
  font-size: 1rem;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #F4A300;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-accept, .cookie-modal .cookie-reject {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
}

/* ANIMATION HELPERS */
@media (prefers-reduced-motion: no-preference) {
  a, .primary-cta, button, .card, .testimonial-card, .cookie-banner, .mobile-menu {
    transition: all 0.17s cubic-bezier(0.56,0.08,0.38,1.11);
  }
}

/* SPACING - GAPS & MARGINS */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 12px;
}
p, ul, ol {
  margin-bottom: 14px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}

/* RESPONSIVENESS */
@media (max-width: 1100px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 18px;
  }
  .container {
    max-width: 98vw;
  }
  .footer-contact, .footer-copy,
  .content-wrapper, footer .content-wrapper {
    font-size: 0.99em;
  }
}
@media (max-width: 780px) {
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid, .trusted-by-logos, .partners-logos, .features ul, .platform-features ul{
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 98vw;
    padding: 18px 8px;
  }
  .card, .content-wrapper > ul > li {
    padding: 18px 10px;
    min-width: unset;
    max-width: 99vw;
  }
  header nav {
    gap: 8px;
  }
}
@media (max-width: 540px) {
  .container, .cookie-banner, .cookie-modal-content {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  .content-wrapper {
    gap: 10px;
  }
  .hero {
    padding: 35px 0 28px 0;
  }
  .testimonial-card {
    padding: 9px 4px;
  }
  .cta, .cta-news, .cta-blog {
    padding: 22px 2px;
  }
  .thank-you-section {
    padding: 28px 4px;
  }
  .legal {
    padding: 12px 4px;
  }
}
@media (max-width: 768px) {
  .text-image-section,
  .content-wrapper,
  .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* MISCELLANEOUS */
::-webkit-scrollbar {
  width: 10px;
  background: #f5f8fa;
}
::-webkit-scrollbar-thumb {
  background: #89B2D6;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F4A300;
}

/* Hide elements visually only when needed - helper classes */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
