/* ==== 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;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #233140;
  background: #F3F7F9;
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #E89437;
  text-decoration: none;
  transition: color .18s cubic-bezier(.42,0,.58,1);
}
a:hover, a:focus {
  color: #355264;
  text-decoration: underline;
}

/* ==== BRAND COLORS & FONTS ==== */
:root {
  --primary: #355264;
  --secondary: #E89437;
  --accent: #F3F7F9;
  --text: #233140;
  --white: #fff;
  --error: #e15555;
  --success: #39e37b;
  --shadow: 0 4px 24px 0 rgba(53,82,100,0.08);
  --radius: 18px;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat');
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.20; margin-bottom: 20px; }
h3 { font-size: 1.38rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
h5, h6 { font-size: 1rem; }
p, ul, ol, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
}
ul, ol { padding-left: 22px; }
strong { font-weight: bold; }

/* ==== SECTION, CONTAINER, WRAPPER ====*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

/* ==== HEADER / NAVIGATION ==== */
header {
  background: var(--white);
  box-shadow: 0 6px 24px 0 rgba(53,82,100,0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.logo {
  height: 54px;
  display: flex;
  align-items: center;
  margin-right: 28px;
}
header .container {
  display: flex;
  height: 84px;
  align-items: center;
  justify-content: space-between;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  position: relative;
  transition: background .18s, color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
}
.main-nav .cta {
  background: var(--secondary);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 100px;
  margin-left: 22px;
  font-weight: bold;
  box-shadow: 0 2px 14px 0 rgba(232,148,55,0.12);
  transition: background .18s, color .18s, box-shadow .22s;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 24px 0 rgba(53,82,100,0.16);
  letter-spacing: 1px;
}

/* ==== MOBILE NAV BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--white);
  border: none;
  font-size: 2.25rem;
  padding: 4px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .18s, color .18s;
  z-index: 110;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--primary);
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--white);
  box-shadow: 0 4px 32px 0 rgba(53,82,100,0.17);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  pointer-events: none;
  opacity: 0;
  transition: transform .38s cubic-bezier(.42,0,.58,1), opacity .15s;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.25rem;
  color: var(--primary);
  margin: 24px 0 16px 22px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 40px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.22rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 8px;
  border-radius: 7px;
  background: transparent;
  transition: background .15s, color .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* ==== HERO SECTION ==== */
.hero {
  background: linear-gradient(92deg, #e89437 0%, #355264 85%);
  color: var(--white);
  padding: 60px 0 54px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 720px;
  gap: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: 3rem;
  text-shadow: 0 4px 20px rgba(35,49,64,0.10);
  margin-bottom: 22px;
}
.hero p {
  color: var(--white);
  font-size: 1.22rem;
}
.hero .cta {
  margin-top: 28px;
  background: var(--white);
  color: var(--secondary);
  border-radius: 100px;
  padding: 14px 34px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 3px 14px 0 rgba(232,148,55,0.18);
  transition: background .18s, color .18s, box-shadow .25s;
  text-transform: uppercase;
  letter-spacing: .8px;
  border: none;
}
.hero .cta:hover,
.hero .cta:focus {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 2px 20px 0 rgba(53,82,100,0.18);
}

/* ==== FLEXBOX LAYOUT UTILS (MANDATORY) ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px 20px 22px;
  transition: box-shadow .2s cubic-bezier(.42,0,.58,1), transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px 0 rgba(53,82,100,0.13);
  transform: translateY(-2px) 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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 240px;
  max-width: 395px;
  color: var(--text);
  margin-bottom: 24px;
  flex: 1 1 330px;
  position: relative;
}
.testimonial-stars img {
  width: 24px;
  vertical-align: middle;
  margin-right: 3px;
}
.testimonial-author {
  font-size: 0.97rem;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 6px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 18px 18px 18px;
  width: 100%;
  max-width: 270px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.feature-item:hover {
  box-shadow: 0 7px 32px 0 rgba(53,82,100,0.14);
  transform: scale(1.028);
}
.feature-item img {
  width: 42px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
}

/* ==== SERVICES PREVIEW ==== */
.services-preview ul {
  margin-bottom: 16px;
}
.services-preview li {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--primary);
}
.services-preview a {
  color: var(--white);
  background: var(--secondary);
  border-radius: 100px;
  padding: 11px 28px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .8px;
  box-shadow: 0 2px 9px 0 rgba(232,148,55,0.12);
  transition: background .16s, color .14s, box-shadow .18s;
}
.services-preview a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ==== TESTIMONIALS SECTION ==== */
.testimonials, .testimonials-section {
  background: #fffbe7;
  padding: 44px 0 54px 0;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
}
.ratings-summary {
  background: var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 2px 7px 0 rgba(53,82,100,0.05);
  margin-top: 24px;
}
.review-prompt {
  margin-top: 24px;
  font-size: 1rem;
}
.review-prompt a {
  color: var(--secondary);
  text-decoration: underline;
  word-break: break-all;
}

/* ==== CONTACT SHORT SECTION ==== */
.contact-short {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 48px 0;
}
.contact-short h2 {
  color: var(--white);
  font-size: 2rem;
}
.contact-short p, .contact-short a {
  color: var(--white);
}
.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 18px;
}
.quick-contact p {
  font-size: 1.08rem;
}
.quick-contact img {
  width: 22px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-short .cta-secondary {
  background: var(--secondary);
  color: var(--white);
  border-radius: 100px;
  padding: 12px 28px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 18px;
  display: inline-block;
  text-transform: uppercase;
  transition: background .17s, color .14s, box-shadow .19s;
  box-shadow: 0 2px 9px 0 rgba(53,82,100,0.13);
}
.contact-short .cta-secondary:hover {
  background: var(--white);
  color: var(--secondary);
  box-shadow: 0 5px 18px 0 rgba(232,148,55,0.13);
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 27px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 11px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
  opacity: .94;
  transition: color .18s, opacity .14s;
}
.footer-nav a:hover {
  color: var(--secondary);
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-size: 0.97rem;
  opacity: .82;
  font-family: 'Roboto', sans-serif;
}

/* ==== PAGE-SPECIFIC SECTIONS ==== */
/* About page */
.about-main, .about-features {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 25px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.trust-badges img {
  height: 38px;
  width: 38px;
}
/* Team snippet */
.team-snippet {
  background: var(--accent);
  border-radius: 14px;
  padding: 20px 18px;
  margin-top: 14px;
  box-shadow: 0 2px 8px 0 rgba(53,82,100,0.07);
}

/* Leistungen / Service */
.service-detail-blocks, .value-props-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 14px;
}
.service-detail, .value-prop {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 19px;
  min-width: 220px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-detail:hover, .value-prop:hover {
  box-shadow: 0 8px 28px 0 rgba(232,148,55,0.13);
  transform: translateY(-2px) scale(1.013);
}
.workflow-steps {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--accent);
  border-radius: 10px;
}
.workflow-steps h3 {
  margin-bottom: 8px;
}
.workflow-steps ol {
  margin-left: 20px;
}

/* cta-final (Leistungen / Kontakt) */
.cta-final .cta,
.contact-cta .cta,
.thank-you-main .cta {
  background: var(--secondary);
  color: var(--white);
  border-radius: 100px;
  padding: 13px 33px;
  font-size: 1.14rem;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .18s, color .14s, box-shadow .23s;
  margin-top: 22px;
  box-shadow: 0 3px 12px 0 rgba(53,82,100,0.11);
  letter-spacing: 1.1px;
}
.cta-final .cta:hover, .contact-cta .cta:hover, .thank-you-main .cta:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 22px 0 rgba(53,82,100,0.15);
}

/* Projekte page */
.projects-summary .project-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 20px;
}
.project-summary {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 22px 18px 18px 18px;
  min-width: 235px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.achievements-highlight {
  display: flex;
  flex-direction: row;
  gap: 15px;
  font-size: 0.97rem;
  opacity: .87;
}

/* Kontakt / Adress Info */
.company-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.company-contact-info p {
  font-size: 1.09rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.company-contact-info img {
  width: 22px;
}
.address-map, .opening-hours {
  margin-bottom: 12px;
}
.opening-hours h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

/* FAQ PAGE */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 20px;
}
.faq-item {
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(53,82,100,0.05);
  padding: 19px 17px 14px 17px;
  margin-bottom: 6px;
}
.faq-item h3 {
  margin-bottom: 7px;
  font-size: 1.16rem;
}
.faq-contact-prompt {
  margin-top: 10px;
  font-size: 1rem;
}
.faq-contact-prompt a {
  color: var(--secondary);
  text-decoration: underline;
}

/* THANK YOU PAGE */
.thank-you-main {
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
}
.thank-you-main h1 {
  color: var(--secondary);
  font-size: 2.7rem;
  margin-bottom: 18px;
}

/* LEGAL & POLICY PAGES */
.legal-main, .gdpr-main, .cookie-policy-main, .terms-main {
  margin-bottom: 60px;
  padding: 36px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(53,82,100,0.07);
}
.legal-main ul, .gdpr-main ul, .cookie-policy-main ul, .terms-main ul {
  margin-left: 20px;
  margin-bottom: 18px;
}

/* ==== BUTTONS ==== */
button, .cta, .cta-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  outline: none;
}
button:focus, .cta:focus, .cta-secondary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 -2px 24px 0 rgba(53,82,100,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  gap: 16px;
  min-height: 70px;
  font-size: 1rem;
  animation: slideUp .68s cubic-bezier(.61,-0.23,.48,1.06);
}
@keyframes slideUp {
  from { transform: translateY(96px); opacity: 0.2; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  flex: 1;
  margin-right: 11px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 8px 23px;
  font-size: 1rem;
  font-weight: bold;
  margin-left: 6px;
  transition: background .14s, color .14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--white);
  color: var(--secondary);
}
.cookie-btn.reject {
  background: var(--error);
  color: var(--white);
}
.cookie-btn.reject:hover {
  background: #c33b3b;
  color: var(--white);
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: none;
}
.cookie-btn.settings:hover {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(53,82,100,0.18);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: 20px;
  width: 94vw;
  max-width: 440px;
  padding: 32px 18px 24px 18px;
  box-shadow: 0 9px 42px 0 rgba(53,82,100,0.16);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: modalScaleIn .38s cubic-bezier(.8,-0.2,.3,1.22);
}
@keyframes modalScaleIn {
  from { transform: scale(.82); opacity: 0.2; } to { transform: scale(1.0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-category-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 9px 0;
}
.cookie-category-toggle label {
  flex: 1;
  font-size: 1rem;
  cursor: pointer;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
}
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #e0e6ef;
  border-radius: 26px;
  transition: background .18s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--secondary);
}
.cookie-slider:before {
  position: absolute;
  content: '';
  height: 20px; width: 20px;
  left: 3px; bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 1px 8px 0 rgba(53,82,100,0.10);
  transition: .18s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}

/* ==== ANIMATIONS & MICRO-INTERACTIONS ==== */
.card, .feature-item, .testimonial-card,
.service-detail, .value-prop, .project-summary, .faq-item {
  transition: box-shadow .18s, transform .14s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover,
.service-detail:hover, .value-prop:hover, .project-summary:hover, .faq-item:hover {
  box-shadow: 0 12px 36px 0 rgba(53,82,100,0.13);
  transform: translateY(-2px) scale(1.012);
}

.cta, .cta-secondary {
  transition: background .18s, color .18s, box-shadow .20s, letter-spacing .13s;
}

/* ==== MEDIA QUERIES / RESPONSIVE ==== */
@media (max-width: 1220px) {
  .container { max-width: 98vw; padding: 0 7px; }
}
@media (max-width: 1000px) {
  .service-detail-blocks, .value-props-grid, .project-summaries, .testimonial-slider, .feature-grid {
    gap: 18px;
  }
  .feature-item, .service-detail, .value-prop, .project-summary {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.95rem; }
  .feature-grid,
  .testimonial-slider,
  .testimonial-list,
  .service-detail-blocks,
  .value-props-grid,
  .card-container,
  .projects-summary .project-summaries,
  .content-grid {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
  }
}
@media (max-width: 820px) {
  .main-nav { gap: 0 12px; }
  .logo { height: 44px; }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  header .container { height: 62px; }
  .hero { padding: 34px 0; }
  .services-preview, .features, .testimonials, .testimonials-section, .contact-short,
  .about-main, .about-features, .service-overview, .service-details, .service-benefits, .projects-summary, .projects-types, .thank-you-main, .cookie-policy-main, .legal-main, .gdpr-main, .terms-main {
    padding: 28px 0 18px 0;
    margin-bottom: 30px;
  }
  .content-wrapper { padding: 0 4px; gap: 11px; }
  .hero .container { padding: 0 9px; }
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.43rem; }
  .feature-grid, .service-detail-blocks, .testimonial-list, .testimonial-slider, .projects-summary .project-summaries, .value-props-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .feature-item, .testimonial-card, .card, .service-detail, .value-prop, .project-summary {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    margin-bottom: 15px;
  }
  .quick-contact, .company-contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
  .footer-info {
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 490px) {
  html { font-size: 90%; }
  .container { padding: 0 2vw; }
  .hero h1, .thank-you-main h1 { font-size: 1.12rem; }
  .hero .cta, .cta, .cta-secondary { padding: 10px 8px; font-size: 0.97rem; }
  .cookie-modal { padding: 20px 7px 14px 7px; }
}

/* ==== EXTRA ACCESSIBILITY/MISC ==== */
:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 1.5px;
}
::-webkit-input-placeholder { color: #a0abb7; }
::-moz-placeholder { color: #a0abb7; }
:-ms-input-placeholder { color: #a0abb7; }
::placeholder { color: #a0abb7; }

/* Hide visually but keep for screenreaders */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  white-space: nowrap;
}

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