/* ====================
   AxonFlux Horizon 
   Modern Bold CSS Theme
   ==================== */

/* CSS RESET AND 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1.5; background: #F6F7FA;}
ol, ul {list-style: none;}
a {text-decoration: none; color: inherit;}
img {max-width: 100%; display: block;}
table {border-collapse: collapse; border-spacing: 0;}

/* ========== CSS VARIABLES ========== */
:root {
  --color-primary: #153258;
  --color-primary-dark: #102647;
  --color-secondary: #EEB155;
  --color-secondary-dark: #c89337;
  --color-accent: #FFFFFF;
  --color-bg-light: #F6F7FA;
  --color-card-bg: #fff;
  --color-footer-bg: #153258;
  --color-footer-text: #fff;
  --color-success: #21ce99;
  --color-danger: #E25454;
  --shadow-md: 0 4px 24px 0 rgba(21,50,88,0.08);
  --shadow-sm: 0 2px 8px 0 rgba(21,50,88,0.08);
  --shadow-bold: 0 6px 24px 0 rgba(21,50,88,0.16);
  --radius-md: 16px;
  --radius-sm: 8px;
  --radius-lg: 32px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', 'Montserrat', Arial, Helvetica, sans-serif;
}

@media (max-width: 768px) {
  :root {
    --radius-md: 10px;
  }
}

/* ========== BASE TYPOGRAPHY ========== */
html, body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-bg-light);
  font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, li, ul, ol {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.7;
  font-family: var(--font-body);
}
strong, b {
  font-weight: 700;
  color: var(--color-primary-dark);
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* ========== UTILITY CLASSES ========== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ========== HEADER & NAV ========== */
header {
  width: 100%;
  background: var(--color-card-bg);
  box-shadow: var(--shadow-md);
  padding: 14px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 20;
}
.logo {
  margin-left: 20px;
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
}
header .logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 38px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 4px 10px 2px 10px;
  transition: color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  outline: none;
}
.cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  border-radius: var(--radius-md);
  padding: 11px 32px;
  margin-left: auto;
  margin-right: 20px;
  border: none;
  box-shadow: var(--shadow-sm);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta.primary:active, .cta.primary:focus {
  outline: 2px solid var(--color-secondary-dark);
}
.cta.primary:hover {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: var(--shadow-bold);
}
/* Burger Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  margin-right: 18px;
  margin-left: 12px;
  cursor: pointer;
  line-height: 1;
  z-index: 70;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(21,50,88,0.98);
  color: var(--color-accent);
  z-index: 80;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.7,0,0.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-secondary);
  margin: 26px 0 0 24px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 44px;
  width: 100%;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  width: max-content;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
    margin-left: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
    margin-left: 10px;
    font-size: 0.96rem;
  }
  .cta.primary {
    padding: 10px 18px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .cta.primary {
    margin-right: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  header {
    padding: 10px 0;
  }
  .logo img {
    height: 30px;
  }
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 36px 0 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--color-footer-text);
  background: rgba(255,255,255,0.07);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 4px 12px;
  transition: background 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
}
.footer-contact {
  font-size: 0.96rem;
  font-family: var(--font-body);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--color-footer-text);
  text-align: center;
}
.footer-contact a {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: underline;
}
@media (max-width: 600px) {
  .footer-nav { gap: 9px; font-size: 0.89rem; }
  .footer-contact { font-size: 0.89rem; flex-direction: column; }
  footer { padding: 20px 0 6px 0; }
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(90deg, var(--color-secondary) 0%, #fff 70%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  box-shadow: var(--shadow-md);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  gap: 14px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.7rem;
  margin-bottom: 10px;
  line-height: 1.1;
}
.hero p {
  color: var(--color-primary-dark);
  font-size: 1.22rem;
  margin-bottom: 24px;
  font-weight: 500;
}
.hero .cta {
  margin-top: 6px;
}
@media (max-width: 600px) {
  .hero {
    padding: 24px 0 28px 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .hero .content-wrapper {
    max-width: 100%;
    align-items: flex-start;
  }
  .hero h1 { font-size: 1.55rem; }
  .hero p { font-size: 1rem; }
}

/* ========== MAIN SECTIONS & LAYOUTS ========== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-bold);
  padding: 30px 22px;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s, transform 0.25s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(21,50,88,0.16);
  transform: translateY(-4px) scale(1.02);
}
.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: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  max-width: 560px;
  font-size: 1.1rem;
  border-left: 5px solid var(--color-secondary);
  min-width: 220px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px 0 rgba(21,50,88,0.23);
}
.testimonial-card p {
  margin-bottom: 8px;
  color: var(--color-primary-dark);
  font-style: italic;
  font-size: 1.11rem;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--color-card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  margin-bottom: 4px;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F7ECD3;
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 14px 18px;
  margin: 20px 0 0 0;
}
.info-card img {
  width: 40px;
  margin-right: 8px;
}

@media (max-width: 900px) {
  .card-container, .content-grid, .service-card-list {
    gap: 10px; flex-direction: column;
  }
  .testimonial-card { width: 100%; max-width: 100%; }
}
@media (max-width: 700px) {
  section, .section { padding: 25px 6px; }
  .content-wrapper { padding: 0; }
  .testimonial-card, .card {
    padding: 17px 10px;
  }
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(90deg, var(--color-primary) 50%, var(--color-secondary) 100%);
  color: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 50px auto 0 auto;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
.cta-banner p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0;
}
.cta-banner .cta.primary {
  color: var(--color-primary);
  background: #fff;
  border: 2px solid var(--color-secondary);
  margin-left: 0;
}
.cta-banner .cta.primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
  border: 2px solid #fff;
}
@media (max-width: 900px) {
  .cta-banner .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ========== SERVICE CARD LIST (KURSE) ========== */
.service-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 315px;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.17s, transform 0.18s;
}
.service-card h2 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 1.32rem;
}
.service-card p {
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1rem;
}
.service-card strong {
  color: var(--color-secondary-dark);
}
.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(21,50,88,0.16);
  transform: translateY(-3px) scale(1.015);
}
@media (max-width: 900px) {
  .service-card-list { gap: 10px; }
  .service-card { min-width: unset; }
}

/* ========== BLOG POST PREVIEW ========== */
.blog-post-preview {
  background: var(--color-card-bg);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.18s, border-color 0.18s;
  cursor: pointer;
}
.blog-post-preview:hover, .blog-post-preview:focus {
  box-shadow: 0 8px 40px 0 rgba(21,50,88,0.11);
  border-left-color: var(--color-secondary);
}

/* ========== TABLES ========== */
table {
  width: 100%;
  margin-bottom: 20px;
  background: var(--color-card-bg);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  font-size: 1rem;
}
thead tr {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
}
thead th {
  padding: 16px 10px;
  text-align: left;
}
tbody tr {
  border-bottom: 1px solid #ececec;
}
tbody td {
  padding: 13px 10px;
}
tbody tr:last-child {border-bottom: none;}
@media (max-width: 600px) {
  table,thead,tbody,tr,th,td { display: block; width: 100%; }
  thead {display: none;}
  td {
    position: relative;
    padding-left: 50%;
    font-size: 1rem;
    min-height: 36px;
  }
}

/* ========== GENERAL LISTS ========== */
ul, ol {
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}
ul li, ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 1.04rem;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 14px; height: 14px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 4px;
}
@media (max-width: 600px) {
  ul li, ol li { font-size: 0.98rem; }
}

/* ========== TEXT SECTION (ABOUT, DATENSCHUTZ, ETC.) ========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.7;
  background: none;
  font-size: 1.07rem;
  margin-top: 0;
}
.text-section img {
  margin: 10px 0;
}
.map-placeholder {
  border-radius: var(--radius-md);
  background: #ebedf3;
  box-shadow: var(--shadow-sm);
  width: 100%;
  max-width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  min-height: 160px;
}

/* ========== BUTTONS & CTAS ========== */
.cta {
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  border-radius: var(--radius-md);
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 132px;
  display: inline-block;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cta:hover, .cta:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
  box-shadow: var(--shadow-bold);
}
.cta.primary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta.primary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ========== COOKIE CONSENT BANNER ========== */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 26px 24px 22px 24px;
  box-shadow: 0 -4px 24px rgba(21,50,88,0.18);
  font-size: 1.02rem;
  font-family: var(--font-body);
  flex-wrap: wrap;
  gap: 20px;
  animation: banner-slidein 0.55s cubic-bezier(0.6,1,0.6,1.01);
}
@keyframes banner-slidein {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn, .cookie-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-size: 1rem;
  margin: 0 0 0 5px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: var(--color-success);
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #159e77;
  color: #fff;
}
.cookie-btn.reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #c03f3f;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--color-primary-dark);
  color: #fff;
}
/* Cookie Modal */
#cookie-modal, .cookie-modal {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(21,50,88,0.74);
  z-index: 350;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fade-in-bg 0.2s;
}
#cookie-modal.open, .cookie-modal.open {
  display: flex;
}
@keyframes fade-in-bg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal__dialog {
  background: #fff;
  color: var(--color-primary);
  min-width: 310px;
  max-width: 99vw;
  padding: 40px 28px 28px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(21,50,88,.16);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-scale-in 0.33s cubic-bezier(0.5,1.4,0.6,1);
}
@keyframes modal-scale-in {
  from { transform: scale(0.89); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal__header {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-category label {
  font-weight: 600;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #EEEEEE;
  border-radius: 12px;
  position: relative;
  margin-left: 10px;
  transition: background 0.16s;
  cursor: pointer;
  display: flex; align-items: center;
}
.cookie-toggle input {
  opacity: 0;
  width: 38px; height: 22px;
  position: absolute; left: 0; top: 0;
  cursor: pointer;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #c1c1c1;
  transition: left 0.16s, background 0.16s;
  z-index: 2;
}
.cookie-toggle input:checked + .toggle-indicator, .cookie-toggle input:checked ~::after {
  background: var(--color-success);
}
.cookie-toggle input:checked ~ ::after {
  left: 19px;
  background: var(--color-success);
}
.cookie-toggle input:checked + .cookie-toggle::after {
  left: 19px;
  background: var(--color-success);
}
/* Always enabled style for Essential */
.cookie-category.essential .cookie-toggle {
  background: #dddddd;
  pointer-events: none;
  opacity: 0.75;
}
.cookie-category.essential .cookie-toggle::after {
  background: var(--color-success);
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: 1;
}
@media (max-width: 480px) {
  #cookie-banner, .cookie-banner {
    padding: 16px 6px 15px 6px;
    font-size: 0.91rem;
    flex-direction: column;
    gap: 12px;
  }
  .cookie-modal__dialog {
    min-width: 98vw; padding: 22px 6px;
  }
}

/* ========== RESPONSIVE FLEX LAYOUTS ========== */
@media (max-width: 900px) {
  .section, section {
    padding: 32px 8px;
  }
  .feature-item,
  .text-image-section,
  .faq-list { gap: 10px; }
  .content-grid,
  .service-card-list,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .card {
    min-width: unset;
    width: 100%;
  }
  .faq-list { width: 100%; }
}
@media (max-width: 768px) {
  .text-image-section, .cta-banner .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .content-grid,
  .service-card-list,
  .card-container {
    flex-direction: column;
  }
}

/* ========== MISC COMPONENTS ========== */
.confirmation-message {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 30px 18px;
  font-size: 1.14rem;
  color: var(--color-primary-dark);
  margin: 16px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ========== FOCUS STYLES FOR ACCESSIBILITY ========== */
:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
::-webkit-input-placeholder{color:#B9BCCC;}
::-moz-placeholder{color:#B9BCCC;}
:-ms-input-placeholder{color:#B9BCCC;}
::placeholder{color:#B9BCCC;}

/* ========== MICRO-INTERACTIONS ========== */
.card, .service-card, .testimonial-card, .faq-item, .blog-post-preview {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover, .blog-post-preview:hover {
  box-shadow: 0 12px 30px 0 rgba(21,50,88,0.16);
  transform: translateY(-2px) scale(1.01);
}
.cta, .cta.primary, .cookie-btn {
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, border 0.19s;
}

/* ========== PRINT (FOR TABLE EXPORT ETC) ========== */
@media print {
  header, footer, #cookie-banner, .cookie-banner, .mobile-menu { display: none !important; }
  section, .section, .card, .testimonial-card, .faq-item {
    box-shadow: none;
    background: #fff;
    color: #222;
  }
}
