/* 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, 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; box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {line-height: 1.5; background: #fff; color: #111;}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; height: auto; border: 0; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0; }
button { background: none; border: none; cursor: pointer; }

/* ROOT VARS (with fallbacks for older browsers) */
:root {
  --accent: #F5F8FA;
  --primary: #111;
  --secondary: #fff;
  --gray-100: #F6F7F8;
  --gray-200: #E1E1E1;
  --gray-300: #bcbcbc;
  --gray-600: #555555;
  --gray-900: #111111;
  --brand-primary: #29347A;
  --brand-secondary: #7EC8E3;
  --shadow: 0 2px 12px 0 rgba(17,17,17,0.07);
  --radius: 10px;
  --transition: all 0.24s cubic-bezier(.4,0,.2,1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body), 'Roboto', Arial, sans-serif;
  background: var(--secondary, #fff);
  color: var(--gray-900, #111);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

header, footer {
  background: var(--secondary,#fff);
}
/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: var(--font-display), 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.2;
}

h2, .h2 {
  font-family: var(--font-display), 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #181818;
  margin-bottom: 16px;
  line-height: 1.25;
}
h3, .h3 {
  font-family: var(--font-display), 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #212121;
  line-height: 1.28;
}
h4, .h4 {
  font-family: var(--font-display), 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

p {
  margin-bottom: 1em;
  font-size: 1.05rem;
  color: var(--gray-900);
  line-height: 1.7;
}
strong { font-weight: 600; color: #111; }

ul, ol {
  margin-left: 24px;
  margin-bottom: 1.05em;
}
ul li, ol li { margin-bottom: 8px; }
dt { font-weight: 600; margin-top: 20px; }
dd { margin-left: 12px; margin-bottom: 16px; }

address { font-style: normal; color: var(--gray-600,#444); font-size: 0.97rem; margin-top: 8px; }

/* --- LAYOUT: SECTION & WRAPPERS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--secondary, #fff);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  position: relative;
}

.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;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER NAVIGATION --- */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
}
nav > a img {
  height: 38px;
  margin-right: 32px;
}
nav ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 24px 0 0;
}
nav ul li {
  margin-bottom: 0;
}
nav ul li a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.08rem;
  padding: 6px 12px;
  color: #222;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--gray-100);
  color: var(--brand-primary);
}

.btn-primary {
  background: #000;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.07rem;
  border-radius: var(--radius);
  padding: 12px 32px;
  margin-left: 20px;
  box-shadow: 0 1px 6px 0 rgba(17,17,17,0.08);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: 2px solid #000;
  letter-spacing: 0.04em;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #000 !important;
  border-color: var(--brand-primary);
  box-shadow: 0 4px 18px 0 rgba(41,52,122,.11);
}

.btn-secondary {
  background: #fff;
  color: #000;
  font-family: var(--font-display);
  font-weight: 600;
  border: 2px solid #111;
  border-radius: var(--radius);
  padding: 12px 32px;
  margin-left: 0;
  margin-top: 10px;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #111;
  color: #fff;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px; right: 18px;
  background: #111;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  z-index: 1002;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
  z-index: 1001;
  padding: 36px 24px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #111;
  color: #fff;
  font-size: 2rem;
  border-radius: 8px;
  padding: 4px 14px;
  margin-bottom: 24px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #000;
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: #111;
  padding: 12px 0 12px 6px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gray-100);
  color: var(--brand-primary);
}

/* --- MAIN SECTIONS --- */
main > section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.key-statistics, .usps-list, .included-features-list, .statistics, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 10px;
}
.key-statistics li, .usps-list li, .statistics li, .included-features-list li {
  background: var(--gray-100, #F6F7F8);
  color: #181818;
  padding: 18px 22px;
  border-radius: 7px;
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.09rem;
  margin-bottom: 0;
}
.statistics li img, .statistics li svg {
  margin-right: 10px;
  vertical-align: middle;
  height: 28px;
  width: auto;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border: 1.5px solid #d9d9d9;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 28px 22px 22px 22px;
  flex: 1 0 220px;
  min-width: 212px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.18s, border .17s;
}
.feature-grid li:hover {
  border-color: #111;
  box-shadow: 0 6px 22px rgba(30,30,30,0.13);
}
.feature-grid img {
  width: 32px; height: 32px; filter: grayscale(1) contrast(1.23);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 18px;
  background: #f9f9f9;
  border-left: 5px solid #111;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px 0 rgba(17,17,17,0.08);
  color: #181818;
  font-size: 1.13rem;
  transition: box-shadow .19s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 22px rgb(41 41 41 / 12%);
  border-left-color: var(--brand-primary);
}
.testimonial-card p {
  color: #181818;
  margin-bottom: 7px;
  font-size: 1.13rem;
  line-height: 1.6;
}
.testimonial-card span {
  color: #555;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-style: italic;
  margin-left: 7px;
}
.rating-summary {
  margin-top: 18px;
  font-size: 1.2rem;
  color: #000;
}

/* --- TABLES --- */
.pricing-table, .service-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 1rem;
}
.pricing-table caption, .service-comparison-table caption {
  font-size: 1.11rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: #222;
  margin-bottom: 14px;
}
.pricing-table th, .service-comparison-table th {
  background: #111;
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  padding: 12px 10px;
  text-align: left;
}
.pricing-table td, .service-comparison-table td {
  padding: 13px 11px;
  border-bottom: 1px solid #ECECEC;
  background: #fff;
  color: #222;
}
.pricing-table tr:nth-child(even) td,
.service-comparison-table tr:nth-child(even) td {
  background: #FAFAFA;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-list dt {
  font-family: var(--font-display);
  font-weight: bold;
  color: #111;
  font-size: 1.15rem;
}
.faq-list dd {
  color: #181818;
  margin-left: 0;
  font-size: 1.02rem;
}
.faq-highlight dt {
  font-family: var(--font-display);
  color: #111;
  font-weight: bold;
  margin-bottom: 5px;
}
.faq-highlight dd {
  margin-bottom: 19px;
  color: #151515;
  font-size: 1.05rem;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1.5px solid #e3e3e3;
  margin-top: 32px;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 0 13px 0;
}
.footer-menu {
  margin-bottom: 10px;
  font-size: 1.02rem;
  font-family: var(--font-display);
  color: #161616;
  letter-spacing: 0.01em;
}
.footer-menu a {
  color: #161616;
  margin: 0 5px;
  transition: color var(--transition);
}
.footer-menu a:hover, .footer-menu a:focus { color: var(--brand-primary); }
.brand-info {
  display: flex;
  align-items: center;
  color: #282828;
  font-family: var(--font-display);
  font-size: 1.07rem;
  margin-bottom: 14px;
}
.brand-info img {
  margin-right: 6px;
  height: 33px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #282828;
  font-size: 1rem;
}
.contact-info img{ height: 18px; margin-right: 7px; vertical-align: middle;}
.contact-info a { color: #1c1c1c; text-decoration: underline; transition: color .21s; }
.contact-info a:hover { color: var(--brand-primary); }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: rgba(255,255,255,0.98);
  border-top: 2px solid #222;
  box-shadow: 0 -2px 14px rgba(33,33,33,0.07);
  padding: 24px 16px;
  z-index: 1100;
  font-size: 1rem;
  font-family: var(--font-body);
  animation: cookie-fade-in .45s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-fade-in {
  0%{ opacity: 0; transform: translateY(90px);} 100%{ opacity: 1; transform: translateY(0);}
}
.cookie-banner p {
  color: #181818;
  font-size: 1rem;
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #111;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  padding: 10px 24px;
  border: 2px solid #111;
  margin: 0;
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.cookie-btn.settings {
  background: transparent;
  color: #111;
  border: 2px solid #111;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #111;
  border: 2px solid var(--brand-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #111;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,32,32,0.56);
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .37s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeIn {
  0%{ opacity: 0;} 100%{ opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 34px 26px 24px 26px;
  max-width: 95vw;
  width: 400px;
  box-shadow: 0 10px 44px rgba(20,20,20,.15);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1112;
  position: relative;
  animation: modal-slide-in .41s cubic-bezier(.45,0,.2,1);
}
@keyframes modal-slide-in {
  0%{ transform: translateY(48px); opacity: 0;}
  100%{ transform: translateY(0); opacity: 1;}
}
.cookie-modal .modal-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.19rem;
  color: #111;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.01rem;
  color: #222;
  cursor: pointer;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #ddd;
  border-radius: 22px;
  position: relative;
  transition: background .19s cubic-bezier(.4,0,.2,1);
  display: inline-block;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle:after {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px #0002;
  position: absolute;
  left: 0; top: 0;
  transition: left .18s;
}
.cookie-toggle input:checked + .cookie-toggle:after {
  left: 16px;
  background: #000;
}
.cookie-toggle input:checked + .cookie-toggle {
  background: #111;
}

.cookie-modal .cookie-btn {
  width: 100%;
  margin-top: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 15px;
  top: 12px;
  background: transparent;
  border: none;
  font-size: 1.45rem;
  color: #222;
  cursor: pointer;
  opacity: .7;
}
.cookie-modal .modal-close:hover { opacity: 1;}

/* --- SHORT FORMS, CTAS, LABELS --- */
.short-form-cta, .phone-email, .contact-info-short {
  font-size: 1.03rem;
  color: #232323;
  margin-top: 14px;
}
.short-form-cta a, .contact-info-short a, .phone-email a {
  color: #000;
  text-decoration: underline;
  transition: color .18s;
}
.short-form-cta a:hover, .contact-info-short a:hover, .phone-email a:hover {
  color: var(--brand-primary);
}

/* --- MISC --- */
.map-embed {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 22px 22px;
  margin-top: 18px;
}
.map-embed img {
  width: 48px; height: 48px;
}
.opening-hours {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 0 0;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-size: 1.07rem;
}
.opening-hours img { width: 26px; height: 26px; }

.confirmation-message {
  background: var(--gray-100);
  padding: 28px 22px;
  border-radius: var(--radius);
  color: #161616;
  font-size: 1.14rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  nav ul { gap: 12px; }
  .feature-grid li { max-width: 48vw; }
}
@media (max-width: 900px) {
  .feature-grid {gap: 16px;}
  .feature-grid li {min-width: 170px; max-width: 100%;}
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 10px; }
  .section, main > section { padding: 28px 0; margin-bottom: 38px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  nav { flex-direction: row; gap: 18px; }
  nav ul, nav > a.btn-primary { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  header .container {padding-top: 14px; padding-bottom: 7px;}
  .feature-grid, .card-container, .statistics, .content-grid, .usps-list, .key-statistics, .included-features-list { flex-direction: column; gap: 16px; }
  .map-embed, .opening-hours {
      flex-direction: column; gap: 12px; align-items: flex-start;
  }
  .brand-info { font-size: 0.97rem; }
}
@media (max-width: 510px) {
  .cookie-modal { width: 100vw; min-width: 0; border-radius: 0; padding: 19px 7px 13px 7px; }
  .cookie-banner { padding: 16px 2px; flex-direction: column; gap: 14px;}
  .mobile-menu { padding-left: 8px; }
}
@media (max-width: 390px) {
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.07rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 10px 12px; }
}

/* --- MICRO-INTERACTIONS & FOCUS STATES --- */
a, button, .cookie-btn, .btn-primary, .btn-secondary, .modal-close {
  outline: none;
}
a:focus-visible, button:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

.btn-primary:active, .btn-secondary:active { transform: translateY(2px); }

/* --- Visual Hierarchy / Spacing --- */
main > section, .section { border-bottom: 1px solid #EEE; }
main > section:last-child, .section:last-child { border-bottom: none; }

/* --- Hide scrollbar on mobile menu --- */
.mobile-menu { overflow-y: auto; -webkit-overflow-scrolling: touch; }

/* --- Hide elements for accessibility --- */
.sr-only { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* --- PRINTING --- */
@media print { header, footer, .cookie-banner, .mobile-menu { display:none !important; } main { padding: 0; }}