/* === Scandinavian Clean Website CSS for WhizzyHub Renovierung === */

/* -- 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, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html { box-sizing: border-box; height: 100%; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; height: 100%; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img, picture { max-width: 100%; height: auto; border: 0; display: block; }
table { border-collapse: collapse; border-spacing: 0; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* === BRAND & DESIGN VARIABLES === */
:root {
  --color-primary: #22476D;
  --color-secondary: #F2F2F2;
  --color-accent: #F3A239;
  --color-bg: #FAFAFA;
  --color-bg-strong: #FFFFFF;
  --color-heading: #22476D;
  --color-text: #28323C;
  --color-border: #E3E6E8;
  --color-shadow: rgba(34, 71, 109, 0.08);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --radius-soft: 12px;
  --radius-card: 18px;
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
  --shadow-card: 0 2px 8px var(--color-shadow);
  --shadow-strong: 0 8px 32px rgba(34,71,109,0.13);
  --header-height: 72px;
}

/* === BASE TYPOGRAPHY === */
body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-heading);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
p, li, address {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.7;
}
strong { font-weight: 600; color: var(--color-primary); }

.text-section, .text-section p, .text-section ul, .text-section li {
  color: var(--color-text);
  font-size: 1rem;
}
.text-section h2, .text-section h3 {
  color: var(--color-heading);
}

ul {
  margin-bottom: 20px;
  padding-left: 22px;
  list-style: disc inside;
}
ul li {
  margin-bottom: 8px;
}
ol {
  margin-bottom: 20px;
  padding-left: 28px;
  list-style: decimal inside;
}
ol li { margin-bottom: 10px; }

@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.02rem; }
}

/* === GLOBAL CONTAINERS & SECTIONS === */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 768px) {
  .section { padding: 32px 9px; margin-bottom: 38px; }
}

/* === HEADER & NAVIGATION === */
header {
  background: var(--color-bg-strong);
  box-shadow: 0 2px 12px rgba(34,71,109,0.032);
  position: sticky;
  top: 0;
  z-index: 26;
}
.main-nav {
  display: flex;
  align-items: center;
  min-height: var(--header-height);
  justify-content: space-between;
  gap: 32px;
  position: relative;
  width: 100%;
}
.main-nav > a img {
  display: block;
  height: 38px;
  width: auto;
  margin-right: 24px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul li { margin-bottom: 0; }
.main-nav ul li a {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 500;
  padding: 2px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.cta-btn {
  font-family: var(--font-display);
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-soft);
  font-size: 1.03rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 12px rgba(34,71,109,0.09);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  letter-spacing: 0.01em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 4px 22px rgba(34,71,109,0.14);
  transform: translateY(-1px) scale(1.024);
}
.cta-btn-large {
  font-size: 1.17rem;
  padding: 15px 42px;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  background: none;
  border: none;
  padding: 9px 12px;
  margin-left: 8px;
  z-index: 1002;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; height: 100%; width: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.42,0,.58,1);
  box-shadow: 0 8px 32px var(--color-shadow);
  z-index: 1001;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(.42,0,.58,1);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  margin: 20px 22px 12px 0;
  color: var(--color-primary);
  background: none;
  border-radius: 8px;
  transition: background var(--transition);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 21px;
  margin: 0 34px;
  margin-bottom: 44px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-bottom var(--transition);
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

@media (max-width: 1024px) {
  .main-nav ul { gap: 20px; }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 12px; }
  .main-nav .cta-btn { padding: 12px 18px; }
}
@media (max-width: 850px) {
  .main-nav ul { display: none; }
  .main-nav .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; position: absolute; right: 16px; top: 15px; }
}
@media (max-width: 600px) {
  .mobile-nav { gap: 13px; margin: 0 12px 24px 18px; }
  .mobile-menu-close { margin: 11px 10px 8px 0; }
}

/* === HERO SECTIONS === */
.hero, .about-hero, .services-hero, .projects-hero, .prices-hero, .contact-hero, .thank-you-message {
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  min-height: 330px;
  padding-top: 52px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--color-border);
}
.hero .container, .about-hero .container, .services-hero .container, .projects-hero .container,
.prices-hero .container, .contact-hero .container, .thank-you-message .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper,
.about-hero .content-wrapper,
.services-hero .content-wrapper,
.projects-hero .content-wrapper,
.prices-hero .content-wrapper,
.contact-hero .content-wrapper, .thank-you-message .content-wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.hero p,
.about-hero p,
.services-hero p,
.projects-hero p,
.prices-hero p,
.contact-hero p, .thank-you-message p {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

@media (max-width: 700px) {
  .hero, .about-hero, .services-hero, .projects-hero, .prices-hero, .contact-hero, .thank-you-message {
    min-height: 220px;
    padding-top: 18px;
    padding-bottom: 16px;
  }
}

/* === FEATURE GRID === */
.features {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 8px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  max-width: 320px;
  transition: box-shadow var(--transition), transform var(--transition);
  margin-bottom: 20px;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}
.feature-item h3 {
  margin-bottom: 0;
}
.feature-item p {
  font-size: 0.98rem;
  line-height: 1.5;
  color: var(--color-text);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px) scale(1.028);
}

/* === SERVICES TILE GRID === */
.service-tile-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
  margin-bottom: 12px;
  justify-content: space-between;
}
.service-tile {
  background: var(--color-bg-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.service-tile img {
  width: 42px; height: 42px; }
.service-tile h3 { margin-bottom: 0; }
.service-tile p { font-size: 0.98rem; color: var(--color-text); }
.service-tile:hover, .service-tile:focus-within {
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px) scale(1.025);
}

@media (max-width: 900px) {
  .feature-grid, .service-tile-grid {
    gap: 19px;
    justify-content: flex-start;
  }
}
@media (max-width:600px){
  .feature-grid, .service-tile-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-tile {
    min-width: 0; max-width: 100%; width: 100%;
  }
}

/* === GENERIC CONTENT GRIDS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-strong);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 27px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: var(--shadow-strong);
  transform: translateY(-1.5px) scale(1.018);
}
.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;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* === TESTIMONIALS === */
.testimonials, .testimonial-snippets {
  background: var(--color-secondary);
  padding: 55px 0 44px 0;
}
.testimonials .container, .testimonial-snippets .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-card);
  padding: 20px 26px 22px 22px;
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 5px solid var(--color-accent);
  font-family: var(--font-body);
}
.testimonial-card p,
.testimonial-card strong {
  color: #28323C;
  font-size: 1.06rem;
}
.testimonial-card strong {
  margin-top: 7px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--color-primary);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 28px rgba(34,71,109,0.10);
  transform: translateY(-3px) scale(1.025);
}
@media (max-width: 700px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 0; max-width: 100%; width: 100%;
    padding: 17px 10px 19px 13px;
  }
}

/* === CTA BAND === */
.cta-band {
  background: var(--color-accent);
  color: #fff;
  padding: 32px 0 40px 0;
  text-align: center;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 8px 32px rgba(243,162,57,0.09);
  font-family: var(--font-display);
  margin: 32px 0 0 0;
}
.cta-band h2 { color: #fff; margin-bottom: 18px; }
.cta-band .cta-btn, .cta-band .cta-btn-large {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 3px 14px rgba(243,162,57,0.10);
  border-radius: var(--radius-soft);
  font-size: 1.15rem;
}
.cta-band .cta-btn:hover, .cta-band .cta-btn:focus, .cta-band .cta-btn-large:hover, .cta-band .cta-btn-large:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 6px 18px rgba(34,71,109,0.14);
}

/* === FOOTER === */
footer {
  background: var(--color-bg-strong);
  border-top: 1px solid var(--color-border);
  font-size: 0.97rem;
  margin-top: 30px;
  padding-top: 32px;
  padding-bottom: 27px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 0 0 2px 0;
  transition: color var(--transition);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-legal ul, .footer-legal {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-legal a {
  color: #5478af;
  font-size: 0.94rem;
  transition: color var(--transition);
}
.footer-legal a:hover, .footer-legal a:focus {
  color: var(--color-accent);
}
.footer-contact address, .footer-contact div {
  color: var(--color-primary);
  font-size: 0.98rem;
}
.footer-contact a { 
  color: var(--color-accent); text-decoration: underline;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: var(--color-primary);
}
.footer-nav .cta-btn {
  margin-top: 17px;
  font-size: 1rem;
  padding: 11px 28px;
  background: var(--color-accent);
  color: #fff;
}
.footer-nav .cta-btn:hover, .footer-nav .cta-btn:focus {
  background: var(--color-primary); color: #fff;
}
@media (max-width: 900px) {
  .footer-wrapper {
    gap: 30px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* === PRICING TABLE === */
.pricing-table table {
  width: 100%;
  background: var(--color-bg-strong);
  border-radius: var(--radius-soft);
  font-size: 1rem;
  box-shadow: var(--shadow-card);
  border-collapse: collapse;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 13px 14px;
  text-align: left;
}
.pricing-table thead th {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1.07rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 2px solid var(--color-border);
}
.pricing-table tbody td {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  background: #fff;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 700px) {
  .pricing-table table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    margin-bottom: 20px;
    box-shadow: 0 1px 6px rgba(34,71,109,0.04);
  }
  .pricing-table td {
    padding: 8px 10px;
    border: none;
    border-bottom: 1px solid var(--color-border);
  }
}

/* === ADDITIONAL SECTIONS (ABOUT/USPS/ETC) === */
.company-values ul, .usp ul, .project-highlights ul {
  margin-top: 0;
  margin-bottom: 14px;
  padding-left: 10px;
}
.company-values ul li, .usp ul li, .project-highlights ul li {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-text);
  margin-bottom: 9px;
  line-height: 1.6;
}

/* === SCROLLBARS (subtle, light, clean) === */
body, .main-nav ul, .mobile-menu, .container, .content-wrapper {
  scrollbar-width: thin;
  scrollbar-color: var(--color-secondary) var(--color-bg-strong);
}
body::-webkit-scrollbar {
  width: 8px;
  background: var(--color-secondary);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

/* === FORMS (NATURAL, CLEAN) === */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-soft);
  background: var(--color-bg-strong);
  margin-bottom: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  color: var(--color-text);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 1.5px var(--color-accent);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 -4px 24px rgba(34,71,109,0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw 22px 6vw;
  z-index: 2002;
  transition: transform 0.35s cubic-bezier(.5,0,.6,1), opacity 0.23s;
  opacity: 1;
  gap: 24px;
  font-family: var(--font-body);
  font-size: 1.01rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner-content {
  flex: 1 1 auto;
  color: var(--color-text);
  margin-right: 24px;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 17px;
  border-radius: var(--radius-soft);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-display);
  border: none;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-accent);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    padding: 22px 4vw;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner-actions { width: 100%; justify-content: flex-start; gap: 10px; }
}

/* === COOKIE SETTINGS MODAL === */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; height: 100%; width: 100vw;
  background: rgba(34,71,109,0.26);
  z-index: 2004;
  display: none;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.38s cubic-bezier(.38,0,.51,1);
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 34px 28px 26px 28px;
  box-shadow: 0 8px 32px rgba(34,71,109,0.10);
  max-width: 375px;
  min-width: 260px;
  width: 96%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  font-size: 1.92rem;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  transition: background var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-secondary);
}
.cookie-modal h3 {
  font-size: 1.22rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 13px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  background: var(--color-secondary);
  border-radius: var(--radius-soft);
  padding: 8px 12px;
  width: 100%;
}
.cookie-category label {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  user-select: none;
  flex: 1 1 auto;
}
.cookie-category input[type='checkbox'] {
  accent-color: var(--color-accent);
  width: 19px; height: 19px;
}
.cookie-category input[type='checkbox'][disabled] {
  accent-color: var(--color-primary);
  opacity: 0.56;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-actions button {
  padding: 9px 17px;
  border-radius: var(--radius-soft);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-display);
  border: none;
  background: var(--color-accent);
  color: #fff;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-actions .cancel {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal-actions .save:hover, .cookie-modal-actions .save:focus {
  background: var(--color-primary);
}

@media (max-width: 500px) {
  .cookie-modal-content {
    padding: 15px 7px 13px 9px;
    max-width: 98vw;
  }
}

/* === GENERIC MARGINS & SPACING === */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px) {
  section, .section {
    margin-bottom: 32px;
    padding: 24px 7px;
  }
}
.text-section {
  margin-bottom: 12px;
}
div + ul, div + ol {
  margin-top: 10px;
}

/* === MICRO-INTERACTIONS === */
.cta-btn, .cta-band .cta-btn, .footer-nav .cta-btn, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
}
.button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* === ACCESSIBILITY: FOCUS VISIBLE === */
:focus-visible {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
}

/* === COLORS & CONTRASTS === */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #28323C;
  background: #fff;
  border-left: 5px solid var(--color-accent);
  /* contrast AAA on card backgrounds */
}

/* === RESPONSIVE LAYOUT ADJUSTMENTS === */
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
    max-width: 100vw;
  }
  .main-nav {
    min-height: 54px;
    padding-right: 18px;
  }
}

/* === PRINT STYLES === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}

/* ==== Utility classes ==== */
.mb-1 { margin-bottom: 7px !important; }
.mb-2 { margin-bottom: 14px !important; }
.mt-1 { margin-top: 7px !important; }
.mt-2 { margin-top: 14px !important; }
p:last-child, ul:last-child { margin-bottom: 0; }

/* === NATURAL MATERIAL FEEL === */
.feature-item, .service-tile, .card, .testimonial-card, .pricing-table table {
  background-color: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* ================= */
/* END OF CSS FILE   */
/* ================= */
