/* ===== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; background: #fff; color: #234F65; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border: 0; }
button { margin: 0; border: 0; padding: 0; background: none; font: inherit; }

/* ===== CSS CUSTOM PROPERTIES: BRAND COLORS ===== */
:root {
  --color-primary: #234F65;
  --color-secondary: #ffffff;
  --color-accent: #6C983F;
  --color-bg-grey: #E1E5E7;
  --color-bg-soft: #F6F8FA;
  --color-danger: #DB3A34;
  --color-info: #4388A9;
  --shadow-main: 0 6px 32px rgba(35,79,101,0.08);
  --radius-main: 16px;
  --radius-btn: 24px;
  --ff-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --ff-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ========== BASE TYPOGRAPHY & BODY ========== */
body { 
  font-family: var(--ff-body); 
  color: var(--color-primary); 
  background: var(--color-bg-soft);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height:1.2; letter-spacing:-1px; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height:1.27; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4,h5,h6 { font-size: 1.1rem; }
p, ul, li { font-size: 1rem; }
p { margin-bottom: 12px; }
strong { font-weight: bold; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width:1000px) {
  .section { margin-bottom: 48px; padding: 32px 10px; }
}
@media (max-width:600px) {
  .section { margin-bottom: 32px; padding: 24px 6px; }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: linear-gradient(90deg, #E1E5E7 70%, #F6F8FA 100%);
  box-shadow: 0 3px 16px rgba(35,79,101,0.07);
  padding: 0;
  position: sticky; top:0; z-index:50;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
}
.logo-link img {
  max-height: 52px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.21s;
}
.main-nav a:hover, .main-nav a:focus {
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.cta-primary {
  background: var(--color-accent);
  color: #fff;
  padding: 11px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--ff-display);
  font-weight: bold;
  font-size: 1.08rem;
  box-shadow: 0 3px 16px rgba(140,191,98,0.07);
  transition: background 0.21s, transform 0.18s, box-shadow 0.15s;
  cursor:pointer;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #5bad32;
  color: #fff;
  transform: scale(1.05);
  box-shadow:0 8px 24px rgba(140,191,98,0.19);
}
.cta-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
  padding: 11px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--ff-display);
  font-weight: bold;
  font-size: 1.08rem;
  margin-top:20px;
  box-shadow:0 2px 10px rgba(35,79,101,0.08);
  transition: border-color 0.21s, color 0.17s, box-shadow 0.13s;
  cursor:pointer;
}
.cta-secondary:hover, .cta-secondary:focus {
  border-color: #5bad32;
  color: #5bad32;
  box-shadow:0 10px 24px rgba(140,191,98,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 1.6rem;
  line-height: 1.1;
  cursor:pointer;
  transition:background 0.15s;
  z-index: 1001;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent);
}
@media (max-width:990px) {
  .main-nav {
    display:none;
  }
  .mobile-menu-toggle {
    display:block;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(35,79,101, 0.98);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  z-index: 5002;
  display: flex; flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 18px 24px 8px 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.16s;
  border-radius:10px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--color-accent);
  background:rgba(140,191,98,0.17);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 30px 34px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.32rem;
  font-weight: bold;
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
@media (max-width:496px) {
  .mobile-nav { padding: 30px 10px; }
}

/* ========== HERO SECTIONS ========== */
.hero, .about-hero, .services-hero, .process-hero, .references-hero, .thank-you-hero, .contact-hero {
  background: linear-gradient(135deg, #E1E5E7 60%, #fff 100%);
  box-shadow: 0 10px 48px rgba(35,79,101,0.08);
  min-height:420px;
  display: flex; align-items: center;
  margin-bottom:60px; padding-top: 36px; padding-bottom: 36px;
}
.hero .container, .about-hero .container, .services-hero .container, .references-hero .container, .process-hero .container, .thank-you-hero .container, .contact-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 290px;
  justify-content: center;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.hero h1, .services-hero h1, .about-hero h1, .references-hero h1, .thank-you-hero h1, .contact-hero h1, .process-hero h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #234F65 85%, #6C983F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .subheadline {
  font-family: var(--ff-display);
  color: var(--color-primary);
  font-size:1.2rem;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
@media (max-width:950px) {
  .hero, .about-hero, .services-hero, .contact-hero, .references-hero, .thank-you-hero, .process-hero {
    min-height: 280px;
    padding-top: 24px; padding-bottom: 24px;
  }
  .hero .container, .about-hero .container, .services-hero .container, .contact-hero .container, .references-hero .container, .thank-you-hero .container, .process-hero .container {
    min-height: 142px;
  }
  .content-wrapper { gap: 14px; }
  .hero h1, .services-hero h1, .about-hero h1, .references-hero h1, .thank-you-hero h1, .contact-hero h1, .process-hero h1 {
    font-size: 2rem;
  }
}
@media (max-width:600px) {
  .hero, .about-hero, .services-hero, .contact-hero, .references-hero, .thank-you-hero, .process-hero {
    padding-top: 8px; padding-bottom: 8px; min-height: auto;
  }
  .content-wrapper { gap: 9px; }
}

/* ========== FLEX & CARD PATTERNS ========== */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: #fff; border-radius: var(--radius-main);
  padding: 32px 24px;
  box-shadow: var(--shadow-main);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, transform .17s;
}
.card:hover { box-shadow:0 10px 44px rgba(35,79,101,0.17); transform: translateY(-3px) scale(1.015); }

.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: 900px) {
  .content-grid, .card-container, .feature-grid, .service-previews, .service-cards, .steps-visual, .steps-horizontal .step-list, .team .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column; gap: 20px;
  }
}

@media (max-width: 600px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .card { padding: 20px 8px; }
}

/* ========== FEATURES, SERVICES, TEAMS, USPs ========== */
.features, .services-list, .team, .why-us, .process-steps, .services-overview, .process-overview {
  margin-bottom: 60px;
}
.feature-grid, .service-previews, .service-cards, .steps-visual, .steps-horizontal .step-list, .team .content-wrapper { 
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 32px 23px 22px 23px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  width: 295px; max-width: 100%;
  transition: box-shadow .17s, transform .1s;
}
.feature-item:hover { box-shadow:0 12px 52px rgba(35,79,101,0.12); transform: translateY(-3px) scale(1.013); }
.feature-item img { width: 45px; height: 45px; }
.feature-item h3 { font-size: 1.2rem; }

.service-preview, .service-card {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 28px 18px 18px 18px;
  display: flex; flex-direction: column;
  gap: 11px;
  width: 275px; max-width: 98%;
  margin-bottom: 20px;
  align-items: flex-start;
  transition: box-shadow .19s, transform .17s;
}
.service-preview:hover, .service-card:hover {
  box-shadow:0 10px 44px rgba(35,79,101,0.09); transform: scale(1.034);
}
.service-preview img, .service-card img { width: 40px; height: 40px; margin-bottom:8px; }
.service-preview .price, .service-card .price {
  color: var(--color-accent);
  font-family: var(--ff-display);
  font-weight: bolder;
  font-size: 1.11rem;
  margin-top: 8px;
}

.team .team-profile {
  display: flex; flex-direction: column; align-items: center;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 24px 12px;
  margin-bottom: 20px;
  width:230px; max-width:97%;
  gap:11px;
  transition: box-shadow .15s, transform .14s;
}
.team .team-profile img { width: 64px; height: 64px; border-radius: 50%; box-shadow:0 1px 8px rgba(35,79,101,0.09); }
.team .team-profile h3 { font-size: 1.09rem; margin-bottom: 7px; }
.team .team-profile p { text-align:center; font-size:0.97rem; }

.certifications-list {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 22px;
}
.certification-item {
  background: #E1E5E7;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 13px;
  font-family: var(--ff-display); font-weight: 600;
  color: var(--color-primary);
  font-size: 0.97rem;
}
.certification-item img { width: 32px; height: 32px; }

.usp-list, .usp-bullets {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-family: var(--ff-display);
  font-size: 1.06rem;
  color: #273f54;
  position: relative;
}
.usp-list li:before, .usp-bullets li:before {
  content:''; display:inline-block;
  background: var(--color-accent);
  border-radius: 50%; width:9px; height:9px; margin-right:13px; vertical-align: middle;
}

/* ========== TESTIMONIALS & TRUST ========== */
.kundenbewertung-slider, .testimonials {
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.testimonial-card {
  display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow:var(--shadow-main);
  margin-bottom: 20px;
  min-width: 255px; max-width: 100%;
  font-size:1rem;
  color: #222E39;
  transition: box-shadow .16s, transform .13s;
}
.testimonial-card:hover {
  box-shadow:0 10px 44px rgba(140,191,98,0.09); transform: scale(1.017);
}
.testimonial-rating {
  color: var(--color-accent);
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: bolder;
  margin-bottom: 3px;
  letter-spacing: 1px;
}
.testimonial-card p {
  color: #1F272D;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #475568;
  font-size: 0.98rem;
  font-family: var(--ff-display);
}

@media(max-width:700px){
  .kundenbewertung-slider, .testimonials { flex-direction: column; gap: 14px; }
  .testimonial-card, .testimonial-card p {text-align:left;}
}

/* ========== PROJECT HIGHLIGHTS & SUMMARIES ========== */
.project-highlights {
  margin-bottom: 32px;
}
.project-summary {
  background: #fff;
  border-radius: 12px;
  padding: 24px 17px;
  box-shadow:0 2px 12px rgba(35,79,101,0.09);
  margin-bottom: 20px;
}
.project-summary h3 { font-size:1.04rem; margin-bottom: 11px; }

/* ========== FAQ ACCORDION ========== */
.faq-accordion {
  display: flex; flex-direction: column; gap: 19px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow:0 2px 8px rgba(35,79,101,0.07);
  padding: 18px 22px;
  cursor:pointer;
  transition: box-shadow .13s;
  margin-bottom: 8px;
}
.faq-item h3 {
  font-size:1.1rem;
  color:var(--color-primary);
  margin-bottom: 5px;
  font-family:var(--ff-display);
}
.faq-content { display: none; font-size:0.97rem; color:#34505f; }
.faq-item.open .faq-content { display: block; }
.faq-item.open {
  box-shadow:0 4px 22px rgba(140,191,98,0.09);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(90deg, #F6F8FA 65%, #E1E5E7 100%);
  border-radius: var(--radius-main);
  box-shadow: 0 6px 32px rgba(35,79,101,0.06);
  text-align:center;
  padding: 47px 18px 47px 18px;
  margin-bottom: 40px;
}
.cta-banner h2 {
  font-size: 2rem;
  background: linear-gradient(90deg, #234F65 85%, #6C983F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 13px;
}
.cta-banner p {
  color: #234F65;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* ========== CONTACT SECTION ========== */
.contact-details-section .content-wrapper {
  display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start;
  margin-bottom: 25px;
}
.contact-details, .map-embed { flex: 1; min-width: 220px; }
.contact-details strong { color: var(--color-primary); }
.info-notice {
  background: #E1E5E7;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 1rem;
  margin: 23px 0 7px 0;
  color: #234F65;
}
.map-embed img { width:80px; height:80px; margin-bottom: 8px; }

/* ========== LEGAL TEXT ========== */
.legal-text .content-wrapper {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 39px 28px;
  margin-bottom: 28px;
}
.legal-text h1, .legal-text h2 {
  color: var(--color-primary);
}
.legal-text ul, .legal-text ol { margin: 13px 0 14px 22px; font-size: 1rem; }
.legal-text li { margin-bottom: 6px; }

/* ========== FOOTER ========== */
footer {
  background: #E1E5E7;
  box-shadow: 0 -4px 16px rgba(35,79,101,0.08);
  padding-top: 38px; padding-bottom: 18px;
}
footer .container {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
}
footer .logo-link { flex:0 0 auto; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--ff-display);
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-contact { font-size:0.98rem; color: #234F65; }
footer .container:last-child { justify-content: flex-end; font-size:0.97rem; color:#234F65; padding-top:9px; }
@media (max-width:700px) {
  footer .container {flex-direction:column; align-items:flex-start;gap:12px;}
  footer .footer-nav { gap: 14px; }
  footer .container:last-child {justify-content:flex-start;}
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left:0; right:0; bottom:0;
  background: #234F65;
  color: #fff;
  padding: 24px 28px 11px 28px;
  box-shadow: 0 -6px 32px rgba(35,79,101,0.11);
  display: flex;
  flex-direction: column;
  gap: 13px;
  z-index: 6002;
  animation: cookieSlideIn .7s cubic-bezier(0.72, 0, 0.23, 1);
}
.cookie-banner__message {
  font-size: 1.04rem;
  font-family: var(--ff-display);
  margin-bottom: 5px;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn-secondary {
  border-radius: 24px;
  padding: 8px 23px;
  font-size: 1.01rem;
  border: none;
  font-family: var(--ff-display);
  font-weight: 600;
  cursor: pointer;
  transition: background .14s, color .15s;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #5bad32;
}
.cookie-btn-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  color: var(--color-accent);
  border-color: #5bad32;
}

@media (max-width:570px) {
  .cookie-banner { padding: 16px 5px 7px 5px; }
  .cookie-banner__actions {gap:12px;}
}

@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity:0; }
  90% { transform: translateY(-8px); opacity:1; }
  100% { transform: translateY(0); }
}

.cookie-modal-overlay {
  position:fixed; left:0; top:0; right:0; bottom:0;
  background: rgba(35,79,101,0.75);
  z-index: 7000;
  display: flex;
  align-items:center; justify-content:center;
  transition: opacity 0.18s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow:0 12px 80px rgba(35,79,101,0.18);
  width: 98vw; max-width:390px;
  padding: 33px 24px 27px 24px;
  color: #222E39;
  display:flex; flex-direction:column; gap:30px;
  position: relative;
  animation: cookieModalPop .3s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieModalPop{
  0%{ transform: scale(.8) translateY(31px); opacity:0; }
  90%{ transform: scale(1.03) translateY(0); }
  100%{ transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal__header {
  display: flex; align-items: center; justify-content: space-between;
}
.cookie-modal__close {
  background: none; border: none; color: var(--color-accent);
  font-size: 1.8rem; cursor: pointer;
  padding: 4px 11px;
  border-radius: 50%; transition:background .13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background:#e1e5e7;
}
.cookie-modal h2 {
  font-size:1.18rem; margin-bottom: 7px; }

.cookie-category {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #E1E5E7;
  font-size: 1rem;
}
.cookie-category:last-child { border-bottom:none; }
.cookie-category label {
  font-family: var(--ff-display);
  color:#234F65;
}
.cookie-toggle {
  width: 40px; height: 22px;
  border-radius: 12px; background:#e1e5e7; position:relative;
  display:inline-block; vertical-align:middle;
  transition: background .18s;
}
.cookie-toggle input { display:none; }
.cookie-toggle-slider {
  position: absolute; left: 3px; top: 3px;
  height: 16px; width: 16px; border-radius:50%;
  background:var(--color-accent); transition: left .18s; }
.cookie-toggle input:checked + .cookie-toggle-slider {
  left:21px; background:#5bad32;
}
.cookie-category.essential .cookie-toggle {
  background:#F6F8FA;
  cursor:not-allowed;
  opacity:.55;
}

.cookie-modal__actions {
  display:flex; gap:23px; justify-content:flex-end; margin-top:19px;
}
@media(max-width:450px){
  .cookie-modal {padding:17px 4px 12px 4px;}
  .cookie-modal__actions { gap:9px; }
}

/* ========== MICRO-INTERACTION UTILITY TRANSITIONS ========== */
.card, .feature-item, .service-preview, .service-card,
.team .team-profile, .testimonial-card, .project-summary, .certification-item, .faq-item {
  transition: box-shadow 0.18s, transform 0.14s;
}

button, .cta-primary, .cta-secondary, .cookie-btn, .cookie-btn-secondary {
  transition: background 0.16s, color 0.17s, border-color 0.17s, transform .13s;
}

/* ======= SCROLLBAR DESIGN ======= */
* { scrollbar-color: var(--color-accent) #E1E5E7; }
::-webkit-scrollbar { width:8px; background:#E1E5E7; }
::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius:6px; }

/* ========== CUSTOM ARTISTIC ACCENTS ========== */
body {
  /* subtle artistic background art accents */
  position: relative;
}
body:after {
  content: '';
  position: fixed;
  bottom: -80px; right:-120px;
  width: 310px; height: 310px;
  background: rgba(140,191,98,.08);
  border-radius: 40% 62% 66% 34%/60% 41% 39% 56%;
  z-index: 0;
  pointer-events:none;
}
body:before {
  content: '';
  position: fixed;
  top: -50px; left:-90px;
  width: 210px; height: 210px;
  background: rgba(35,79,101,.06);
  border-radius: 50% 48% 50% 60%/61% 45% 55% 44%;
  z-index: 0;
  pointer-events:none;
}

/**** Responsive fixes for smaller viewports ****/
@media (max-width:700px){
  h1 { font-size:1.4rem; }
  h2 { font-size:1.22rem; }
  .feature-item, .service-preview, .service-card, .team .team-profile {
    width:100%; padding: 16px 5px;
  }
}

/**** Extra Spacing for Content Cards ****/
.feature-item, .service-preview, .service-card, .team .team-profile, .project-summary, .testimonial-card, .faq-item, .certification-item {
  margin-bottom: 20px;
}

/**** Hide default outline on non-keyboard, enhance on focus ****/
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/**** Utility Classes ****/
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
@media (max-width:400px) { .cta-primary, .cta-secondary{padding:7px 10px;} }

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