/*--- CSS RESET & NORMALIZE ---*/
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F5F7FA;
  color: #22405B;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style-position: inside;
  margin-bottom: 1.6em;
}
a {
  color: #14428A;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #8cbdee;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 10px;
  font-size: 16px;
}
th {
  background: #e9eefa;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  color: #14428A;
}
td {
  background: #fff;
}

/*--- COLOR PALETTE: Soft Pastel Variants ---*/
:root {
  --primary: #14428A; /* Brand Blue */
  --primary-light: #c7d3ee; /* Pastel brand blue */
  --secondary: #E5A719; /* Brand yellow*/
  --secondary-light: #fff5df;
  --accent: #F6F6F6; /* Brand accent */
  --background: #F5F7FA;
  --surface: #fff;
  --info: #bee6f7;
  --success: #d5f3e7;
  --warning: #ffe9b8;
  --danger: #fed5d7;
  --text-main: #22405B;
  --text-muted: #738292;
  --shadow: 0 2px 24px 0 rgba(25,41,67,0.05),0 1.5px 4px rgba(84,106,139,0.04);
}

/*--- TYPOGRAPHY ---*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.1rem;
}
@media (max-width: 650px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
strong, b {
  font-weight: 600;
}
p {
  color: var(--text-main);
  margin-bottom: 16px;
}
.text-muted {
  color: var(--text-muted) !important;
}
small, .small-print {
  font-size: 0.93em;
  color: var(--text-muted);
  margin-top: 8px;
}

/*--- CONTAINER & LAYOUT ---*/
.container {
  padding-left: 18px;
  padding-right: 18px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

/*--- HEADER ---*/
header {
  width: 100%;
  background: linear-gradient(90deg, #e9f3fd 0%, #faf2ff 100%);
  box-shadow: 0 1px 12px rgba(26,49,94,0.07);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  color: var(--primary);
  font-weight: 500;
}
nav a:hover, nav a:focus {
  background: var(--primary-light);
  color: #003266;
}
nav a.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 22px;
  font-weight: 600;
  margin-left: 14px;
  box-shadow: 0 2px 10px rgba(19,39,120,0.07);
  transition: background 0.2s, box-shadow 0.2s;
}
nav a.btn-primary:hover, nav a.btn-primary:focus {
  background: #165abe;
  color: #fff;
  box-shadow: 0 5px 20px rgba(20,66,138,.12);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
  margin-left: 20px;
  transition: background 0.15s;
  z-index: 150;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary-light);
}

/*--- HERO ---*/
.hero {
  background: linear-gradient(135deg, #f8e9fd 0%, #e9f5fc 100%);
  border-radius: 0 0 40px 40px;
  padding: 48px 0 0 0;
  margin-bottom: 58px;
}
.hero .container {
  padding-top: 24px;
}
.hero .content-wrapper {
  background: rgba(255,255,255,0.89);
  box-shadow: var(--shadow);
  padding: 48px 22px 32px 22px;
  border-radius: 32px;
  align-items: flex-start;
  margin-bottom: 0;
  max-width: 650px;
  gap: 20px;
}
.hero h1 {
  color: #14428A;
  font-size: 2.2rem;
}

/*----- FLEX LAYOUT UTILS (MANDATORY PATTERNS) -----*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(20,66,138,0.12);
  transform: translateY(-4px) scale(1.01);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(167,183,211,0.10);
  margin-bottom: 20px;
  flex-direction: column;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #153263;
  margin-bottom: 6px;
  margin-top: 0;
  font-style: italic;
}
.testimonial-card span {
  color: var(--text-muted);
  font-size: 1em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--- FEATURE GRID / USP BLOCKS ---*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.feature-grid > div {
  background: #f6f8fc;
  border-radius: 18px;
  box-shadow: 0 1.5px 8px rgba(135,173,233,0.09);
  padding: 30px 22px 25px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s, background 0.15s;
  gap: 14px;
}
.feature-grid > div img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 2px rgba(24,24,24,0.08));
}
.feature-grid > div:hover {
  background: #f1eeff;
  box-shadow: 0 4px 18px rgba(29,54,109,0.12);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid h3 {
  font-size: 1.18rem;
}

/*--- TABLES (PRICING) ---*/
.pricing-table {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
  background: var(--surface);
  box-shadow: 0 2px 20px rgba(124,136,178,0.06);
}
.pricing-table th, .pricing-table td {
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
.pricing-table tbody tr:nth-child(even) td {
  background: #f4f7fb;
}

/*--- CARD LISTS ---*/
.usp-list, .quick-facts, .tariff-list, .price-advantages {
  margin-bottom: 18px;
  color: var(--primary);
  padding-left: 18px;
}
.usp-list li, .quick-facts li, .tariff-list li, .price-advantages li {
  margin-bottom: 12px;
  font-size: 1.09em;
  position: relative;
  padding-left: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 18px;
}
.faq-item {
  background: #fcfcff;
  border-left: 5px solid var(--primary-light);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(114,148,210,0.04);
  padding: 24px 18px 15px 18px;
  margin-bottom: 10px;
}
.faq-item h2, .faq-item h3 {
  font-size: 1.175rem;
  color: var(--primary);
  margin-bottom: 7px;
}

/*--- CONTACT INFO ---*/
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-info li {
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}
.contact-info li img {
  width: 24px;
  height: 24px;
}

.map {
  background: #f9f7fe;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(169,162,205, 0.06);
  padding: 16px 18px;
  margin-bottom: 14px;
}
.opening-hours {
  margin: 14px 0 24px 0;
  background: #f7fefe;
  padding: 16px 16px;
  border-radius: 10px;
  color: var(--primary);
}

/*--- BUTTONS ---*/
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  padding: 12px 32px;
  border-radius: 22px;
  font-size: 1.1em;
  font-weight: 600;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.18s;
  cursor: pointer;
  border: none;
  outline: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(20,66,138,.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: #165abe;
  color: #fff;
  box-shadow: 0 6px 22px rgba(12,36,88,0.13);
  transform: translateY(-2px) scale(1.035);
}
.btn-secondary {
  background: var(--secondary);
  color: #2a1d00;
  margin-left: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffd68a;
  color: var(--primary);
}

/*--- FOOTER ---*/
footer {
  background: linear-gradient(90deg, #f8fafe 0%, #fff8e7 100%);
  color: var(--text-main);
  padding-top: 22px;
  padding-bottom: 14px;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer nav {
  margin-bottom: 6px;
  gap: 20px;
  font-size: 0.98em;
}
footer nav a {
  padding: 7px 10px;
  color: var(--primary);
  border-radius: 8px;
  background: none;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}
footer nav a:hover, footer nav a:focus {
  background: var(--primary-light);
  color: #002264;
}
.footer-branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-top: 8px;
  font-size: 1em;
}
.footer-branding img {
  width: 38px;
  height: 38px;
  display: inline-block;
  margin-right: 6px;
}

/*--- MOBILE BURGER MENU ---*/
@media (max-width: 1024px) {
  nav {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: rgba(248,250,247, 0.98);
  box-shadow: 0 8px 44px rgba(20,66,138,.15);
  z-index: 2000;
  transition: transform 0.42s cubic-bezier(.73,.21,.46,.96);
  transform: translateX(-110%);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 20px;
  font-size: 2.2rem;
  color: var(--primary);
  background: transparent;
  border: none;
  z-index: 3000;
  padding: 4px 14px;
  border-radius: 9px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary-light);
}
.mobile-nav {
  width: 100%;
  margin-top: 65px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 32px;
  padding-top: 18px;
  font-family: 'Montserrat', sans-serif;
}
.mobile-nav a {
  font-size: 1.12em;
  color: var(--primary);
  padding: 13px 20px 13px 8px;
  border-radius: 10px;
  transition: background 0.1s, color 0.1s;
  font-weight: 600;
  min-width: 75vw;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary-light);
  color: #2461b5;
}

/*--- COOKIE CONSENT BANNER ---*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #f4ecff;
  box-shadow: 0 -1px 16px rgba(65,71,95,0.15);
  padding: 28px 18px 28px 18px;
  z-index: 5500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: cookiebanner-up 0.55s cubic-bezier(.66,.02,.44,1.1);
}
@keyframes cookiebanner-up {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #16408c;
  margin-bottom: 0;
  font-size: 1.06em;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 9px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary, .cookie-banner .btn-reject {
  padding: 10px 22px;
  font-size: 1em;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-banner .btn-reject {
  background: #ffe9e7;
  color: #be2b2f;
  border: 1.5px solid #f5b3b3;
  margin-left: 0;
  transition: background 0.15s, color 0.15s, border 0.15s;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: #fccfd1;
  color: #962626;
  border: 1.5px solid #e68c8f;
}
.cookie-banner .btn-settings {
  background: #fceeaa;
  color: #66631a;
  border: 1.5px solid #f0e187;
  margin-left: 0;
  font-size: 1em;
  padding: 10px 22px;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #ffe79d;
  color: #b69d0c;
}

/*--- COOKIE MODAL ---*/
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47,53,82,0.45);
  z-index: 7000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein-cookie-modal 0.22s cubic-bezier(.73,.21,.46,.96);
}
@keyframes fadein-cookie-modal {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #f5f8fc;
  padding: 36px 30px 24px 30px;
  border-radius: 20px;
  max-width: 480px;
  width: 90vw;
  box-shadow: 0 8px 40px rgba(28,68,160,0.13);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: pop-cookie-modal 0.28s cubic-bezier(.79,-0.12,.51,1.25);
}
@keyframes pop-cookie-modal {
  0% { transform: scale(0.7); opacity: 0; } 100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.45em;
  margin-bottom: 8px;
  color: var(--primary);
}
.cookie-modal .cookietype {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #dfe9f8;
  border-radius: 20px;
  transition: .3s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  left: 3px;
  top: 2.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(138,138,138,0.10);
  transition: .3s;
}
.cookie-modal .switch input:checked + .slider {
  background: #b8d7fd;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
  background: var(--primary);
}
.cookie-modal .switch input:disabled + .slider {
  background: #e0e5e5;
}
.cookie-modal .cookietype label {
  color: #11284c;
  font-size: 1.06em;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-actions .btn-primary,
.cookie-modal-actions .btn-secondary {
  padding: 8px 20px;
  font-size: 1em;
  border-radius: 16px;
}

/*--- UTILITY CLASSES ---*/
.text-section, .text-image-section, .next-steps {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.next-steps ul {
  margin-bottom: 0;
  padding-left: 25px;
}
hr {
  border: 0;
  border-top: 1px solid #eaeaea;
  margin: 23px 0;
}

/*--- SPACING ---*/
@media (max-width: 700px) {
  .section, .content-wrapper, .feature-grid > div {
    padding-left: 8px;
    padding-right: 8px;
  }
  .hero .content-wrapper {
    padding: 30px 8px 18px 8px;
  }
  .footer-branding {
    font-size: 0.93em;
  }
}

/*--- RESPONSIVE FLEXBOX RULES ---*/
@media (max-width: 1024px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid {
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 150px;
    padding: 24px 13px;
  }
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonials {
    flex-direction: column;
  }
  .testimonials .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 580px) {
  .cookie-modal {
    padding: 19px 7px 18px 9px;
  }
  .section, .content-wrapper {
    padding: 18px 6px;
  }
}


/*--- ANIMATIONS & MICRO-INTERACTIONS ---*/
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-nav a, .card, .feature-grid > div {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.2s;
}
.card:active {
  transform: scale(0.98);
}
input, textarea, select {
  font-family: inherit;
  font-size: 1em;
  border: 1.5px solid #e8edf2;
  border-radius: 7px;
  background: #f9fafd;
  padding: 9px 12px;
  color: #22405B;
  outline: none;
  margin-bottom: 16px;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 2px 7px rgba(29,86,213,0.08);
}

/*--- SCROLLBARS (optional) ---*/
::-webkit-scrollbar {
  width: 9px;
  background: #e9f1f8;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #c9dbfc;
  border-radius: 14px;
}

/*--- ACCESSIBILITY: FOCUS STATES ---*/
:focus-visible {
  outline: 2.5px dashed #71ace6;
  outline-offset: 3px;
}

/*--- SOFT PASTEL VISUAL EFFECTS ---*/
.card, .content-wrapper, .section, .faq-item, .feature-grid > div, .testimonial-card {
  box-shadow: var(--shadow);
}
body, .content-wrapper, .section {
  background: linear-gradient(135deg, #f9fafd 75%, #fbeee5 100%);
}
/* HERO and Feature Soft Pastels */
.hero, .feature-grid > div {
  background: linear-gradient(135deg, #f9edea 0%, #e9f5fc 80%);
}

/*--- FONT IMPORT (robust) ---*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
