/* =======================================================================
   Radiance Spring Solar – Geometric Structured Flexbox CSS
   All layouts are flexbox-based. NO grid or columns used anywhere.
   Brand Colors: #145A32 (deep green), #F9E79F (solar yellow), #1565C0 (accent blue)
   Fonts: Montserrat (display, angular, geometric), Roboto (body, smooth)
   ======================================================================= */

/* ========================== 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #145A32;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
 /* fallback for min-viewport-height on legacy browsers */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s cubic-bezier(.73,.02,.28,1) 0s;
}
a:focus {
  outline: 2px solid #1565C0;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ======================= VARIABLE SUPPORT / FALLBACKS ================= */
:root {
  --primary: #145A32;
  --yellow: #F9E79F;
  --blue: #1565C0;
  --accent: #1565C0;
  --white: #fff;
  --gray-light: #F9F9F9;
  --gray-mid: #A6ACAF;
  --border: #E0E3E7;
  --shadow-lg: 0 6px 32px 0 rgba(20,90,50,.10);
  --shadow-sm: 0 2px 12px 0 rgba(21,101,192,.07);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 36px;
  --transition: all 0.25s cubic-bezier(.73,.02,.28,1);
}


/* ==================== TYPOGRAPHY: GEOMETRIC / ANGULAR ================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  color: var(--primary);
  text-wrap: balance;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

p, li, blockquote, cite, dd {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #242424;
  margin-bottom: 10px;
  line-height: 1.7;
}
blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #145A32;
  border-left: 4px solid var(--yellow);
  padding-left: 12px;
  margin-bottom: 12px;
  background: #F7F9F9;
}
cite {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--accent);
}
strong {
  font-weight: 700;
}
.subheadline {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--blue);
  margin-bottom: 24px;
  max-width: 700px;
}

/* ========================= LAYOUT CONTAINERS ========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 20px;
  padding: 0 0 20px 0;
}

/* === Spacing patterns for flexbox-based sections */
.card-container, .service-grid, .feature-list, .content-grid, .text-image-section {
  display: flex;
  flex-wrap: wrap;
}
.card-container,
.service-grid {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .25s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  align-items: center;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--gray-light);
  border-left: 6px solid var(--blue);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  flex-direction: column;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ============= MAIN STRUCTURAL LAYOUT & NAVIGATION ============= */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 3px 16px 0 rgba(20, 90, 50, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--yellow);
  color: var(--accent);
}
.main-nav .cta-btn {
  font-weight: 700;
  background: var(--accent);
  color: var(--white)!important;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  margin-left: 12px;
  box-shadow: 0 2px 8px 0 rgba(21, 101, 192, 0.07);
  border: none;
  letter-spacing: 0.05em;
  transition: background .18s, color .18s, box-shadow .18s;
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--primary);
  color: var(--yellow)!important;
  box-shadow: var(--shadow-lg);
}

/* ===== MOBILE BURGER MENU (hidden on desktop, slides in) ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  line-height: 1;
  padding: 8px 10px;
  margin-left: 10px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
  z-index: 201;
  transition: background .17s, color .17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--yellow);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 84vw;
  max-width: 340px;
  background: var(--white);
  box-shadow: -4px 0 32px 0 rgba(21, 101, 192, 0.13);
  transform: translateX(108%);
  transition: transform 0.32s cubic-bezier(.73,.02,.28,1);
  z-index: 2002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 32px 24px 32px 24px;
  pointer-events: none;
  opacity: 0.99;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: -8px 0 40px 0 rgba(21, 101, 192, 0.17);
  opacity: 1;
}
.mobile-menu-close {
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  padding: 6px 16px 8px 16px;
  box-shadow: 0 2px 8px 0 rgba(20, 90, 50, 0.09);
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--primary);
  padding: 13px 0 11px 0;
  border-radius: 0;
  border-bottom: 1px solid #E4ECF4;
  transition: color .17s, background .18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: var(--yellow);
}

/* Hide desktop nav, show mobile burger on mobile */
@media (max-width: 992px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================ HERO & CTA SECTIONS ================== */
.hero {
  background: linear-gradient(105deg, #fff 65%, var(--yellow) 100%);
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 3px solid var(--primary);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.45rem;
  color: var(--primary);
  margin-bottom: 24px;
}
.cta-btn {
  background: var(--primary);
  color: var(--white) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 36px;
  font-size: 1.14rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 rgba(21,101,192,.08);
  transition: background .20s, color .20s, box-shadow .18s;
  margin-top: 20px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--yellow)!important;
  box-shadow: var(--shadow-lg);
}
.cta-block {
  margin: 32px 0 0 0;
}

/* =================== FEATURE SECTIONS ===================== */
.features {
  background: #fff;
  border-bottom: 2.5px solid var(--yellow);
}
.features h2 {
  color: var(--primary);
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-list li {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  padding: 28px 22px 18px 22px;
  flex: 1 1 280px;
  min-width: 260px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .19s, border-color .18s;
}
.feature-list li:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.feature-list img {
  height: 42px;
  width: 42px;
}
.feature-list h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 1.02rem;
  color: var(--primary);
  margin-top: 24px;
}
.feature-icons {
  display: flex;
  gap: 20px;
  margin: 28px 0 0 0;
}
.feature-icons img {
  width: 36px;
  height: 36px;
}

/* ================== SERVICES OVERVIEW / CARDS =================== */
.services-overview, .service-grid {
  width: 100%;
}
.service-list {
  margin: 18px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 30px 0;
}
.service-grid > div {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 20px 18px 20px;
  flex: 1 1 237px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  transition: box-shadow .17s, border-color .15s;
}
.service-grid > div:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.process-steps {
  margin-top: 36px;
}
.process-steps h3 {
  margin-bottom: 12px;
}
.process-steps ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 22px;
}

/* ================== PROJECT & TESTIMONIALS ========================= */
.testimonial-card {
  background: #f7f7f7;
  border-left: 5px solid var(--primary);
  color: #272e1f;
}
.testimonial-card blockquote {
  border-left: none;
  background: none;
  padding-left: 0;
}
.testimonial-card cite {
  color: var(--primary);
  font-size: 1.01rem;
}
.testimonial-card div {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-left: 0;
}
.testimonial-overview {
  margin-top: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  background: var(--yellow);
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.project-summary {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  border-left: 5px solid var(--accent);
  padding: 24px 22px 14px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

/* =============== FAQ, DLs, COMPARE, GENERAL LISTS ================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 9px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.faq-list dd {
  margin-left: 10px;
  font-size: 1rem;
  color: #3A3A3A;
  margin-bottom: 0;
}
.comparison ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 12px;
}

/* =============== CONTACT DETAILS ================== */
.contact-details {
  background: var(--gray-light);
  border-radius: var(--radius-lg);
  margin-bottom: 34px;
  border: 1.8px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0 0 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05rem;
  color: var(--primary);
}
.contact-info img {
  width: 22px;
  height: 22px;
}

/* =============== CITIES OVERVIEW =============== */
.city-overview {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 8px;
  color: #2C3E50;
  font-size: 1.01rem;
}

/* =============== FOOTER ================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 22px 0;
  margin-top: 62px;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--yellow);
  margin-bottom: 20px;
  justify-content: center;
}
.footer-nav a {
  color: var(--yellow);
  margin: 0 2px;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.branding {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px 0;
  justify-content: center;
}
.branding img {
  height: 34px;
}
.branding span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--yellow);
}
.short-contact {
  font-size: 0.99rem;
  line-height: 1.55;
  margin-bottom: 14px;
  color: var(--yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.short-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}
.social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
  margin-bottom: 0;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
  padding: 7px;
  transition: background .16s, box-shadow .18s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--blue);
  box-shadow: 0 2px 12px 0 rgba(21,101,192,.11);
}
.social-links img {
  width: 24px;
  height: 24px;
}

/* ============ COOKIE CONSENT BANNER & MODAL ============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -6px 22px 0 rgba(20,90,50,.07);
  border-top: 2px solid var(--yellow);
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 2200;
  transition: transform 0.38s cubic-bezier(.73,.02,.28,1);
  transform: translateY(108%);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 0;
}
.cookie-banner .btn-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
.cookie-banner button,
.cookie-banner .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 24px;
  font-size: 1rem;
  transition: background .18s, color .17s;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
}
.cookie-banner .accept {
  background: var(--primary);
  color: var(--white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--accent);
  color: var(--yellow);
}
.cookie-banner .reject {
  background: var(--yellow);
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--gray-mid);
  color: var(--primary);
}
.cookie-banner .settings {
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--blue);
  color: var(--yellow);
  border-color: var(--blue);
}

/* === Cookie modal === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,87,90,0.24);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s cubic-bezier(.73,.02,.28,1);
}
.cookie-modal-overlay.visible {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 26px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 48px 0 rgba(21,101,192,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  position: relative;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.31rem;
  margin-bottom: 10px;
  color: var(--primary);
}
.cookie-modal .category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 10px 0;
  padding-bottom: 7px;
}
.cookie-modal label {
  font-weight: 500;
  font-size: 1.01rem;
  color: var(--primary);
}
.cookie-modal .switch {
  display: inline-block;
  width: 48px;
  height: 28px;
  position: relative;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top:0; left:0; right:0; bottom:0;
  background: var(--gray-mid);
  border-radius: 16px;
  transition: .18s;
}
.cookie-modal .slider:before {
  content: "";
  position: absolute;
  left:4px; top:4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  transition: .18s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--accent);
}
.cookie-modal .switch input:checked + .slider:before {
  background: var(--yellow);
  transform: translateX(20px);
}
.cookie-modal .switch input:disabled + .slider {
  background: #E2E2E2;
  opacity: 0.64;
}
.cookie-modal .close {
  position: absolute;
  top: 14px; right: 13px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.23rem;
  border: none;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--accent);
}

.cookie-modal .btn-group {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
}

/* =========== MISC / UTILITY CLASSES / FOR CARDS, GAPS =========== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}
.gap-30 {
  gap: 30px !important;
}

/* BUTTONS (Fallback) */
button, [type=button], [type=submit] {
  cursor: pointer;
}

/* =========== RESPONSIVE: MOBILE-FIRST ADAPTATION ========== */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-nav {
    gap: 15px;
  }
  .service-grid, .feature-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.48rem;
  }
  .section,
  .hero {
    padding: 28px 6px;
  }
  .hero {
    min-height: 188px;
  }
  .content-wrapper, .text-section {
    padding: 0 0 10px 0;
  }
  .text-image-section,
  .content-grid,
  .feature-list,
  .service-grid,
  .card-container,
  .testimonial-card {
    flex-direction: column !important;
    align-items: stretch;
    gap: 20px !important;
  }
  .project-summary, .service-grid > div, .feature-list li {
    min-width: 90vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .cta-btn,
  .main-nav .cta-btn {
    width: 100%;
    font-size: 1.03rem;
    text-align: center;
  }
  .branding img {
    height: 27px;
  }
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
}
@media (max-width: 480px) {
  .section, .hero {
    padding: 15px 2px;
  }
  .project-summary, .service-grid > div, .feature-list li {
    min-width: 86vw;
    padding: 12px 6px 10px 9px;
  }
  .cookie-modal {
    padding: 10px 4px;
    min-width: 90vw;
  }
}

/* =========== MICRO-INTERACTIONS & TRANSITIONS ============= */
.cta-btn, .card, .feature-list li, .service-grid > div, .main-nav a, .footer-nav a,
.project-summary, .social-links a, .cookie-banner button, .cookie-banner .cta-btn {
  transition: all 0.17s cubic-bezier(.73,.02,.28,1);
}
.card:hover, .feature-list li:hover, .service-grid > div:hover,
.card:focus, .feature-list li:focus, .service-grid > div:focus {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.cta-btn:active {
  transform: scale(0.97);
}
.social-links a:active {
  transform: scale(1.08);
}

/* =========== ACCESSIBILITY: HIGH CONTRAST & FOCUS STYLES =========== */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* ===================== PRINT STYLE (optional) ======================= */
@media print {
  .main-nav, .mobile-menu-toggle, .mobile-menu, .footer-nav, .social-links, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  header, footer {
    background: none !important;
    color: #000 !important;
    box-shadow: none !important;
  }
}
