/* ===========================================================
   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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {  line-height: 1; }
ol, ul {  list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }
button, input, select, textarea { font: inherit; }
button { background: none; border: none; cursor: pointer; }
*:focus { outline: 2px solid #2576B5; outline-offset: 2px; } /* visible focus */

/* ===========================================================
   MONOCHROME SOPHISTICATED THEME – BRAND COLORS & FONTS
   =========================================================== */
:root {
  --black: #111111;
  --dark: #181818;
  --grey-1: #222222;
  --grey-2: #353535;
  --grey-3: #545454;
  --grey-4: #7c7c7c;
  --grey-5: #BDBDBD;
  --white: #FFFFFF;
  --off-white: #F6F6F4;
  --brand-primary: #205A44;
  --brand-accent: #2576B5;
  --brand-secondary: #F4EAD5;
}

html {
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--white);
  color: var(--grey-2);
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  background: var(--white);
  min-height: 100vh;
}

/* ===========================================================
   TYPOGRAPHY – ELEGANT, CONTRAST, VISUAL HIERARCHY
   =========================================================== */
body, p, li, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: var(--grey-2);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6, .tagline {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--black);
  letter-spacing: -0.02em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
h4, h5, h6 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.tagline {
  font-size: 1.125rem;
  color: var(--brand-accent);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  font-weight: 500;
}
strong {
  font-weight: bold;
  color: var(--black);
}

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }

  .tagline { font-size: 1rem; }
}

/* ===========================================================
   LAYOUT – CONTAINER, FLEX ONLY, SPACING
   =========================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Section spacing as per requirements */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}
/* Cards and Card Container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 4px 18px 0 rgba(34,34,34,0.09);
  border: 1px solid var(--grey-5);
  padding: 32px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.015);
  z-index: 2;
}

.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 {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* Testimonials and Cards Layout */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--off-white);
  color: var(--black);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(34,34,34,0.07);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 4px solid var(--brand-primary);
  min-width: 230px;
  max-width: 700px;
  transition: box-shadow 0.2s, border-color 0.16s;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card:hover {
  border-left: 4px solid var(--brand-accent);
  box-shadow: 0 4px 16px rgba(37,118,181,0.10);
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--grey-2);
}
.testimonial-card strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--black);
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 15px;
    gap: 12px;
    font-size: 0.97rem;
  }
}

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

/* FEATURES List */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 30px 0 0 0;
  padding: 0;
}
.features-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 180px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--grey-5);
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 10px 0 rgba(34,34,34,0.045);
  margin-bottom: 20px;
  transition: border-color 0.15s, box-shadow 0.2s;
  position: relative;
}
.features-list li:hover {
  border-color: var(--brand-primary);
  box-shadow: 0 4px 20px rgba(32,90,68,0.13);
  z-index: 2;
}
.features-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: grayscale(0.99) contrast(1.4);
}
.features-list strong {
  font-size: 1.125rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  margin-bottom: 7px;
}
@media (max-width: 900px) {
  .features-list {
    gap: 16px;
  }
  .features-list li {
    min-width: 120px;
  }
}
@media (max-width: 640px) {
  .features-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-list li {
    min-width: unset;
    width: 100%;
    padding: 14px 12px 10px 12px;
  }
}

/* SERVICES List (touren, fotografie, etc.) */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.services-list li {
  flex: 1 1 330px;
  min-width: 270px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--grey-5);
  box-shadow: 0 2px 8px rgba(34,34,34,0.055);
  padding: 18px 20px 12px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, border-color 0.16s;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.services-list li h3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  font-size: 1.1rem;
}
.services-list li span {
  font-family: 'Open Sans', monospace, Arial, sans-serif;
  font-size: 1rem;
  color: var(--grey-4);
}
.services-list li:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 6px 28px 0 rgba(37,118,181,0.08);
  z-index: 2;
}
@media (max-width: 780px) {
  .services-list {
    flex-direction: column;
    gap: 14px;
  }
  .services-list li {
    min-width: unset;
    width: 100%;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-embed-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: var(--grey-5);
  border-radius: 8px;
  color: var(--black);
  font-style: italic;
  font-size: 1rem;
  padding: 20px;
  margin: 18px 0;
}

/* =================================================================
   HEADER & NAVIGATION                      
   ================================================================= */
header {
  width: 100%;
  background: linear-gradient(0deg, var(--white) 90%, #f5f7fa 100%);
  border-bottom: 1px solid var(--grey-5);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 22px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--grey-3);
  letter-spacing: 0.01em;
  font-size: 1rem;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.17s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--brand-primary);
  border-bottom: 2px solid var(--brand-accent);
}
header a.cta.primary {
  margin-left: 18px;
}
@media (max-width: 1000px) {
  header .container { gap: 10px; }
  header nav { gap: 12px; }
}
@media (max-width: 790px) {
  header nav { display: none; }
  header a.cta.primary { display: none; }
}

/* LOGO SIZING */
header img, .footer-logo img { height: 38px; width: auto; }
@media (max-width: 768px) {
  header img, .footer-logo img { height: 30px; }
}


/* =================================================================
   CTA & BUTTONS
   ================================================================= */
.cta.primary, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  border-radius: 28px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  background: var(--black);
  color: var(--white);
  border: 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, transform 0.13s;
  box-shadow: 0 1px 8px rgba(32,90,68,0.10);
  margin-top: 8px;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.cta.primary:hover, .cta.primary:focus { background: var(--brand-primary); color: var(--white); transform: scale(1.035); box-shadow: 0 4px 20px rgba(32,90,68,0.18); }
.cta:active { background: var(--brand-accent); }
.cta.secondary {
  background: var(--white);
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--brand-primary);
  color: var(--white);
}
button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.17s, color 0.16s, box-shadow 0.16s;
  border: none;
  background: var(--grey-1);
  color: var(--white);
}
button:hover, .button:hover, button:focus {
  background: var(--brand-accent);
  color: var(--white);
  box-shadow: 0 3px 10px rgba(37,118,181,0.12);
}

/* =================================================================
   MOBILE BURGER MENU
   ================================================================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 27px;
  right: 24px;
  z-index: 100;
  font-size: 2rem;
  background: var(--white);
  color: var(--brand-primary);
  border-radius: 8px;
  border: 1px solid var(--grey-5);
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.15s, background 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  box-shadow: 0 0 2px 2px #BFD8ED;
  background: var(--brand-secondary);
  color: var(--brand-accent);
}
@media (max-width: 790px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;  height: 100vh;
  background: rgba(17,17,17,0.92);
  z-index: 200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.7,.1,.39,.97), opacity 0.2s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 30px 36px 12px auto;
  font-size: 2.2rem;
  color: var(--white);
  background: none;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--brand-accent);
  color: var(--black);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100vw;
  align-items: flex-start;
  margin: 18px 0 0 35px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.19rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  width: calc(100vw - 70px);
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(255,255,255,0.02);
}

@media (min-width: 791px) {  /* Hide mobile elements on desktop */
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =================================================================
   FOOTER
   ================================================================= */
footer {
  width: 100%;
  background: var(--grey-1);
  color: var(--white);
  padding: 0;
  border-top: 1px solid var(--grey-5);
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 38px;
  padding: 36px 18px 24px 18px;
  flex-wrap: wrap;
}
.footer-logo img {
  height: 40px; width: auto;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
footer nav a {
  color: var(--grey-5);
  font-size: 1rem;
  transition: color 0.15s;
  padding: 4px 0;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-accent);
}
.footer-contact {
  color: var(--grey-4);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 24px 10px 12px 10px;
  }
  .footer-logo img { height: 32px; }
}

/* ===============================================================
   COOKIE BANNER + POPUP MODAL
   =============================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(250,250,250,0.975);
  border-top: 1px solid var(--grey-5);
  box-shadow: 0 -2px 15px 0 rgba(34,34,34,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 16px 21px 26px;
  font-size: 1rem;
  color: var(--grey-1);
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1 1 220px;
  color: var(--grey-2);
  margin-right: 8px;
}
.cookie-banner .cookie-actions {
  display: flex; flex-direction: row; gap: 14px;
}
.cookie-banner button {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  border: 1.5px solid var(--brand-primary);
  background: var(--white);
  color: var(--brand-primary);
  transition: background 0.15s, color 0.15s,
    border 0.12s, box-shadow 0.14s;
  min-width: 112px;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: var(--brand-primary);
  color: var(--white);
  margin-left: 10px;
  border: 1.5px solid var(--brand-primary);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: var(--brand-accent);
  color: var(--black);
}
.cookie-banner button.reject {
  background: var(--white);
  color: var(--grey-3);
  border: 1.5px solid var(--grey-4);
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: var(--grey-5);
  color: var(--brand-primary);
}
.cookie-banner button.settings {
  background: var(--off-white);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: var(--brand-accent);
  color: var(--white);
}
@media (max-width: 630px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 5vw 12px 5vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 1100;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,32,32, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  border-radius: 14px;
  padding: 38px 34px 26px 34px;
  max-width: 380px;
  min-width: 260px;
  color: var(--grey-2);
  box-shadow: 0 6px 28px 0 rgba(30,30,30,0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transform: translateY(80px) scale(0.95);
  opacity: 0.98;
  transition: transform 0.28s cubic-bezier(.6,.2,.16,1), opacity 0.18s;
}
.cookie-modal-overlay.open .cookie-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.cookie-modal h2 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--black);
}
.cookie-modal ul {
  padding: 0 0 2px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--grey-5);
  padding-bottom: 7px;
}
.cookie-modal .cookie-category .category-label {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--brand-accent);
  width: 18px; height: 18px;
  border-radius: 4px;
  margin-left: 10px;
}
.cookie-modal .cookie-category .always-on {
  color: var(--brand-accent);
  font-size: 1rem;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  min-width: 98px;
  padding: 7px 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  font-size: 1.3rem;
  color: var(--grey-2);
  background: none;
  border-radius: 7px;
  width: 28px; height: 28px;
  display: flex;
  align-items: center; justify-content: center;
  transition: background 0.16s, color 0.15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

@media (max-width: 400px) {
  .cookie-modal { padding: 18px 8px 14px 9px; max-width: 96vw; }
  .cookie-modal h2 { font-size: 1rem; }
}

/* ==============================================================
   TABLES, FORMS, MISC (For Complete Consistency)
   ==============================================================
*/
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(34,34,34,0.03);
}
th, td {
  border: 1px solid var(--grey-5);
  text-align: left;
  padding: 10px 14px;
  font-size: 1rem;
}
th { background: var(--grey-5); color: var(--black); }
tr:nth-child(even) { background: var(--off-white); }

input, textarea, select {
  font-size: 1rem;
  border-radius: 7px;
  border: 1.5px solid var(--grey-5);
  padding: 8px 13px;
  margin-bottom: 16px;
  width: 100%;
  background: var(--off-white);
  color: var(--grey-2);
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid var(--brand-accent);
  background: var(--white);
  color: var(--black);
}
label { font-weight: 600; color: var(--grey-3); margin-bottom: 6px; display: block; font-size: 1rem; }

hr {
  border: 0;
  border-top: 1px solid var(--grey-5);
  margin: 38px 0;
}

/* =================================================================
   MISCELLANEOUS CLASSES
   ================================================================= */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-center { justify-content: center; align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.hidden { display: none !important; }

/* =============================================================
   ANIMATIONS, MICRO-INTERACTIONS
   ============================================================= */
a, button, .cta, .card, .services-list li, .features-list li, .testimonial-card {
  transition: box-shadow 0.16s, color 0.18s, background 0.18s, transform 0.15s, border-color 0.15s;
}
.card:focus-within { outline: 2px solid var(--brand-accent); outline-offset: 2px; }
.card, .features-list li, .services-list li { will-change: transform, box-shadow; }

/* Subtle fade in */
@media (prefers-reduced-motion: no-preference) {
  body { animation: fadeIn 0.6s cubic-bezier(.7,.2,.15,1) 1; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: none; }
}
/* Fade in from below for cards */
.card, .services-list li, .features-list li, .testimonial-card {
  animation: fadeInCard 0.7s cubic-bezier(.6,.17,.4,1) backwards;
}
@keyframes fadeInCard {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}


/* =============================================================
   RESPONSIVE DESIGN (Mobile-First)
   ============================================================= */
@media (max-width: 980px) {
  .container { max-width: 97vw; }
  footer .container { flex-direction: column; gap: 18px; }
}
@media (max-width: 700px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .container { padding: 0 6px; }
  .section { padding: 18px 6px; }
}
@media (max-width: 490px) {
  header .container, .footer .container { padding: 8px 2vw; }
  .card, .services-list li, .features-list li { padding: 10px 6px 8px 8px; }
}

/* =============================================================
   PRINT FRIENDLY
   ============================================================= */
@media print {
  header, footer, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body { background: #fff; color: #000; }
  .container { max-width: 100%; padding: 0; }
  .section { padding: 0; margin-bottom: 20px; }
}
