/* 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;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(145deg, #f8fafc 0%, #e7f5ff 100%);
  color: #222a3a;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #65b7f4;
  text-decoration: none;
  transition: color .2s;
}
a:focus,
a:hover {
  color: #2f70c9;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0 0 20px 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #222a3a;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p, li { font-size: 1rem; color: #222a3a; }
strong { font-weight: 700; color: #222a3a; }

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.125rem; }
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #222a3a 55%, #65b7f4 110%);
  box-shadow: 0 2px 16px rgba(34,42,58,0.05);
  position: relative;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 62px;
  padding: 0 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  transition: color .18s;
  padding: 8px 0;
  border-radius: 4px;
}
nav a:not(.cta-button):hover {
  color: #9de36a;
  background: rgba(255,255,255,0.09);
}
nav img {
  height: 36px;
  width: auto;
  margin-right: 18px;
}
.cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: linear-gradient(92deg, #65b7f4 50%, #9de36a 120%);
  color: #222a3a;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 9px 28px;
  margin-left: 24px;
  letter-spacing: .01em;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(101,183,244,0.18);
  transition: background .2s, color .2s, box-shadow .2s, transform .2s;
  outline: none;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
}
.cta-button:focus,
.cta-button:hover {
  background: linear-gradient(92deg, #9de36a 50%, #65b7f4 120%);
  color: #222a3a;
  box-shadow: 0 8px 24px 0 rgba(101,183,244,0.22);
  transform: translateY(-1px) scale(1.03);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  margin-left: 18px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(157,227,106,0.12);
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,42,58,0.89);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.68,-0.35,.36,1.4);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  position: absolute;
  top: 22px;
  right: 28px;
  cursor: pointer;
  z-index: 2;
  padding: 8px;
  border-radius: 50%;
  transition: background .16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #222a3a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 100px 0 0 38px;
  gap: 20px;
}
.mobile-nav a {
  display: flex !important;
  color: #fff;
  font-size: 1.2rem;
  padding: 10px 0 10px 6px;
  border-radius: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background .18s, color .2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #65b7f4;
  color: #222a3a;
}

@media (max-width: 1070px) {
  nav > a:not(.cta-button):not(:first-child) {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1071px) {
  .mobile-menu { display: none; }
}

/* LAYOUT PATTERNS & SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(34,42,58,0.06);
  padding: 28px 28px 24px 28px;
}
@media (max-width: 600px) {
  .content-wrapper {
    padding: 16px 8px 14px 8px;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section ul {
  margin: 10px 0 10px 20px;
  padding: 0;
  list-style: disc inside;
}
.text-section li {
  margin-bottom: 7px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(34,42,58,0.08);
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 22px 22px 18px 22px;
}

.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,
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* FEATURES */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 10px 0 0 0;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f8fbfe;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(101,183,244,0.08);
  padding: 20px 24px 16px 20px;
  min-width: 210px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .19s, transform .19s;
}
.feature img {
  width: 40px;
  height: 40px;
}
.feature:hover {
  box-shadow: 0 8px 36px 0 rgba(34,42,58,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* BENEFIT GRID ON OFERTA */
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.benefit {
  background: #f8fbfe;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(157,227,106,0.07);
  flex: 1 1 200px;
  min-width: 210px;
  padding: 20px 22px 16px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .18s, transform .18s;
}
.benefit:hover {
  box-shadow: 0 8px 30px 0 rgba(101,183,244,0.15);
  transform: translateY(-2px) scale(1.03);
}

/* CASE STUDIES */
.case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(101,183,244,0.12);
  padding: 22px 24px 14px 20px;
  flex: 1 1 280px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .19s, transform .19s;
}
.case:hover {
  box-shadow: 0 8px 32px 0 rgba(157,227,106,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* SERVICES, PROCESS LISTS ETC */
.services-list, .faq-list, .process-steps, .contact-data, .blog-list {
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.services-list li,
.process-steps li,
.faq-list li,
.contact-data li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 0;
  background: none;
  color: #222a3a;
  border-radius: 8px;
}
.services-list a {
  color: #65b7f4;
  font-weight: 500;
}
.services-list a:hover { color: #1b4e8b; }

.process-steps img {
  width: 36px; height: 36px; margin-right: 4px;
}

/* NEWS / BLOG TAGS */
.tags {
  color: #fff;
  background: #65b7f4;
  border-radius: 9px;
  font-size: 0.9rem;
  padding: 2px 10px;
  margin-top: 5px;
  display: inline-block;
}

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafcfb;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(157,227,106,0.07);
  transition: box-shadow .18s;
}
.testimonial-card blockquote {
  color: #222a3a;
  background: #fff;
  font-style: italic;
  font-size: 1.08rem;
  padding: 12px 18px;
  border-radius: 8px;
  border-left: 5px solid #65b7f4;
  margin-right: 8px;
}
.testimonial-card p {
  color: #65b7f4;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  .testimonial-card blockquote { margin-right: 0; }
}

/* PARTNER LOGOS/ICONS */
.partner-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.partner-logos img {
  height: 36px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #222a3a 45%, #65b7f4 130%);
  color: #fff;
  padding: 38px 0 26px 0;
}
footer .container {
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  opacity: .84;
  transition: opacity .18s, color .16s;
}
.footer-menu a:hover { opacity: 1; color: #9de36a; }
footer img {
  height: 36px;
  margin-top: 7px;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
}
.social-links a img {
  height: 24px;
  width: 24px;
  opacity: 0.9;
  transition: opacity .18s;
}
.social-links a:hover img { opacity: 1; }
.contact-short {
  color: #fff;
  font-size: 0.98rem;
  opacity: .68;
  margin-top: 2px;
}
@media (max-width: 600px) {
  .footer-menu { flex-direction: column; gap: 12px; align-items: center; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  width: 100vw;
  background: linear-gradient(90deg, #222a3a, #65b7f4);
  color: #fff;
  padding: 20px 18px 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 18px 0 rgba(34,42,58,0.08);
  transform: translateY(120%);
  transition: transform .34s cubic-bezier(.8,-0.34,.4,1.5), opacity .18s;
  opacity: .98;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  flex: 1;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 7px 18px;
  border-radius: 16px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  color: #222a3a;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(34,42,58,0.07);
  margin-right: 4px;
  transition: background .2s, color .2s, transform .18s;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #65b7f4;
  color: #fff;
}
.cookie-btn.settings {
  background: #9de36a;
  color: #222a3a;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #222a3a;
  color: #9de36a;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  background: rgba(34,42,58,0.67);
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #222a3a;
  border-radius: 20px;
  box-shadow: 0 10px 40px 0 rgba(34,42,58,0.19);
  padding: 32px 22px 20px 22px;
  min-width: 322px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transform: translateY(120px) scale(.97);
  transition: transform .24s, opacity .22s;
  opacity: 0;
}
.cookie-modal.open {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  color: #65b7f4;
  top: 14px;
  right: 18px;
  font-size: 1.75rem;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #222a3a;
}
.cookie-cat-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 8px 0 18px 0;
}
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
}
.cookie-cat label {
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #222a3a;
}
.cookie-switch {
  appearance: none;
  width: 44px; height: 24px;
  background: #e3e9ef;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .2s;
}
.cookie-switch:checked {
  background: #65b7f4;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-switch:checked:before {
  transform: translateX(20px);
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 6px;
}

@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; gap: 10px; align-items: flex-start; }
  .cookie-modal { min-width: unset; padding: 24px 10px 20px 10px; }
}

/* MISCELLANEOUS AND ANIMATIONS */
::-webkit-scrollbar {
  width: 10px;
  background: #e3e9ef;
}
::-webkit-scrollbar-thumb {
  background: #65b7f4;
  border-radius: 6px;
}
@media (max-width: 1024px) {
  .features-grid, .benefit-grid, .case-studies {
    flex-direction: column;
    gap: 12px;
  }
}

/* General focus outlines for accessibility */
:focus {
  outline: 2px solid #65b7f4;
  outline-offset: 2px;
}

/* Responsive spacing rules for content cards */
.card, .feature, .benefit, .case, .testimonial-card {
  margin-bottom: 20px !important;
}

/* Optional: Fade-in entry for cards and sections */
.section, .card, .feature, .benefit, .case, .testimonial-card {
  opacity: 0;
  transform: translateY(32px);
  animation: fadein-up .85s cubic-bezier(.48,0,.18,1.09) .05s forwards;
}
@keyframes fadein-up {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Hide text for screen readers only, if needed */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
