/* CSS RESET & NORMALIZATION */
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;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  background: #F8F8F8;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
li { list-style: none; }
a { text-decoration: none; color: inherit; }
a:active, a:focus { outline: none; }
* { box-sizing: inherit; }

/* BRAND VARIABLES */
:root {
  --primary: #1B3556;
  --secondary: #AE2529;
  --accent: #F2F2F2;
  --neutral: #232323;
  --light: #fff;
  --shadow-card: 0 8px 24px 0 rgba(30,32,40,0.09);
  --shadow-card-hover: 0 12px 36px 0 rgba(30,32,40,0.13);
  --radius-main: 18px;
  --radius-btn: 26px;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --sp1: 8px;
  --sp2: 16px;
  --sp3: 24px;
  --sp4: 32px;
  --sp5: 60px;
}

/* FONT FACE FALLBACKS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: var(--sp2);
  padding-right: var(--sp2);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* HEADER */
header {
  background: var(--light);
  min-height: 82px;
  box-shadow: 0 2px 16px rgba(30,32,40,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp2);
  padding: var(--sp2) 0;
}
header img[alt="Ranna Ingra Kfz-Service"] {
  height: 48px;
  flex-shrink: 0;
  margin-right: var(--sp2);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp4);
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 8px 0;
  transition: color .2s;
  color: var(--primary);
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.2s cubic-bezier(.25,0,.36,1.14);
  position: absolute;
  bottom: 0;
  left: 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
/* Header CTA */
.cta-btn.primary {
  background: var(--secondary);
  color: var(--light) !important;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-size: 18px;
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-card);
  border: none;
  cursor: pointer;
  margin-left: var(--sp2);
  transition: background .18s, transform .15s, box-shadow .15s;
  line-height: 1.2;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--primary);
  color: var(--accent);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: var(--shadow-card-hover);
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--light);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 52;
  transition: box-shadow .15s, background .17s;
  box-shadow: 0 2px 12px rgba(40,30,52,0.09);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: var(--light);
  z-index: 51;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.76,0,.28,1.06);
  box-shadow: 0 8px 36px rgba(30,32,40,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--secondary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: var(--sp2) var(--sp3) 0 0;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: var(--sp3);
  align-items: flex-start;
  padding: var(--sp4) var(--sp3);
}
.mobile-nav a {
  padding: 15px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--secondary);
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: color .15s;
  border-radius: 8px;
  min-width: 150px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--primary);
  background: var(--accent);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #FAEAED 0%, var(--accent) 80%);
  border-radius: 0 0 var(--radius-main) var(--radius-main);
  margin-bottom: var(--sp5);
  display: flex;
  align-items: center;
  min-height: 340px;
  box-shadow: 0 8px 44px rgba(30,32,40,0.07);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 290px;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp3);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: var(--sp2);
  line-height: 1.18;
}
.hero p {
  font-size: 1.25rem;
  color: var(--neutral);
  max-width: 560px;
  margin-bottom: var(--sp2);
  font-family: var(--font-body);
}
.hero .cta-btn {
  margin-top: var(--sp3);
}

/* SECTION SPACING & FLEX LAYOUTS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--light);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  transition: box-shadow .23s, transform .19s;
  padding: var(--sp3);
  min-width: 260px;
}
.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px) scale(1.025) rotate(-0.5deg);
}
.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;
}

/* Features Lists */
.features-list, .service-list, .team-specialties, .value-list, .features-team ul {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp4);
  margin: var(--sp3) 0;
  padding: 0;
  list-style: none;
}
.features-list li, .service-list li, .team-specialties li, .value-list li, .features-team ul li {
  flex: 1 1 225px;
  background: var(--light);
  border-radius: var(--radius-main);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: var(--sp3);
  box-shadow: var(--shadow-card);
  transition: box-shadow .19s, transform .12s;
}
.features-list li:hover,
.service-list li:hover,
.team-specialties li:hover,
.value-list li:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px) scale(1.015) rotate(-1deg);
}
.features-list img, .service-list img, .value-list img, .team-specialties img {
  width: 38px;
  height: 38px;
  margin-bottom: var(--sp2);
  background: var(--accent);
  padding: 6px;
  border-radius: 10px 16px 16px 10px;
}
.features-list h3, .value-list h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 2px;
}
.features-list p, .value-list p {
  font-size: 1rem;
  color: #3d3d3d;
  font-family: var(--font-body);
}

/* Service-list detailed on Leistungen */
.service-list.detailed {
  gap: var(--sp3);
}
.service-list.detailed li {
  align-items: flex-start;
  gap: var(--sp2);
  min-width: 260px;
  transition: box-shadow .15s;
}
.service-list.detailed li:hover, .service-list.detailed li:focus {
  box-shadow: var(--shadow-card-hover);
}
.service-list.detailed li img {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  margin-right: var(--sp2);
}
.service-list.detailed li div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  flex: 1;
}
.service-toggle-details {
  display: inline-block;
  margin-top: 8px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  background: var(--accent);
  padding: 2px 14px;
  border-radius: 14px;
  transition: background .14s, color .13s;
}
.service-toggle-details:hover {
  background: var(--secondary);
  color: var(--light);
}

/* Table (Preisliste) */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--light);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin: var(--sp3) 0;
  font-size: 1rem;
  overflow: hidden;
}
thead tr {
  background: var(--primary);
  color: var(--light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
th, td {
  text-align: left;
  padding: 18px 16px;
  min-width: 120px;
}
tbody tr { background: var(--light); }
tbody tr:nth-child(even) { background: #f4f2f2; }
td { color: var(--neutral); font-family: var(--font-body); }
th { border-bottom: 2px solid var(--secondary); }
.small-print { font-size: .9rem; margin-top: 10px; color: #726366; }

/* TRUST BADGES & FACTS */
.trust-badges, .quick-facts, .success-metrics, .google-rating {
  display: flex;
  align-items: center;
  gap: var(--sp3);
  margin-top: var(--sp3);
}
.trust-badges img { height: 36px; width: auto; }
.quick-facts strong, .success-metrics strong {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
}
.google-rating img { height: 34px; margin-right: 8px; }
.google-rating span { font-size: 1.18rem; color: var(--primary); font-weight: bold; }

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(93deg, #F3E0EA 0%, #f1f1ef 100%);
  border-radius: var(--radius-main);
  margin-bottom: var(--sp5);
}
.testimonials .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp4);
}
.testimonials h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--sp3);
  letter-spacing: 0.01em;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--light);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 20px;
  margin-bottom: 20px;
  min-width: 320px;
  max-width: 560px;
  transition: box-shadow .15s, transform .13s;
  border-left: 5px solid var(--secondary);
}
.testimonial-card p {
  color: #111;
  font-size: 1.20rem;
  font-style: italic;
  font-family: var(--font-body);
  margin-bottom: 0;
}
.testimonial-meta {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .01em;
  font-family: var(--font-display);
}
.stars {
  display: flex;
  flex-direction: row;
  gap: 2px;
  align-items: center;
}
.stars img {
  width: 18px;
  height: 18px;
  filter: drop-shadow(0 2px 3px #ffe8c1);
}

/* CTAS */
.cta-btn {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--secondary);
  background: var(--accent);
  border-radius: var(--radius-btn);
  border: 2px solid var(--secondary);
  padding: 12px 32px;
  margin-right: var(--sp2);
  font-size: 17px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .18s, color .18s, transform .13s, box-shadow .15s;
  box-shadow: 0 1px 8px rgba(173,41,43,0.07);
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  transform: scale(1.04) translateY(-2px) rotate(-1.5deg);
  box-shadow: var(--shadow-card-hover);
}
/* Secondary button variation for cookie banner */
.cta-btn.secondary {
  background: var(--light);
  border: 2px solid var(--primary);
  color: var(--primary);
}
.cta-btn.secondary:hover {
  background: var(--secondary);
  color: var(--light);
  border-color: var(--secondary);
}

/* ABOUT / INFO / PROMISES */
.about-short, .about, .about-team, .features, .features-team, .promises, .cta-section, .cta-contact, .contact-short, .contact-cta, .contact-team {
  background: var(--light);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
}
.about-short .trust-badges, .features .trust-badges { margin-top: var(--sp2); }
.features h2, .about-short h2, .about h2, .about-team h2, .features-team h2, .promises h2, .cta-section h2, .cta-contact h2, .contact-short h2, .contact-cta h2, .contact-team h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: var(--sp2);
  letter-spacing: 0.01em;
}
.features ul, .about-short ul, .about ul, .about-team ul, .features-team ul, .promises ul {
  margin-left: 0;
}
.features li, .about-short li, .about li, .about-team li, .features-team li, .promises li {
  font-size: 1rem;
  color: var(--neutral);
  margin-bottom: var(--sp2);
  font-family: var(--font-body);
  position: relative;
  padding-left: 22px;
}
.features li::before, .about-short li::before, .about li::before, .about-team li::before, .features-team li::before, .promises li::before {
  content: '\2022';
  color: var(--secondary);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.4em;
  line-height: 1;
  font-weight: bold;
}
.contact-details, .contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp2);
  list-style: none;
  margin: var(--sp3) 0;
}
.contact-details li, .contact-info li {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 10px;
}
.contact-details img, .contact-info img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.contact-highlights {
  display: flex;
  flex-direction: row;
  gap: var(--sp3);
  margin: var(--sp3) 0;
  flex-wrap: wrap;
}
.contact-highlights div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  padding: 8px 22px;
  border-radius: 16px;
  font-size: 1rem;
  color: var(--primary);
}
.contact-highlights img { width: 22px; }

/* THANK YOU PAGE */
.thank-you .container, .thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp4);
}
.thank-you h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: var(--sp3);
}
.next-steps h2 { color: var(--primary); font-size: 1.5rem; margin-bottom: var(--sp2); }
.next-steps ul { margin: 0 auto; margin-bottom: var(--sp3); list-style: none; padding: 0; max-width: 380px; }
.next-steps li { margin-bottom: var(--sp2); font-family: var(--font-body); }

/* TEXT SECTIONS (GDPR, Datenschutz, Richtlinien etc.) */
.text-section {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--neutral);
  line-height: 1.75;
}
.text-section h2 {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1.32rem;
  margin: var(--sp3) 0 var(--sp2) 0;
  font-weight: 800;
}
.text-section ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--sp2);
}
.text-section li {
  margin-bottom: var(--sp2);
  padding-left: 18px;
  position: relative;
}
.text-section li::before {
  content: '\2022';
  color: var(--secondary);
  position: absolute;
  left: 0;
  font-size: 1.4em;
  top: 2px;
  line-height: 1;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--light);
  border-radius: var(--radius-main) var(--radius-main) 0 0;
  box-shadow: 0 -2px 32px rgba(27,53,86,0.11);
  font-size: 1rem;
  padding: 0 0 var(--sp2) 0;
  width: 100%;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--sp3);
  justify-content: space-between;
  padding: 30px var(--sp2) 0 var(--sp2);
  max-width: 1200px;
}
footer nav.main-nav {
  flex-direction: column;
  gap: var(--sp2);
  margin-bottom: var(--sp2);
}
footer .main-nav a {
  color: var(--light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  transition: color .17s;
}
footer .main-nav a:hover, footer .main-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--accent);
  line-height: 1.7;
  margin-bottom: var(--sp2);
}
.footer-social {
  display: flex;
  gap: var(--sp2);
  margin-bottom: var(--sp2);
}
.footer-social a {
  background: var(--secondary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--light);
}
.footer-social img { width: 22px; height: 22px; }
.footer-legal {
  display: flex;
  gap: var(--sp2);
  flex-wrap: wrap;
  font-size: .97rem;
  color: #c9cccc;
}
.footer-legal a {
  color: #e0dede;
  transition: color .13s;
}
.footer-legal a:hover, .footer-legal a:focus { color: var(--secondary); }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: var(--secondary);
  color: var(--light);
  z-index: 100;
  font-family: var(--font-body);
  box-shadow: 0 -6px 32px rgba(173,41,43,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp3);
  padding: 25px 18px 18px 18px;
  animation: fadeInCookie 0.45s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes fadeInCookie {
  0% { transform: translateY(75px); opacity: 0; }
  99% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.02rem;
  margin-right: var(--sp2);
  color: #fff8fa;
}
.cookie-banner .btns {
  display: flex;
  gap: var(--sp2);
}
.cookie-banner .cta-btn {
  min-width: 120px;
  padding: 10px 20px;
  font-size: 1rem;
  margin: 0;
}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,53,86,0.55);
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalOverlay 0.25s linear forwards;
}
@keyframes fadeInModalOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  color: var(--primary);
  font-family: var(--font-body);
  padding: var(--sp4);
  border-radius: var(--radius-main);
  box-shadow: 0 6px 42px rgba(27,53,86,0.13);
  min-width: 340px;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: var(--sp3);
  animation: fadeInCookieModal 0.30s cubic-bezier(.46,0,.19,1) forwards;
  position: relative;
}
@keyframes fadeInCookieModal {
  0% { transform: translateY(20px) scale(.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.3rem;
  font-family: var(--font-display);
  margin-bottom: var(--sp2);
}
.cookie-modal .cookie-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp2);
  padding: 12px 0;
  border-bottom: 1px solid #f2e7e7;
}
.cookie-modal .cookie-group:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-group span {
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-display);
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 22px;
  background: var(--accent);
  border-radius: 12px;
  position: relative;
  transition: background .13s;
  cursor: pointer;
  border: none;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--secondary);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .15s cubic-bezier(.49,0,.34,1.11);
}
.cookie-modal .cookie-toggle[aria-checked="true"]::before {
  transform: translateX(18px);
}
.cookie-modal .cookie-group .cookie-desc {
  font-size: .95rem;
  color: #6a6066;
  margin-left: 15px;
  flex: 1;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--secondary);
  cursor: pointer;
}
.cookie-modal .modal-close:hover { color: var(--primary); }
.cookie-modal .modal-actions {
  display: flex;
  gap: var(--sp2);
  margin-top: var(--sp3);
  justify-content: flex-end;
}
.cookie-modal .cta-btn { padding: 9px 18px; font-size: 1rem; min-width: 100px; }

/* Success Message, Error Message (Optional Use) */
.success-message {
  background: #eaffea;
  color: #217234;
  border-left: 7px solid #37bc60;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: var(--sp2);
  font-family: var(--font-body);
  font-size: 1.1rem;
}
.error-message {
  background: #ffecf0;
  color: #c00424;
  border-left: 7px solid #e46176;
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: var(--sp2);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; font-weight: 900; }
h2 { font-size: 2rem; font-weight: 800; }
h3 { font-size: 1.32rem; font-weight: 800; }
h4 { font-size: 1.12rem; font-weight: 700; }
p, li, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral);
}

/* ARTISTIC DECORATIVE EFFECTS */
h1, h2, .cta-btn, .main-nav a, .mobile-nav a, .footer-contact strong {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}
.hero, .testimonials, .about-short, .about, .features, .cta-section, .service-prices, .contact-short, .contact-cta, .thank-you, .promises {
  /* Subtle shadow and color paws */
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-main);
}
::selection {
  background: var(--secondary);
  color: var(--light);
}

/* MICRO-INTERACTIONS */
.card, .features-list li, .testimonial-card, .cta-btn, .main-nav a, .mobile-nav a {
  transition: box-shadow .15s, transform .12s, background .11s, color .12s;
}
.card:active, .features-list li:active, .testimonial-card:active {
  transform: scale(.99) rotate(0.5deg);
  box-shadow: 0 4px 18px 1px rgba(30,32,40,0.12);
}

/* Z-INDEX FOR MENU AND COOKIE BANNER */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, .cookie-modal {
  z-index: 2000;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 1023px) {
  .main-nav { gap: var(--sp2); }
}
@media (max-width: 900px) {
  .container, header .container, footer .container {
    padding-left: var(--sp2);
    padding-right: var(--sp2);
    flex-wrap: wrap;
  }
  .main-nav { gap: var(--sp2); }
  .footer-social { margin-top: var(--sp2); }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: var(--sp2) 0;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-social {
    gap: 10px;
  }
  .hero {
    min-height: 180px;
    padding: 28px 0 28px 0;
  }
  .hero h1 { font-size: 2rem; }
  section, .section {
    padding: 24px 6px;
    margin-bottom: var(--sp3);
  }
  .card-container, .features-list, .service-list, .value-list, .team-specialties, .features-team ul {
    flex-direction: column;
    gap: var(--sp2);
  }
  .content-grid, .contact-highlights {
    flex-direction: column;
    gap: var(--sp2);
  }
  .about-short, .about, .features, .cta-section, .service-prices, .contact-short, .contact-cta, .thank-you, .promises {
    margin-bottom: var(--sp3);
    padding: var(--sp2) 6px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 15px;
  }
  .testimonials h2 {
    font-size: 1.1rem;
    margin-bottom: var(--sp2);
  }
  table, th, td { font-size: .95rem; }
}
@media (max-width: 560px) {
  html { font-size: 15px; }
  .hero h1, section h2 { font-size: 1.28rem; }
  .cta-btn, .cta-btn.primary { font-size: 1rem; padding: 10px 18px; }
  table, th, td { font-size: .87rem; }
  .testimonial-card, .card {
    padding: 9px;
  }
  .mobile-nav a {
    font-size: 17px; min-width: unset;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp2);
    padding: 18px 8px 9px 8px;
    font-size: .98rem;
  }
  .cookie-banner .btns { gap: 10px; }
  .cookie-modal {
    min-width: 90vw; max-width: 98vw;
    padding: var(--sp2);
  }
}

/* SCROLLBAR (Artistic) */
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 6px;
}

/* PRINT FRIENDLY */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .section { padding: 0 !important; margin-bottom: 16px !important; }
}
