/* ---------------- CSS RESET & BASELINE ---------------- */
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,
main, 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; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232f38;
  background: #F5F7FA;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; display: block; }
a { color: #285679; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #167A2B; }
ul, ol { list-style-position: inside; padding-left: 0; }
button { font-family: inherit; font-size: 1rem; background: none; border: none; cursor: pointer; }
address { font-style: normal; }

/* ----------- BRAND FONTS (Montserrat/Roboto) ----------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: #285679;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.4; margin-bottom: 12px; }
h4, h5 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, li { font-size: 1rem; }
strong { font-weight: 600; }

body, button, input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
}

/* ----------- CONTAINER & LAYOUT ----------- */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section { max-width: 700px; margin: 0 auto; text-align: center; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 28px rgba(40,86,121,0.08);
}

/* ----------- HEADER & NAVIGATION ----------- */
header {
  background: #fff;
  border-bottom: 3px solid #34A853;
  box-shadow: 0 2px 12px 0 rgba(40,86,121,0.04);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  justify-content: space-between;
}
header a img { height: 48px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #285679;
  padding: 5px 11px;
  border-radius: 16px;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:not(.cta-primary):hover, .main-nav a:not(.cta-primary):focus {
  background: #e2f7e3;
  color: #167A2B;
}
.main-nav .cta-primary {
  background: #34A853;
  color: #fff !important;
  padding: 9px 20px;
  margin-left: 16px;
  font-size: 1.1rem;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(52,168,83,0.13);
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s, box-shadow 0.22s;
  border: none;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #167A2B;
  color: #fff;
  box-shadow: 0 8px 30px rgba(22,122,43,0.18);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #34A853;
  color: #fff;
  padding: 6px 16px;
  margin-left: 8px;
  border-radius: 20px;
  border: none;
  transition: background 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #167A2B;
}

/* -------------- MOBILE MENU -------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(40,86,121,0.97);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 28px;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 30px 16px 0;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #34A853;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 13px 0 13px 10px;
  border-radius: 16px;
  transition: background 0.16s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e5fff0;
  color: #167A2B;
}

@media (max-width: 1100px) {
  .main-nav a { font-size: 0.93rem; }
  .main-nav .cta-primary { font-size: 1rem; }
}
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
}
@media (max-width: 780px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* ---------- HERO / PROMO SECTIONS ---------- */
.hero {
  background: linear-gradient(98deg, #F5F7FA 73%, #e5fff0 100%);
  padding: 68px 0 56px 0;
  position: relative;
}
.hero .container { justify-content: center; }

.hero h1 {
  color: #285679;
  font-size: 2.45rem;
  text-shadow: 0 2px 12px rgba(40,86,121,0.08);
}
.hero p {
  color: #285679;
  font-size: 1.18rem;
  margin-bottom: 22px;
}
.hero .cta-primary {
  font-size: 1.1rem;
  margin-top: 16px;
}

@media (max-width: 560px) {
  .hero h1 { font-size: 1.37rem; }
  .hero p { font-size: 1rem; }
}

/* ------------- FEATURES & CARDS ------------- */
.features {
  margin-bottom: 60px;
  padding: 20px 0 0 0;
  background: #fff;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 10px;
}
.feature {
  background: linear-gradient(125deg, #f9fff7 80%, #e3f0fa 120%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,86,121,0.07);
  padding: 32px 24px 26px 24px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 2.5px solid transparent;
}
.feature img {
  height: 50px;
  width: 50px;
  margin-bottom: 4px;
}
.feature h3 {
  color: #285679; font-weight: 700; font-size: 1.14rem;
}
.feature p { color: #234048; font-size: 1rem; }
.feature:hover {
  transform: translateY(-9px) scale(1.025);
  box-shadow: 0 12px 48px rgba(40,86,121,0.14), 0 2px 16px #34A85310;
  border-color: #34A85355;
  background: linear-gradient(121deg, #e5fff0 90%, #e8f5fc 120%);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(40,86,121,0.08);
  padding: 28px 30px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 10px 48px rgba(22,122,43,0.10), 0 2px 16px #28567915;
}

@media (max-width: 900px) {
  .features-grid { justify-content: center; }
  .feature { min-width: 48%; max-width: 100%; }
  .card-container { gap: 18px; }
}
@media (max-width: 600px) {
  .features-grid, .card-container { flex-direction: column; gap: 16px; }
  .feature { min-width: unset; max-width: 100%; width: 100%; }
}

/* -------- SERVICE LIST, PRICING, TABLES -------- */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin:28px 0 19px 0;
  font-size: 1.07rem;
}
.service-list .price {
  background: #34A853;
  color: #fff;
  font-size: 0.97em;
  border-radius: 10px;
  padding: 3px 13px;
  margin-left: 13px;
  font-weight: 500;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px #e5fff055;
  border-radius: 15px;
  margin: 30px 0 18px 0;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1.5px solid #e3f0fa;
}
.pricing-table th {
  background: #e3f0fa;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ----------- ABOUT / COMPANY TEXT ----------- */
.about-company {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 30px #a2cfff19;
}
.trust-points {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  font-size: 1.07rem;
}

/* --------------- TESTIMONIALS ----------------- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #e8f5fc;
  border-radius: 32px 32px 38px 38px;
  box-shadow: 0 6px 28px #34A85308;
}
.testimonials h2 {
  color: #285679; margin-bottom: 14px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px #167A2B11;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-left: 6px solid #34A853;
  position: relative;
}
.testimonial-content p {
  color: #232f38;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.stars {
  color: #ffb400;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.customer-name {
  font-size: 0.99rem;
  font-style: italic;
  color: #285679;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .testimonials { padding: 25px 8px; }
  .testimonial-card { padding: 14px; }
}

/* --------------- CTAs & BUTTONS ----------------- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 20px;
  box-shadow: 0 2px 14px #34A85321;
  letter-spacing: 0.06em;
  margin: 5px 0;
  border: none;
  transition: background 0.21s, color 0.21s, box-shadow 0.21s, transform 0.16s;
  cursor: pointer;
}
.cta-primary { background: #34A853; color: #fff !important; }
.cta-primary:hover, .cta-primary:focus { background: #167A2B; box-shadow: 0 7px 24px #28567921; transform: translateY(-3px) scale(1.02); }
.cta-secondary { background: #fff; color: #285679; border: 2px solid #34A853; }
.cta-secondary:hover, .cta-secondary:focus { background: #e2f7e3; color: #167A2B; }

/* ----------------- CONTACT & MAP ----------------- */
.contact-cta {
  padding: 42px 0;
  background: #fffefb;
  border-radius: 24px;
  box-shadow: 0 2px 14px #a9fdea12;
}
.contact-details address {
  font-size: 1.04rem;
  margin-bottom: 23px;
  background: #f2f8fb78;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 9px #abc8ff12;
}
.contact-details .contact-form-placeholder {
  margin: 32px 0 18px 0;
  padding: 18px 20px;
  background: #e3f0fa55;
  border-radius: 13px;
}
.map-placeholder {
  padding: 15px 20px;
  background: #e5fff0;
  border-radius: 10px;
  color: #232f38;
  font-size: 1.04rem;
}

/* --------- LEGAL TEXT/SECTIONS --------- */
.legal {
  margin-bottom: 60px;
  padding: 42px 0;
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 6px 28px #34A8530d;
}

/* --------- FOOTER --------- */
footer {
  background: #285679;
  color: #fff;
  padding: 42px 0 26px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.94;
  border-radius: 12px;
  padding: 5px 16px;
  transition: background 0.19s, color 0.16s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #e5fff055;
  color: #34A853;
}
.copyright {
  font-size: 0.96rem;
  opacity: 0.82;
  text-align: center;
}

/*--------- Responsive general spacing ---------*/
@media (max-width: 600px) {
  .container { padding: 0 5px; }
  .section, .about-company, .testimonials, .contact-cta, .legal { padding: 24px 3vw; border-radius: 19px; }
  .card, .feature { padding: 15px 10px; border-radius: 11px; }
  .footer-nav { gap: 8px; }
  .footer-brand img { height: 34px; }
}

/*--------- FLEX LAYOUT PATTERNS: CARD/COLUMNS ---------*/
.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) {
  .content-grid, .card-container, .features-grid, .text-image-section, .footer-nav { flex-direction: column; gap: 15px; }
  .testimonials, .section, .about-company, .contact-cta, .legal { padding: 21px 2vw; }
  .feature { min-width: unset; max-width: 100%; width: 100%; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/*----------- Animation & Micro-interactions -----------*/
.cta-primary, .cta-secondary, .main-nav a, .footer-nav a {
  transition: background 0.19s, color 0.18s, box-shadow 0.22s, transform 0.17s;
}

.feature, .card, .testimonial-card {
  transition: transform 0.21s, box-shadow 0.22s, border-color 0.21s;
}

.feature:hover, .card:hover {
  box-shadow: 0 12px 42px #167A2B22, 0 2px 9px #28567915;
  transform: translateY(-3px) scale(1.025);
  border-color: #28567915;
}

/*----------- Table (responsive scroll) -----------*/
@media (max-width: 660px) {
  .pricing-table { font-size: 0.89rem; overflow-x: auto; }
  .pricing-table th, .pricing-table td { padding: 8px 7px; }
}

/*------ Certifications-style row (produkte.html) ------*/
.certifications {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding: 8px 0;
}
.certifications img { height: 32px; width: auto; }
.certifications span { font-size: 1.07rem; color: #234048; font-weight: 500; }
@media (max-width: 520px) {
  .certifications { flex-direction: column; gap: 7px; }
}

/* ----- Highlighted artistic unique/creative touches ----- */
h1, h2, h3 {
  position: relative;
  z-index: 1;
}
h2:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  width: 70px;
  height: 5px;
  background: #34A85399;
  border-radius: 8px;
  z-index: -1;
  opacity: 0.23;
}

.hero h1:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 30px;
  height: 6px;
  background: #167A2B;
  border-radius: 4px;
  margin-top: 12px;
  opacity: 0.18;
}

/* ------------- COOKIE CONSENT BANNER ------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  border-top: 4px solid #34A853;
  box-shadow: 0 -2px 32px #34A85319;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 16px 20px 16px;
  min-height: 80px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #234048;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.77,0,0.18,1), opacity 0.24s;
}
.cookie-banner.hide {
  opacity: 0; pointer-events: none;
  transform: translateY(100vh);
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  max-width: 468px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-button {
  background: #34A853;
  color: #fff;
  border: none;
  padding: 8px 23px;
  font-size: 1.06rem;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.17s, transform 0.17s;
  box-shadow: 0 2px 12px #34A85317;
}
.cookie-button:hover, .cookie-button:focus {
  background: #167A2B;
  transform: translateY(-2px) scale(1.03);
}
.cookie-secondary {
  background: #fff;
  color: #34A853;
  border: 2px solid #34A853;
}
.cookie-secondary:hover, .cookie-secondary:focus {
  background: #e5fff0;
  color: #167A2B;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 18px 4vw 14px 4vw;
  }
  .cookie-banner .cookie-text { font-size: 0.97rem; }
}

/* ------- COOKIE MODAL POPUP ------- */
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(40,86,121,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 380px;
  width: 98vw;
  padding: 36px 26px 26px 26px;
  box-shadow: 0 10px 44px rgba(40,86,121,0.14);
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookiePopupIn 0.32s cubic-bezier(0.59,0.3,0.38,1.39);
}
@keyframes cookiePopupIn {
  from { transform: scale(0.8) translateY(85px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.28rem;
  color: #285679;
  margin-bottom: 17px;
  text-align: center;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 14px;
  font-size: 1.07rem;
  color: #285679;
  cursor: pointer;
}
.cookie-toggle {
  appearance: none;
  width: 34px; height: 20px;
  background: #cdeefa;
  border-radius: 20px;
  position: relative;
  outline: none;
  margin-right: 10px;
  transition: background 0.2s;
  vertical-align: middle;
}
.cookie-toggle:checked {
  background: #34A853;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-toggle:checked::after {
  left: 15px;
}
.cookie-modal .cookie-category-desc {
  font-size: 0.96rem;
  color: #5d707c;
  margin-left: 36px;
  margin-top: -4px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 14px; right: 19px;
  background: none; border: none;
  font-size: 1.5rem; color: #888;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-modal-close:hover { color: #34A853; }

/* --------- GENERIC: FORMS, INPUTS, ERRORS --------- */
input, select, textarea {
  font-family: inherit; font-size: 1rem;
  padding: 9px 14px;
  border: 1.5px solid #e3f0fa;
  border-radius: 7px;
  background: #f4f8ff;
  margin-bottom: 13px;
  box-shadow: 0 1px 6px #28567905;
  color: #234048;
  outline: none;
  transition: border 0.19s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #34A853;
  box-shadow: 0 2px 8px #34A85315;
}

/* ----------- RESPONSIVE FONT SIZES ----------- */
@media (max-width: 660px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.07rem; }
  body { font-size: 0.97rem; }
}

/* ----------- CONFIRMATION PAGE ----------- */
.confirmation {
  margin: 60px 0;
  padding: 48px 0;
  background: #e5fff0;
  border-radius: 22px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.confirmation h1 { color: #167A2B; }

/* ----------- UNIQUE ARTISTIC TOUCHES ----------- */
.feature:before {
  content: '';
  position: absolute;
  top: 6px; left: 7px;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: #34A85322;
  z-index: 0;
  filter: blur(3px);
}
.feature:hover:before { background: #34A85345; filter: blur(2px); }

.section {
  position: relative;
}
.section:after {
  content: '';
  position: absolute;
  right: 35px; top: 33px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #34A85318;
  z-index: 0;
  filter: blur(6px);
  opacity: 0.45;
  pointer-events: none;
}
@media (max-width: 600px) {
  .section:after { right: 9px; top: 11px; width: 19px; height: 19px; }
}

/************************************************
MOBILE FIRST RESPONSIVE — KEY LAYOUTS
************************************************/
@media (max-width: 900px) {
  .hero, .section, .about-company, .testimonials, .contact-cta, .legal {
    border-radius: 14px;
    padding: 20px 2vw;
  }
  .content-wrapper { gap: 12px; }
  .feature, .testimonial-card, .card { min-width: unset; }
}
@media (max-width: 650px) {
  h1, h2, h3, h4, h5 { text-align: left; }
  .text-section { text-align: left; }
  .service-list, .trust-points { font-size: 0.97rem; }
}

/***************** NO GRID! END OF FILE *****************/
