/* ===============================
   Radiance Rod – TECH FUTURISTIC STYLE 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,
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;
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #23282E;
  color: #E6DED1;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
a:focus { outline: 2px solid #9CB252; outline-offset: 2px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #E6DED1;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* FLEXBOX MANDATORY LAYOUTS */
.features, .feature-grid, .service-list, .blog-teaser-row, .card-container, .card-grid, .content-grid, .testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid, .service-list, .blog-teaser-row, .card-container, .card-grid, .content-grid {
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F2F2F2;
  color: #23282E;
  border-radius: 20px;
  padding: 30px 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 32px 0 rgba(36, 211, 116, 0.04);
  border: 1.5px solid rgba(60,204,180,0.1);
}

/* ===========
   HEADER & NAV
   =========== */
header {
  background: #23282E;
  position: sticky;
  top: 0;
  z-index: 1002;
  box-shadow: 0 2px 16px 0 rgba(67, 180, 200, 0.09);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #B8C6DC;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #9CB252;
}
.main-nav a.active {
  color: #9CB252;
  font-weight: 700;
}

.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 28px;
  background: #9CB252;
  color: #23282E;
  border: none;
  border-radius: 100px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px 0 rgba(155,200,82,0.18);
  position: relative;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: #42505A;
  color: #E6DED1;
}
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  background: transparent;
  color: #9CB252;
  border: 2px solid #9CB252;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s, background 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #9CB252;
  color: #23282E;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #9CB252;
  cursor: pointer;
  margin-left: 16px;
}

/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,40,46,0.99);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 30px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,0,.3,1);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin-bottom: 30px;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #9CB252;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #E6DED1;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0;
  border-bottom: 1px solid rgba(156,178,82,0.15);
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(67,80,90,0.09);
  color: #9CB252;
}
.mobile-nav a:last-child {
  border-bottom: none;
}

/* ============
   HERO SECTION
   ============ */
.hero {
  padding: 76px 20px 52px 20px;
  background: linear-gradient(90deg, #23282E 0%, #42505A 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 38px 0 rgba(40,255,176,0.04);
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 18px;
}
.subheadline {
  font-size: 1.09rem;
  color: #9CB252;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-weight: 500;
}
.team-photo-placeholder {
  display: flex;
  align-items: center;
  background: rgba(67,80,90,0.1);
  border-radius: 100px;
  padding: 14px 19px;
  margin-top: 2px;
}

/* ============
   FEATURES / ICONS
   ============ */
.features {
  padding-bottom: 40px;
  gap: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-icon {
  flex: 1 1 180px;
  max-width: 300px;
  background: #2B353B;
  border-radius: 20px;
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 3px 16px 0 rgba(156,178,82,0.07);
  border: 1px solid rgba(156,178,82,0.13);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-icon img {
  margin-bottom: 14px;
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 8px #9CB25288);
}
.feature-icon h3 {
  color: #9CB252;
  font-size: 1.13rem;
}
.feature-icon p {
  color: #E6DED1;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-icon:hover, .feature-icon:focus {
  box-shadow: 0 5px 28px 0 rgba(156,178,82,0.22);
  border: 1.5px solid #9CB252;
}

/* =======
 SERVICES
 ======= */
.services-overview {
  background: #23282E;
  border-radius: 22px;
  margin-bottom: 46px;
}
.services-overview h2,
.services-overview p {
  color: #FFF;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 12px 0 17px 0;
}
.services-list li {
  color: #B8C6DC;
  font-size: 1.05rem;
  margin-bottom: 2px;
  position: relative;
  padding-left: 18px;
}
.services-list li:before {
  content: '';
  width: 7px;
  height: 7px;
  position: absolute;
  left: 0;
  top: 10px;
  border-radius: 50%;
  background: #9CB252;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 240px;
  max-width: 320px;
  background: #2B353B;
  border-radius: 18px;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px 0 rgba(66,80,90,0.09);
  border: 1px solid rgba(66,80,90,0.11);
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.22s;
}
.service-card h3 { color: #9CB252; font-size: 1.11rem; }
.service-card p { color: #E6DED1; font-size: 1.02rem; margin-bottom: 13px; }
.service-card .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #B8C6DC;
  font-size: 1.04rem;
  margin-top: auto;
}
.service-card:hover, .service-card:focus {
  box-shadow: 0 5px 24px 0 rgba(67,180,200,0.17);
  border: 1.2px solid #9CB252;
}

/* =============
   PROJECT CARDS
   ============= */
.project-card {
  background: #2B353B;
  border-radius: 16px;
  padding: 30px 22px 22px 22px;
  box-shadow: 0 3px 14px 0 rgba(156,178,82,0.13);
  margin-bottom: 24px;
}
.project-card h3 { color: #9CB252; font-size: 1.08rem; margin-bottom: 10px; }
.project-card p { color: #E6DED1; font-size: 1.01rem; }

/* ============
   BLOG PREVIEW
   ============ */
.blog-list {
  padding: 40px 0;
}
.blog-teaser-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-teaser {
  flex: 1 1 260px;
  max-width: 360px;
  background: #2B353B;
  border-radius: 14px;
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px 0 rgba(66,80,90,0.07);
  border: 1.25px solid rgba(60,204,180,0.06);
  margin-bottom: 20px;
}
.blog-teaser h3 {
  font-size: 1.07rem;
  color: #9CB252;
}
.blog-teaser p {
  font-size: 0.98rem;
  color: #B8C6DC;
  margin-bottom: 8px;
}
.blog-teaser .btn-secondary {
  align-self: flex-start;
  margin-top: 5px;
}
.blog-teaser:hover, .blog-teaser:focus {
  border: 1.5px solid #9CB252;
  box-shadow: 0 6px 25px 0 rgba(156,178,82,0.19);
}
.search-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.search-filter input {
  flex: 1;
  border: 1.5px solid #42505A;
  border-radius: 100px;
  padding: 10px 20px;
  outline: none;
  background: #23282E;
  color: #E6DED1;
  font-size: 1rem;
  transition: border 0.18s;
}
.search-filter input:focus {
  border-color: #9CB252;
}
.search-filter button {
  padding: 11px 24px;
  background: #9CB252;
  border: none;
  border-radius: 100px;
  color: #23282E;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.search-filter button:hover, .search-filter button:focus {
  background: #42505A;
  color: #E6DED1;
}

/* =====================
   NEWSLETTER SECTION
   ===================== */
.newsletter-signup {
  background: #23282E;
  border-radius: 24px;
  box-shadow: 0 6px 26px rgba(67, 180, 200, 0.06);
  margin: 48px 0 60px 0;
  padding: 32px 12px;
}
.newsletter-signup form {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 17px;
}
.newsletter-signup input[type="email"] {
  border: 1.5px solid #42505A;
  border-radius: 100px;
  padding: 10px 20px;
  outline: none;
  background: #FFF;
  color: #23282E;
  font-size: 1rem;
  transition: border 0.19s;
}
.newsletter-signup input[type="email"]:focus {
  border-color: #9CB252;
}
.newsletter-signup .btn-primary {
  margin-left: 0;
}

/* =============
   CTA SECTION
   ============= */
.cta {
  background: linear-gradient(90deg, #42505A 25%, #23282E 100%);
  border-radius: 24px;
  box-shadow: 0 4px 32px 0 rgba(182,255,100,0.06);
  margin: 44px 0 70px 0;
  padding: 32px 14px;
  text-align: center;
}
.cta h2 {
  color: #9CB252;
  margin-bottom: 18px;
}
.cta .btn-primary {
  margin-top: 8px;
}

/* ================
   CONTACT/DETAILS
   ================ */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.map-embed-placeholder {
  width: 120px;
  height: 120px;
  padding: 8px;
  background: #42505A;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-details ul {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  color: #E6DED1;
  font-size: 1.04rem;
  margin-bottom: 3px;
}
.contact-details a {
  color: #9CB252;
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-details a:hover, .contact-details a:focus {
  color: #23282E;
}

/* ===============
   FOOTER SECTION
   =============== */
footer {
  background: #23282E;
  color: #B8C6DC;
  margin-top: 52px;
  padding: 0 0 32px 0;
}
.footer-top {
  padding: 38px 0 22px 0;
  display: flex;
  align-items: center;
}
.footer-top img {
  max-width: 128px;
  filter: brightness(1.08) drop-shadow(0 0 10px #87ff85ab);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 16px 0 8px 0;
}
.footer-nav a {
  color: #B8C6DC;
  font-size: 0.98rem;
  padding: 4px 0;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #9CB252; }
.footer-contact {
  margin-top: 12px;
  font-size: 0.97rem;
  color: #B8C6DC;
}
.footer-contact a {
  color: #9CB252;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-contact a:hover, .footer-contact a:focus { color: #42505A; }

/* ================
   LEGAL CONTENTS
   ================ */
.legal {
  background: #2B353B;
  border-radius: 20px;
  padding: 40px 26px;
  margin: 40px 0;
  color: #E6DED1;
  box-shadow: 0 4px 22px 0 rgba(66,80,90,0.09);
}
.legal h1, .legal h2, .legal h3 { color: #9CB252; }
.legal ul { margin: 10px 0 20px 20px; }
.legal ul li { color: #B8C6DC; margin-bottom: 6px; font-size: 1.04rem; }

/* ===========
   THANK YOU 
   =========== */
.thankyou-confirmation {
  background: #42505A;
  border-radius: 20px;
  padding: 44px 22px;
  color: #FFF;
  text-align: center;
  box-shadow: 0 4px 20px 0 rgba(67, 180, 200, 0.07);
  margin: 40px 0 60px 0;
}
.thankyou-confirmation .btn-primary { margin-top: 22px; }

/* ================
   MICRO INTERACTIONS
   ================ */
.btn-primary, .btn-secondary, .search-filter button, .feature-icon, .service-card, .blog-teaser, .project-card {
  transition: box-shadow 0.18s, border 0.18s, background 0.17s, color 0.17s;
}
input, button {
  font-family: inherit;
  font-size: inherit;
}

/* NEON GLOW EFFECT (for accent focus) */
.btn-primary:focus, .mobile-menu-toggle:focus, .main-nav a:focus, .footer-nav a:focus, .btn-secondary:focus, .mobile-nav a:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #9CB252, 0 0 16px #9CB25277;
  outline: none;
}

/* CARD ELEMENTS */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.card-content { display: flex; flex-direction: column; justify-content: center; gap: 10px; }

/* ================
   COOKIE CONSENT BANNER
   ================ */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #2B353B;
  color: #FFF;
  z-index: 3000;
  padding: 18px 20px 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 -2px 25px 0 rgba(156,178,82,0.12);
  animation: cookieSlideIn 0.5s cubic-bezier(.82,0,.59,.95);
  font-size: 0.99rem;
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #FFF;
  margin: 0;
  font-size: 1rem;
  flex: 1 1 180px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  padding: 9px 22px;
  font-size: 0.98rem;
}

/* Cookie banner small on mobile */
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 9px 13px 9px; }
  .cookie-banner p { font-size: 0.98rem; }
  .cookie-banner .cookie-actions { gap: 11px; }
}

/* Cookie Pref Modal Popup */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(35,40,46,0.92);
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.32s cubic-bezier(.67,0,.33,1);
}
.cookie-modal-overlay.open { display: flex; }
@keyframes cookieModalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #2B353B;
  color: #FFF;
  max-width: 400px;
  width: 92vw;
  border-radius: 18px;
  box-shadow: 0 10px 42px rgba(156,178,82,0.19);
  padding: 38px 26px 32px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalZoom 0.32s cubic-bezier(.53,0,.47,1);
}
@keyframes cookieModalZoom {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 16px;
  font-size: 1.45rem;
  background: none;
  border: none;
  color: #9CB252;
  cursor: pointer;
  z-index: 4011;
}
.cookie-modal h2 {
  color: #9CB252;
  font-size: 1.18rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-modal label {
  color: #E6DED1;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #9CB252;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.cookie-modal .cookie-essential {
  color: #42505A;
  font-size: 0.99rem;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.cookie-modal .btn-primary,
.cookie-modal .btn-secondary {
  padding: 8px 18px;
  font-size: 0.98rem;
  box-shadow: none;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1140px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .footer-nav    { flex-direction: column; gap: 10px; }
  .service-list, .feature-grid, .blog-teaser-row, .card-container, .content-grid, .testimonial-row { flex-direction: column; align-items: stretch; }
}
@media (max-width: 768px) {
  .main-nav  { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .features, .feature-grid, .service-list, .blog-teaser-row, .card-container, .card-grid, .content-grid, .testimonial-row, .contact-details {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 21px !important;
  }
  .section { padding: 26px 7px; margin-bottom: 36px; }
  .hero { padding: 44px 7px 36px 7px; margin-bottom: 26px; border-radius: 0 0 20px 20px; }
  .features, .services-overview, .newsletter-signup, .cta, .thankyou-confirmation, .project-card, .service-card, .about-intro, .contact-info, .office-info { padding: 22px 5px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .feature-icon, .service-card, .newsletter-signup, .project-card, .thankyou-confirmation, .legal { padding: 15px 5px; }
  .footer-top { padding: 18px 0 12px 0; }
  .footer-contact { font-size: 0.92rem; }
}

/* ===================
   FOCUS VISIBLE POLY
   =================== */
:focus:not(:focus-visible) { outline: none; }

/* ============
   Z-INDEX CONTROL
   ============ */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 4012 !important; }

/* ================================
   TECH FUTURISTIC ACCENT EFFECTS
   ================================ */
.btn-primary,
.btn-secondary {
  box-shadow: 0 0 12px 0 #9CB25233, 0 4px 20px 0 rgba(155,200,82,0.11);
  border-bottom: 2.5px solid #9CB25244;
}
.btn-primary:hover, .btn-primary:focus {
  box-shadow: 0 0 26px 0 #9CB252aa, 0 7px 28px 0 rgba(155,200,82,0.18);
}
.feature-icon:hover, .feature-icon:focus, .service-card:hover, .service-card:focus, .blog-teaser:hover, .blog-teaser:focus, .project-card:hover, .project-card:focus {
  box-shadow: 0 0 26px 0 #9CB25299, 0 4px 20px 0 rgba(156,178,82,0.12);
  border: 1.5px solid #9CB252;
  outline: none;
}

::selection {
  background: #9CB252;
  color: #23282E;
}

::-webkit-scrollbar {
  width: 9px;
  background: #23282E;
}
::-webkit-scrollbar-thumb {
  background: #42505A;
  border-radius: 7px;
}

/* ========================
   HIGH CONTRAST TESTIMONIALS
   ======================== */
.testimonial-card {
  background: #F2F2F2;
  color: #23282E;
  border-radius: 20px;
  padding: 30px 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 32px 0 rgba(114,175,52,0.03);
  border: 1px solid rgba(156,178,82,0.08);
}
.testimonial-card span {
  font-size: 0.95rem;
  color: #768B2B;
  margin-top: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}


/* ================
   ACCESSIBILITY IMPROVEMENTS
   ================ */
a, button, input[type="submit"], .btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  outline: none;
  transition: box-shadow 0.16s, color 0.13s, background 0.13s;
}
:focus-visible {
  outline: 2px solid #9CB252;
  outline-offset: 2px;
}

/* Hide visually but remain accessible */
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; border: 0 !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }

/* ================
   UTILITIES
   ================ */
.hide { display: none !important; }
.text-center { text-align: center; }

/* ENFORCE SPACING BETWEEN CARDS/SECTIONS */
.card, .card-container > *, .feature-grid > *, .service-list > *, .blog-teaser-row > *, .content-grid > *, .testimonial-row > * {
  margin-bottom: 20px;
}
.section, .about, .about-intro, .features, .testimonials-preview, .newsletter-signup, .cta, .thankyou-confirmation, .services-overview, .project-card, .service-card, .office-info, .contact-info, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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