/*----------------------------------------------------
  AURORARISE – Scandinavian Clean Style CSS
  SCANDINAVIAN_CLEAN aesthetic | Mobile-first | Flexbox only
  Author: AI Professional Web Developer
------------------------------------------------------
  CSS RESET & BASE TYPOGRAPHY
----------------------------------------------------*/
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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #FAFCFE;
  color: #27384B;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #375A84;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F1C40F;
  outline: none;
}

/*----------------------------------------------------
  BRAND COLORS & FONTS
----------------------------------------------------*/
:root {
  --primary: #375A84;
  --secondary: #F1C40F;
  --accent: #EBF5FB;
  --text: #27384B;
  --bg: #FAFCFE;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;
  --shadow: 0 2px 12px rgba(55,90,132,0.07);
  --shadow-hover: 0 4px 24px rgba(55,90,132,0.13);
}
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 14px; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; }
@media (min-width: 768px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}
p, ul, ol, dl, li, dd, dt, .text-section {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
}
strong, b {
  font-weight: 600;
}

/*----------------------------------------------------
  CONTAINER & GENERAL LAYOUT
----------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/*----------------------------------------------------
  HEADER, NAVIGATION, LOGO
----------------------------------------------------*/
header {
  width: 100%;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(55,90,132,0.06);
  z-index: 20;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 68px;
}
.logo img {
  height: 42px;
  width: auto;
  margin-right: 10px;
}
.main-nav {
  display: none;
}
header .btn.btn-primary { margin-left: auto; }
@media (min-width: 900px) {
  .main-nav {
    display: flex;
    gap: 26px;
    align-items: center;
    margin-left: 36px;
  }
  .main-nav a {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    padding: 6px 0;
    position: relative;
    transition: color 0.18s;
  }
  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--secondary);
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/*----------------------------------------------------
  MOBILE MENU
----------------------------------------------------*/
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  margin-left: 12px;
  cursor: pointer;
  z-index: 40;
  position: relative;
  padding: 8px 12px;
  border-radius: 7px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,252,254,0.99);
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 28px 32px 24px;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.5,.65,.17,1);
  box-shadow: 0 2px 12px rgba(55,90,132,0.12);
  width: 100vw;
  max-width: 340px;
  will-change: transform;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 30px;
  align-self: flex-end;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  padding: 8px 2px;
  border-radius: 5px;
  transition: background 0.12s, color 0.18s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--accent);
  color: var(--secondary);
}
@media (min-width: 900px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/*----------------------------------------------------
  HERO SECTION
----------------------------------------------------*/
.hero {
  background: var(--card-bg);
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow);
  border-radius: 0 0 16px 16px;
  margin-bottom: 44px;
  padding: 44px 0 24px 0;
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.3rem;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.18rem;
  margin: 0 auto 24px auto;
  color: #385170;
}
@media (min-width: 600px) {
  .hero .content-wrapper {
    max-width: 620px;
    gap: 22px;
  }
}
@media (min-width: 900px) {
  .hero {
    padding: 60px 0 40px 0;
    min-height: 420px;
  }
  .hero h1 { font-size: 3.2rem; }
  .hero .content-wrapper { gap: 28px; }
}

/*----------------------------------------------------
  BUTTONS
----------------------------------------------------*/
.btn {
  padding: 12px 32px;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, color 0.18s, box-shadow 0.20s;
  box-shadow: var(--shadow);
  display: inline-block;
  text-align: center;
  margin-top: 10px;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:focus,
.btn-primary:hover {
  background: #223857;
  color: #fff;
  box-shadow: var(--shadow-hover);
}
.btn-secondary {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-secondary:focus,
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-hover);
}

/*----------------------------------------------------
  FEATURES, SERVICES, CARDS
----------------------------------------------------*/
.features,
.features-products,
.features-steps,
.features-integrations {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features ul,
.features-products ul,
.features-integrations ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 30px;
}
.features ul li,
.features-products ul li,
.features-integrations ul li {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  border: 1.5px solid var(--border);
  font-size: 1rem;
}
.features ul li img {
  height: 38px;
  width: auto;
  margin-bottom: 6px;
}
.features ul li h3,
.features-products ul li h3 {
  color: var(--primary);
  font-size: 1.13rem;
  margin-bottom: 6px;
  font-weight: 700;
}
.features ul li p,
.features-products ul li p {
  color: #364f6b;
}
@media (min-width: 900px) {
  .features ul,
  .features-products ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
  }
  .features ul li,
  .features-products ul li {
    flex: 1 1 190px;
    max-width: 255px;
    min-width: 180px;
  }
}
.features-steps ol {
  list-style: decimal inside;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 34px 0;
  padding-left: 16px;
}
.features-steps ul {
  margin-top: 0;
}

/* Service Cards & Pricing */
.services-home ul,
.services-detailed ul,
.product-services ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 22px 0 36px 0;
}
.services-home ul li,
.services-detailed ul li,
.product-services ul li {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service-price {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 5px;
  margin-left: 8px;
  font-size: 0.98rem;
}
@media (min-width: 900px) {
  .services-home ul,
  .services-detailed ul,
  .product-services ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .services-home ul li,
  .services-detailed ul li,
  .product-services ul li {
    flex: 1 1 220px;
    min-width: 190px;
    max-width: 340px;
  }
}

/* Section and Card Container Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 20px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover,
.card:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.013);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/*----------------------------------------------------
  TESTIMONIALS
----------------------------------------------------*/
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1.09rem;
  position: relative;
}
.testimonial-card p {
  color: var(--text);
  font-style: italic;
  font-weight: 500;
  margin-right: 8px;
}
.testimonial-card span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.97rem;
  color: #375A84;
  margin-left: auto;
  font-weight: 600;
}
@media (min-width: 700px) {
  .testimonials .content-wrapper {
    max-width: 690px;
  }
}

/*----------------------------------------------------
  ABOUT/PRIVACY/GDPR/LEGAL – TEXT SECTIONS
----------------------------------------------------*/
.text-section {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 28px 24px;
  margin: 18px 0 12px 0;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.text-section ul,
.text-section ol {
  margin: 16px 0 16px 20px;
}
.text-section li {
  margin-bottom: 10px;
  padding-left: 5px;
}
.text-section h2 {
  margin-top: 18px;
}

/*----------------------------------------------------
  FAQ SECTION
----------------------------------------------------*/
.faq-general, .faq-technical {
  margin-bottom: 60px;
  padding: 40px 20px;
}
dl {
  width: 100%;
  margin: 16px 0;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.13rem;
  margin: 20px 0 6px 0;
}
dd {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text);
  margin: 0 0 14px 0;
  padding-left: 8px;
}

/*----------------------------------------------------
 CONTACT & MAP SECTION
----------------------------------------------------*/
.contact-details .text-section {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  font-size: 1rem;
}
.map-location img {
  width: 22px;
  height: 22px;
  margin-right: 2px;
}

/*----------------------------------------------------
  FOOTER
----------------------------------------------------*/
footer {
  background: #F9FBFD;
  border-top: 2px solid var(--border);
  padding: 0;
  box-shadow: 0 -2px 12px rgba(55,90,132,0.05);
}
footer .container {
  flex-direction: row;
  padding: 0 18px;
  justify-content: center;
  align-items: stretch;
  gap: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  padding: 38px 0 18px 0;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  min-width: 210px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img {
  width: 80px;
  height: auto;
  margin-bottom: 2px;
}
.footer-brand p {
  color: var(--text);
  font-size: 1rem;
}
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 110px;
}
.footer-nav a,
.footer-legal a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  transition: color 0.16s;
  font-size: 0.99rem;
}
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--secondary);
}
.footer-contact p,
.footer-contact a {
  font-size: 0.98rem;
  color: #626269;
  margin-bottom: 3px;
}
.footer-contact a {
  text-decoration: underline;
  color: var(--primary);
  transition: color 0.13s;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 14px;
  padding-top: 6px;
}
.footer-social a img {
  width: 27px;
  height: 27px;
  filter: grayscale(80%);
  opacity: 0.8;
  transition: filter 0.18s, opacity 0.16s, transform 0.22s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.09);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 23px;
    align-items: center;
    justify-content: flex-start;
    padding: 34px 0 20px 0;
  }
  .footer-brand, .footer-nav, .footer-legal, .footer-contact, .footer-social {
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
}

/*----------------------------------------------------
  COOKIE CONSENT BANNER & MODAL
----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  z-index: 2000;
  background: #fffaf3;
  border-top: 1.5px solid var(--border);
  box-shadow: 0 -1px 15px rgba(55,90,132,0.08);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: cookiebannerin 0.42s cubic-bezier(0.75,0.15,0.21,1);
}
@keyframes cookiebannerin {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-banner .cookie-message {
  color: var(--text);
  font-size: 1rem;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner .btn {
  padding: 8px 22px;
  font-size: 0.99rem;
  border-radius: 22px;
  margin: 0;
}
.btn-accept {
  background: var(--secondary);
  color: var(--primary);
  border: none;
}
.btn-accept:hover,
.btn-accept:focus {
  background: #FFD95F;
  color: var(--primary);
}
.btn-reject {
  background: #EBEDEE;
  color: var(--primary);
  border: 1.3px solid var(--border);
}
.btn-reject:hover,
.btn-reject:focus {
  background: #eceff1;
}
.btn-settings {
  background: var(--accent);
  color: var(--primary);
}
.btn-settings:hover,
.btn-settings:focus {
  background: var(--primary);
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-60%) scale(0.9);
  z-index: 2100;
  background: #FFFFFF;
  border-radius: 16px;
  width: 97vw;
  max-width: 410px;
  box-shadow: 0 4px 44px rgba(30,40,70,0.14);
  padding: 30px 22px 22px 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.28s;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-49%) scale(1);
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.44rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.01rem;
  gap: 10px;
  margin-bottom: 13px;
  user-select: none;
}
.cookie-modal input[type="checkbox"] {
  width: 24px; height: 24px;
  accent-color: var(--primary);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 12px;
}
.cookie-category-essential {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 12px; right: 13px;
  border: none;
  background: none;
  font-size: 1.5rem;
  color: var(--primary);
  padding: 5px 8px;
  cursor: pointer;
}
.cookie-modal .close-cookie-modal:hover {
  background: var(--accent);
  border-radius: 10px;
}

/*----------------------------------------------------
  MISCELLANEOUS
----------------------------------------------------*/
ul, ol {
  margin-left: 18px;
  margin-bottom: 12px;
}
li { margin-bottom: 9px; }
hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 30px 0;
}

::-webkit-input-placeholder { color: #87939e; opacity: 1; }
::-moz-placeholder { color: #87939e; opacity: 1; }
:-ms-input-placeholder { color: #87939e; opacity: 1; }
::placeholder { color: #87939e; opacity: 1; }

/* Utility for visually hidden, a11y */
.sr-only {
  border: 0!important;
  clip: rect(0,0,0,0)!important;
  height: 1px!important;
  margin: -1px!important;
  overflow: hidden!important;
  padding: 0!important;
  position: absolute!important;
  width: 1px!important;
}

/*----------------------------------------------------
  RESPONSIVE DESIGN - Mobile First
----------------------------------------------------*/
@media (max-width: 600px) {
  header .container,
  .footer .container {
    padding: 0 10px;
  }
  .section {
    padding: 26px 7px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 30px 0;
  }
  .section {
    padding: 16px 3px;
    margin-bottom: 32px;
  }
  .features ul li,
  .services-home ul li,
  .services-detailed ul li {
    padding: 15px 10px;
  }
  .cookie-modal {
    padding: 17px 6px 12px 6px;
  }
}

/*----------------------------------------------------
  MICRO-INTERACTIONS / ANIMATIONS
----------------------------------------------------*/
.btn,
.card,
.testimonial-card,
.cookie-banner,
.cookie-modal {
  transition: 
    background 0.20s,
    color 0.18s,
    box-shadow 0.22s,
    border-color 0.16s,
    transform 0.18s,
    opacity 0.23s;
}
.card:hover,
.card:focus-within,
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.016);
  box-shadow: var(--shadow-hover);
}

/*----------------------------------------------------
  END CSS
----------------------------------------------------*/
