/* =======================
   CSS RESET & BASE SETUP
   ======================= */
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, 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 {
  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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #151518;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ==================
   BRAND VARIABLES
   ================== */
:root {
  --color-primary: #384A5E;
  --color-secondary: #FAF3E7;
  --color-accent: #9B326F;
  --color-gray-dark: #151518;
  --color-gray-light: #F7F7F7;
  --color-white: #fff;
  --color-black: #111114;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ===============
   TYPOGRAPHY
   =============== */
body, input, button, textarea {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-gray-dark);
  background: var(--color-white);
  letter-spacing: 0.01em;
}
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, address {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-gray-dark);
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-black);
  border-left: 4px solid var(--color-primary);
  padding-left: 16px;
  margin: 8px 0 12px 0;
  background: var(--color-gray-light);
}

/* ===========================
   GLOBAL CONTAINER & SECTIONS
   =========================== */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: var(--color-gray-light);
  border-bottom: 1px solid #e5e5e7;
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1rem;
  padding: 4px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:not(.cta-primary):hover {
  color: var(--color-accent);
}
.main-nav .cta-primary {
  margin-left: 12px;
}

/* MOBILE BURGER NAV */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px 12px;
  position: relative;
  z-index: 120;
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,20,20,0.96);
  z-index: 2000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  animation: slidein-menu 0.36s cubic-bezier(.77,0,.18,1);
}
@keyframes slidein-menu {
  from {
    opacity: 0;
    transform: translateX(100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  z-index: 2100;
  padding: 4px 12px;
}
.mobile-nav {
  margin-top: 80px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 0 44px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  padding: 4px 0;
  width: 100%;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 1050px) {
  .main-nav a:not(.cta-primary) { font-size: .95rem; }
  header .container { gap: 6px; }
}
@media (max-width: 950px) {
  .main-nav a:not(.cta-primary) { font-size: .92rem; }
}
@media (max-width: 850px) {
  .main-nav a:not(.cta-primary) { font-size: .89rem; }
}
@media (max-width: 820px) {
  .main-nav { gap: 16px; }
}
@media (max-width: 780px) {
  header .container { gap: 4px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo img {
    height: 40px;
  }
}

/* =============================
   CTA BUTTONS & INTERACTIONS
   ============================= */
.cta-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: .01em;
  padding: 12px 36px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  box-shadow: 0 2px 10px 0 rgba(60,60,60,0.08);
  cursor: pointer;
  outline: none;
  text-align: center;
  transition: background 0.17s, box-shadow 0.17s, transform 0.23s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 7px 26px 0 rgba(40,40,40,0.17);
  transform: translateY(-2px) scale(1.035);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: linear-gradient(135deg, #fff 60%, #EEE 100%);
  border-bottom: 2px solid #e5e5e7;
  padding: 60px 0 42px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  text-shadow: 0 2px 16px rgba(55,55,55,0.09);
  margin-bottom: 14px;
}
.hero p {
  color: #313133;
  font-size: 1.15rem;
  max-width: 540px;
}
.hero .cta-primary {
  margin-top: 18px;
  font-size: 1.1rem;
}

@media (max-width: 640px) {
  .hero { padding: 36px 0 28px 0; }
  .hero h1 { font-size: 2rem; }
}

/* ========================
   FEATURES / Vorteile
   ======================== */
.features {
  background: var(--color-gray-light);
  border-bottom: 1px solid #ececec;
  padding: 50px 0 16px 0;
}
.features .content-wrapper {
  align-items: flex-start;
  gap: 29px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.feature-grid li {
  flex: 1 1 190px;
  min-width: 190px;
  max-width: 270px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(60,60,60,0.07);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.5px solid #e7e7e7;
  transition: box-shadow 0.23s, transform 0.22s;
}
.feature-grid li:hover {
  box-shadow: 0 12px 44px 0 rgba(30,30,30,0.13);
  transform: translateY(-3px) scale(1.03);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
}
.feature-grid h3 {
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1.07rem;
}
.feature-grid p {
  color: #212124;
  font-size: 0.95rem;
  margin: 0;
}

/* =====================
   SERVICES OVERVIEW
   ===================== */
.services-overview {
  background: #fff;
  padding: 52px 0 24px 0;
  margin-bottom: 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 16px;
  margin-top: 10px;
}
.service-list > div {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 320px;
  background: var(--color-gray-light);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(74,74,78,.06);
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.5px solid #e9e9ec;
  transition: box-shadow 0.2s, transform 0.22s;
}
.service-list > div:hover {
  box-shadow: 0 8px 32px 0 rgba(50,50,60,0.11);
  transform: scale(1.025);
}
.service-list h3 { color: var(--color-accent); font-weight: 600; }
.service-list p { color: #212124; font-size: .97rem; margin: 0; }

.services-overview .cta-primary { margin-top: 18px; }

@media (max-width: 930px) {
  .service-list { gap: 20px; }
  .feature-grid { gap: 18px; }
}
@media (max-width: 768px) {
  .feature-grid, .service-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 18px;
  }
  .feature-grid li, .service-list > div {
    max-width: 100%;
  }
}

/* =======================
   TESTIMONIALS SECTION
   ======================= */
.testimonials {
  background: var(--color-white);
  padding: 52px 0 40px 0;
}
.testimonials .content-wrapper { gap: 28px; align-items: flex-start; }

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 24px 20px 24px;
  background: #fff;
  border-radius: 18px;
  border: 1.2px solid #e8e8ee;
  box-shadow: 0 3px 18px 0 rgba(25,25,24,0.08);
  min-width: 210px;
  max-width: 380px;
  flex: 1 1 300px;
  position: relative;
  transition: box-shadow 0.2s, transform .22s;
}
.testimonial-card blockquote {
  color: #111114;
  font-family: var(--font-body);
  font-weight: 500;
  background: transparent;
  margin: 0 0 10px 0;
}
.testimonial-card .testimonial-author {
  display: block;
  font-size: 0.97rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  margin-left: 0;
  letter-spacing: 0.01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(60,40,60,0.13);
  transform: scale(1.025);
}
.trust-signals {
  margin-top: 18px;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  opacity: 0.8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-weight: 500;
}
@media (max-width: 900px) {
  .testimonial-list { gap: 18px; }
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ====================
   CTA BANNER SECTION
   ==================== */
.cta {
  background: linear-gradient(90deg, #F3F3F3, #fff 85%);
  padding: 36px 0 40px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
}
.cta h2 {
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 2rem;
}
.cta p {
  color: #272728;
}
.cta .cta-primary {
  margin-top: 12px;
}

/* ================
   VALUE CARD LISTS
   ================ */
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.value-list li {
  background: var(--color-gray-light);
  border-radius: 16px;
  border: 1.3px solid #e5e6ea;
  box-shadow: 0 2px 14px 0 rgba(60,60,70,0.06);
  padding: 26px 20px 22px 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.value-list li:hover {
  box-shadow: 0 10px 32px 0 rgba(40,40,40,0.18);
  transform: translateY(-3px) scale(1.02);
}
.value-list img {
  width: 42px;
  min-width: 42px;
  height: 42px;
  margin-top: 2px;
}
.value-list h3 {
  color: var(--color-primary);
  font-size: 1.08rem;
}
.value-list p { margin: 0; }

@media (max-width: 768px) {
  .value-list {
    flex-direction: column;
    gap: 16px;
  }
  .value-list li {
    max-width: 100%;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ===================
   SERVICE CARDS
   =================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(60,60,60,0.06);
  border: 1.5px solid #ececec;
  padding: 28px 20px 22px 20px;
  min-width: 190px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.21s, transform 0.22s;
}
.service-card:hover {
  box-shadow: 0 7px 36px 0 rgba(40,30,40,0.11);
  transform: scale(1.022);
}
.service-card h3 { color: var(--color-accent); font-weight: 600; }
.service-card .service-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  margin-top: 7px;
}

@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ================
   CONTACT DETAILS
   ================ */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.contact-details > div {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #edeef0;
  padding: 18px 18px 14px 18px;
  box-shadow: 0 2px 10px 0 rgba(45,45,45,0.07);
  min-width: 180px;
  flex: 1 1 200px;
  margin-bottom: 20px;
}
.contact-details h3 { color: var(--color-primary); font-size: 1.04rem; }
.contact-details p, .contact-details address {
  font-size: .97rem;
  color: #232325;
}
.contact-details a { color: var(--color-accent); word-break: break-all; }

@media (max-width: 768px) {
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .contact-details > div {
    width: 100%;
    min-width: 0;
  }
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.cta-contact .cta-primary {
  margin-bottom: 7px;
}

/* ===================
   PRICING TABLE
   =================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 14px 0;
}
table th, table td {
  font-family: var(--font-body);
  padding: 15px 10px 13px 10px;
  text-align: left;
  border-bottom: 1.5px solid #ececec;
  font-size: 1rem;
}
table th {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  background: #f7f9fa;
}
table tr:last-child td {
  border-bottom: none;
}
table tr:hover td {
  background: #faf7fa;
  color: var(--color-accent);
}
@media (max-width: 640px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead { display: none; }
  table tr {
    margin-bottom: 18px;
    border-bottom: 2px solid #ececec;
    box-shadow: 0 2px 9px 0 rgba(70,70,70,0.05);
  }
  table td::before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--color-primary);
    display: block;
    margin-bottom: 6px;
  }
  table td {
    padding-left: 0;
    min-width: 150px;
    border-bottom: none;
  }
}

.pricing-note {
  background: #f3f3f4;
  color: #1c1c1c;
  font-size: .97rem;
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 16px;
}

/* =======================
   GALLERY-CTA SECTION
   ======================= */
.gallery-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-gray-light);
  border-radius: 10px;
  border: 1.2px solid #ededed;
  padding: 18px 18px 14px 18px;
  margin-top: 10px;
  margin-bottom: 0;
}
.gallery-cta p {
  color: var(--color-primary);
  font-weight: 500;
}
@media (max-width: 540px) {
  .gallery-cta { padding: 14px 8px; }
}

/* ===================
   CONFIRMATION PAGE
   =================== */
.confirmation {
  background: linear-gradient(96deg, #F8F8F8, #fff 93%);
  padding: 46px 0 26px;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 10px;
}
.confirmation h1 { color: var(--color-primary); margin-bottom: 8px; }
.confirmation p { color: #222225; margin-bottom: 12px; }
.confirmation ol {
  text-align: left;
  list-style-position: inside;
  margin-bottom: 16px;
}

/* ===================
   FOOTER
   =================== */
footer {
  background: var(--color-gray-dark);
  color: #fff;
  padding: 38px 0 8px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}
footer .footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.99rem;
  opacity: 0.88;
  transition: color 0.2s, text-decoration 0.15s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: .99rem;
  font-weight: 500;
  opacity: .70;
  letter-spacing: 0.015em;
}

/* ===================
   RESPONSIVE RULES
   =================== */
@media (max-width: 1024px){
  .container { max-width: 94vw; }
}
@media (max-width: 800px) {
  .container { padding: 0 12px; }
  .service-list { gap: 12px; }
}
@media (max-width: 640px) {
  .container { max-width: 99vw; padding: 0 7px; }
  .content-wrapper { gap: 10px; }
  .section { margin-bottom: 42px; padding: 28px 7px; }
  .footer-brand, footer .footer-nav a { font-size: .93rem; }
  .footer-nav { gap: 12px; }
}
@media (max-width: 480px) {
  .container { max-width: 100vw; padding: 0 2vw; }
  .section { padding: 22px 2vw; }
}

/* =============================
   COOKIE CONSENT BANNER + MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 4999;
  background: #181820;
  color: #fff;
  border-top: 2px solid var(--color-primary);
  box-shadow: 0 -2px 22px 0 rgba(24,18,24,0.15);
  padding: 22px 10vw 22px 10vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.29s cubic-bezier(.53,0,.19,1), opacity 0.2s;
  font-size: 1.03rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 300px;
  margin-right: 18px;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-buttons button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  outline: none;
  box-shadow: 0 2px 10px 0 rgba(60,60,60,0.07);
  margin: 0 0 0 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform .15s;
}
.cookie-buttons .accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-buttons .accept:hover, .cookie-buttons .accept:focus {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.055);
}
.cookie-buttons .reject {
  background: #fff;
  color: var(--color-black);
  border: 1.7px solid var(--color-accent);
}
.cookie-buttons .reject:hover, .cookie-buttons .reject:focus {
  background: #dedede;
  color: var(--color-accent);
  transform: scale(1.02);
}
.cookie-buttons .settings {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid #FFF;
}
.cookie-buttons .settings:hover, .cookie-buttons .settings:focus {
  background: #fff;
  color: var(--color-black);
  border: 1.5px solid var(--color-primary);
  transform: scale(1.02);
}

@media (max-width: 768px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px;
    gap: 12px;
    font-size: .99rem;
  }
  .cookie-buttons {
    gap: 12px;
  }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 7000;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1.09);
  min-width: 320px;
  max-width: 97vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 44px 0 rgba(23,21,36,0.32);
  padding: 32px 26px 26px 26px;
  color: #151518;
  animation: show-cookie-modal 0.26s cubic-bezier(.8,0,.16,1);
}
.cookie-modal.active {
  display: block;
  animation: show-cookie-modal 0.32s cubic-bezier(.61,0,.31,1);
}
@keyframes show-cookie-modal {
  from {
    opacity: 0;
    transform: translate(-50%,-50%) scale(.92);
  }
  to {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1.00);
  }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-family: var(--font-display);
}
.cookie-modal .cookie-category {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-accent);
}
.cookie-modal .cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: var(--color-primary);
  width: 19px; height: 19px;
}
.cookie-modal .cookie-category input[disabled] {
  opacity: 0.68;
}
.cookie-modal .cookie-category label { color: var(--color-primary); }
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  outline: none;
  box-shadow: 0 2px 9px 0 rgba(70,70,70,0.08);
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .cookie-modal-actions .accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-modal .cookie-modal-actions .accept:hover, .cookie-modal .cookie-modal-actions .accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal .cookie-modal-actions .cancel {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-modal .cookie-modal-actions .cancel:hover,
.cookie-modal .cookie-modal-actions .cancel:focus {
  background: var(--color-gray-light);
}
@media (max-width: 600px){
  .cookie-modal { min-width: 230px; padding: 20px 7vw 16px 7vw; }
}

/* ==============
   UTILITIES
   ============== */
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 16px !important; }
.section:last-child { margin-bottom: 0; }

/* SPACING AND FLEX LAYOUTS (PROJECT MANDATORY) */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

@media (max-width: 768px){
  .text-image-section { flex-direction: column; gap: 16px; }
  .content-grid { flex-direction: column; gap: 12px; }
  .card-container { flex-direction: column; gap: 14px; }
}

/* ===============
   SCROLLBAR STYLE
   =============== */
body::-webkit-scrollbar { width: 12px; background: #f9f9fa; }
body::-webkit-scrollbar-thumb { background: #cccccc; border-radius: 7px; }

/* Hide scroll on mobile menu when open */
body.mobile-menu-open { overflow: hidden !important; }

/* Transitions for interactive elements */
a, button, .cta-primary, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.16s, background 0.18s, box-shadow 0.16s, transform 0.18s;
}

/* Focus visible outline for accessibility */
a:focus, button:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ==============
   PRINT SUPPORT
   ==============
*/
@media print {
  header, footer, .hero, .cookie-banner, .mobile-menu { display: none !important; }
  .container { max-width: 100vw !important; }
}
