/* ============================================================
  CSS RESET & BASE STYLES
============================================================ */
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, 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 {
  scroll-behavior: smooth;
}
body {
  background: #F5FAF7;
  color: #224B67;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
}
a {
  text-decoration: none;
  color: #224B67;
  transition: color 0.2s cubic-bezier(.76,0,.24,1);
}
a:hover, a:focus {
  color: #F4B100;
}

:root {
  --clr-primary: #224B67;
  --clr-secondary: #F4B100;
  --clr-accent: #F5FAF7;
  --shadow-card: 0 4px 24px rgba(34,75,103,0.10);
  --shadow-card-hover: 0 6px 28px rgba(34,75,103,0.18);
  --radius: 20px;
  --radius-sm: 14px;
  --transition: 0.24s cubic-bezier(.76,0,.24,1);
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ============================================================
  TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: #224B67;
  margin-bottom: 0.25em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  color: #0E2D45;
}
h4, h5, h6 {
  font-size: 1.08rem;
}
p, ul, ol, blockquote {
  font-size: 1rem;
  color: #224B67;
}
blockquote {
  font-style: italic;
  color: #0E2D45;
  border-left: 6px solid #F4B100;
  padding-left: 18px;
  background: #fffbe7;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.letter-fun {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
}

/* Playful font styles for playful_dynamic */
h1, h2, h3 {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
}

/* ============================================================
  BUTTONS & LINKS
============================================================ */
.button,
.button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: none;
  background: var(--clr-secondary);
  color: #224B67;
  box-shadow: 0 2px 12px rgba(34,75,103,0.11);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.button.primary {
  background: linear-gradient(92deg, #F4B100 65%, #FDBA29 100%);
  color: #224B67;
}
.button:hover, .button:focus,
.button.primary:hover, .button.primary:focus {
  background: #224B67;
  color: #fff;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px) scale(1.027) rotate(-1deg);
}
.button:active {
  background: #F4B100;
  color: #224B67;
  transform: scale(1) rotate(0deg);
}
.button.secondary {
  background: #fff;
  color: #F4B100;
  border: 2px solid #F4B100;
}
.button.secondary:hover {
  background: #F4B100;
  color: #fff;
}
nav a.button {
  margin-left: 18px;
}

/* Link as button in mobile nav */
.mobile-nav a.button {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}

/* ============================================================
  HEADER & NAVIGATION
============================================================ */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,75,103,0.07);
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 20px;
}
header img[alt="ClearHill Solar"] {
  width: 162px;
  height: auto;
  margin-right: 38px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 12px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 6px 8px;
  border-radius: 8px;
  transition: background 0.12s, color 0.18s;
}
header nav a:hover, header nav a.active {
  background: #F4B100;
  color: #224B67;
}
header .button.primary {
  margin-left: auto;
}
button.mobile-menu-toggle {
  background: #F4B100;
  color: #224B67;
  border: none;
  border-radius: 50%;
  padding: 10px 13px;
  font-size: 1.6rem;
  margin-left: 20px;
  display: none;
  cursor: pointer;
  transition: background 0.18s;
  box-shadow: 0 2px 12px rgba(244,177,0,0.13);
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover {
  background: #FDBA29;
  color: #fff;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,75,103, 0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110vw);
  transition: transform var(--transition);
  z-index: 998;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #F4B100;
  border: none;
  color: #224B67;
  font-size: 2.1rem;
  border-radius: 50%;
  margin: 25px 20px 12px 18px;
  align-self: flex-end;
  cursor: pointer;
  width: 48px;
  height: 48px;
  transition: background 0.15s;
  box-shadow: 0 1px 7px rgba(244,177,0,0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FDBA29;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 18px 32px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  transition: color 0.16s;
  padding: 8px 0;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: #F4B100;
  background: rgba(244,177,0,0.06);
}

@media (max-width: 1020px) {
  header nav {
    gap: 14px;
  }
  header .button.primary {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  header nav, header .button.primary {
    display: none;
  }
  button.mobile-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

/* ============================================================
  HERO SECTION
============================================================ */
.hero {
  background: linear-gradient(90deg, #F4B100 40%, #fffbe7 100%);
  border-radius: 0 0 42px 42px;
  box-shadow: 0 8px 40px -16px rgba(34,75,103,0.11);
  margin-bottom: 60px;
  padding: 60px 0 70px 0;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  max-width: 670px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #224B67;
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.hero .button.primary {
  margin-top: 20px;
  font-size: 1.1rem;
  animation: playful-bounce 0.85s 1 linear;
}
@keyframes playful-bounce {
  0% { transform: scale(1) }
  12% { transform: scale(1.23) }
  28% { transform: scale(0.95) }
  40% { transform: scale(1.05) }
  54% { transform: scale(1) }
}

/* ============================================================
  SECTIONS & FLEXBOX LAYOUTS
============================================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.features {
  padding-top: 0px;
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 22px 28px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 2px #F4B100); /* playful */
  margin-bottom: 6px;
  animation: playful-pop 0.7s 1;
}
@keyframes playful-pop {
  0% { transform: scale(0.8) rotate(-10deg); }
  60% { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}
.feature-item:hover, .feature-item:focus {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px) rotate(-1deg);
  background: #FFFDEE;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  background: #fff;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-8px) scale(1.03);
}

.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: #fffbe7;
  box-shadow: 0 2px 16px rgba(244,177,0,0.13), var(--shadow-card);
  border-radius: var(--radius);
  margin-bottom: 24px;
  position: relative;
  min-width: 220px;
  max-width: 660px;
  color: #224B67 !important;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card blockquote {
  color: #0E2D45;
  background: none;
  border-left: 6px solid #F4B100;
  padding-left: 18px;
  margin: 0 0 8px 0;
  font-size: 1.12rem;
}
.testimonial-card .testimonial-footer {
  color: #224B67;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(244,177,0,0.18);
  background: #fffce6;
  transform: translateY(-4px) scale(1.025);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section .button {
  margin-top: 8px;
}

/* Case study custom styling */
.case-study {
  background: #F4B10010;
  border-left: 5px solid #F4B100;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 18px 0;
  box-shadow: 0 1px 7px rgba(244,177,0,0.09);
}

/* Playful animated underline for h2 */
h2 {
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 5px;
  background: #F4B100;
  border-radius: 3px;
  margin-top: 8px;
  position: absolute;
  left: 0;
  animation: underline-swing 1.2s cubic-bezier(.32,-0.08,.27,1.42) both;
}
@keyframes underline-swing {
  0% { width: 0; opacity: 0; }
  30% { width: 40px; opacity: 1; }
  70% { width: 55px }
  100% { width: 50px; opacity: 1 }
}


/* CTA section (playful colors and shadow) */
.cta {
  background: linear-gradient(90deg, #fffde7 60%, #F4B100 120%);
  border-radius: var(--radius);
  box-shadow: 0 4px 26px rgba(244,177,0,0.09);
  margin-bottom: 60px;
  padding: 38px 20px 46px 20px;
}
.cta h2 {
  color: #0E2D45;
  margin-bottom: 10px;
}
.cta p {
  font-size: 1.1rem;
  color: #324A60;
  margin-bottom: 18px;
}

.about-preview, .about, .services-preview, .services, .process, .benefits, .values, .team, .consulting-steps, .why-consulting, .case-studies, .map, .thank-you, .contact, .legal {
  margin-bottom: 60px;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 20px 0;
}
.company-info .contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
}
.company-info img {
  width: 32px;
  height: 32px;
}

@media (max-width: 820px) {
  .hero {
    padding: 40px 0 50px 0;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .section, .cta, .about-preview, .about, .services-preview, .services, .process, .benefits, .values, .team, .consulting-steps, .why-consulting, .case-studies, .map, .thank-you, .contact, .legal {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .hero .content-wrapper {
    max-width: 98vw;
    padding-right: 4vw;
  }
  .feature-item {
    padding: 20px 12px 24px 18px;
    min-width: 0;
  }
  .testimonial-card {
    max-width: 95vw;
    padding: 16px;;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .about, .values, .team, .consulting-steps, .why-consulting, .case-studies {
    padding: 26px 4px;
  }
}

/* ============================================================
  LISTS, FAQ, PROCESS, ETC.
============================================================ */
ul, ol {
  margin-left: 32px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1rem;
  position: relative;
}
ul li::before {
  content: "☀";
  color: #F4B100;
  font-size: 0.96rem;
  position: absolute;
  left: -22px;
  top: 1px;
  font-family: 'Arial Unicode MS', 'Segoe UI Emoji', sans-serif;
  animation: star-spin 0.9s both;
}
@keyframes star-spin {
  0% { transform: rotate(0deg); }
  30% { transform: rotate(250deg) scale(1.14); }
  70% { transform: scale(1.05); }
  100% { transform: rotate(0deg); }
}
ol {
  list-style-type: decimal;
}
.faq-item {
  margin-bottom: 32px;
}
.faq-item h2 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.faq-item p {
  margin-bottom: 0px;
}

.process ol, .consulting-steps ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}
.process ol li, .consulting-steps ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 0 0 0px;
}
.process ol li img, .consulting-steps ol li img {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  margin-top: 4px;
  animation: icon-spring 1.1s;
}
@keyframes icon-spring {
  0% { transform: scale(1.3) rotate(-15deg); }
  38% { transform: scale(1) rotate(2deg); }
  100% { transform: none; }
}

/* ============================================================
  FOOTER
============================================================ */
footer {
  background: #224B67;
  color: #fff;
  margin-top: 52px;
  padding: 46px 0 0 0;
  border-radius: 38px 38px 0 0;
  box-shadow: 0 -4px 28px -8px rgba(34,75,103,0.21);
  position: relative;
  z-index: 2;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 22px;
}
footer nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
footer nav a {
  color: #F4B100;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 6px 6px;
  border-radius: 6px;
  transition: background 0.12s, color 0.18s;
}
footer nav a:hover, footer nav a.active {
  color: #224B67;
  background: #F4B100;
}
.footer-info {
  display: flex;
  flex-direction: row;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.footer-address, .footer-contact, .footer-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffbe7;
  color: #224B67;
  padding: 10px 16px;
  border-radius: 13px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 6px rgba(244,177,0,0.10);
}
.footer-address img, .footer-contact img, .footer-hours img {
  width: 22px;
  height: 22px;
}
@media (max-width: 730px) {
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  footer nav {
    gap: 13px;
  }
}
footer .footer-info div {
  min-width: 200px;
}

/* ============================================================
  COOKIE BANNER (FIXED BOTTOM, MODAL)
============================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe7;
  color: #224B67;
  box-shadow: 0 -1px 14px rgba(244,177,0,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  z-index: 10001;
  animation: bannerUp 0.75s cubic-bezier(.1,0,.35,1);
}
@keyframes bannerUp {
  0% { transform: translateY(100%); opacity: 0; }
  90% { transform: translateY(-8px); opacity: .98; }
  100% { transform: translateY(0%); opacity: 1; }
}
.cookie-banner .cookie-text {
  font-size: 1rem;
  flex: 2 1 360px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner .button, .cookie-banner .button.primary, .cookie-banner .button.secondary {
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 11px;
  min-width: 95px;
}
.cookie-banner .button.primary {
  background: #F4B100;
  color: #224B67;
  font-weight: 700;
}
.cookie-banner .button.secondary {
  background: #fff;
  border: 2px solid #F4B100;
  color: #F4B100;
  font-weight: 700;
}
.cookie-banner .button:hover {
  background: #224B67;
  color: #fff;
}
.cookie-banner .button.secondary:hover {
  background: #F4B100;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 10004;
  background: #fffbe7;
  color: #224B67;
  border-radius: var(--radius);
  box-shadow: 0 2px 40px rgba(244,177,0,0.21);
  min-width: 320px;
  max-width: 94vw;
  width: 450px;
  padding: 38px 24px 28px;
  transform: translate(-50%, 120vh);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.1,.82,.33,1), opacity 0.4s;
  pointer-events: none;
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h2 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 9px;
  padding: 10px 17px;
  box-shadow: 0 1px 7px rgba(244,177,0,0.07);
}
.cookie-modal label {
  flex-grow: 1;
  font-size: 1.085rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F4B100;
  width: 20px; height: 20px;
  border-radius: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal .button.secondary {
  background: #fff;
  border: 2px solid #F4B100;
  color: #F4B100;
}
.cookie-modal .button.secondary:hover {
  background: #F4B100;
  color: #fff;
}
.cookie-modal .button.primary {
  background: #F4B100;
  color: #224B67;
}
.cookie-modal .button.primary:hover {
  background: #224B67;
  color: #fff;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: #fff;
  border: none;
  color: #F4B100;
  font-size: 1.7rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .modal-close:hover {
  background: #F4B100;
  color: #fff;
}
.cookie-modal .note {
  font-size: 0.97rem;
  color: #324A60;
  opacity: 0.8;
  margin-top: 8px;
}
/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,75,103,0.21);
  z-index: 10003;
}
.cookie-modal.open ~ .cookie-modal-overlay {
  display: block;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 8px;
    align-items: flex-start;
  }
  .cookie-modal {
    min-width: 0;
    width: 97vw;
    padding: 20px 8px 18px;
  }
}

/* ============================================================
  FORMS (for possible future forms)
============================================================ */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #e8eceb;
  outline: none;
  background: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border-color 0.18s, box-shadow 0.20s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #F4B100;
  box-shadow: 0 1px 8px #F4B10033;
}
label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #224B67;
  display: block;
}

/* ============================================================
  PLAYFUL MICRO-ANIMATIONS & DECORATIVE SHAPES
============================================================ */
/* (fun background dots for accent) */
.section::before, .hero::before, .cta::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 18px;
  width: 44px;
  height: 44px;
  background: url('data:image/svg+xml;utf8,<svg fill="%23F4B100" fill-opacity="0.09" width="44" height="44" xmlns="http://www.w3.org/2000/svg"><circle cx="10" cy="10" r="6"/><circle cx="34" cy="16" r="4"/><circle cx="21" cy="35" r="7"/></svg>');
  z-index: 0;
  pointer-events: none;
}
.section, .hero, .cta { position: relative; z-index: 1; }

@media (max-width: 650px) {
  .section::before, .hero::before, .cta::before { display: none; }
}

/* ============================================================
  ACCESSIBILITY
============================================================ */
:focus {
  outline: 2.5px dotted #F4B100;
}

/* Remove :focus outline for mouse */
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
  PLAYFUL STATES
============================================================ */
.button, .feature-item, .card, .testimonial-card {
  transition: box-shadow 0.2s, background 0.18s, transform 0.18s;
}

/* ============================================================
  THANK YOU PAGE
============================================================ */
.thank-you .button.primary {
  margin-top: 28px;
  animation: playful-bounce 1.1s 1;
}

/* ============================================================
  PRINT STYLES
============================================================ */
@media print {
  body, html {
    background: #fff;
    color: #222;
  }
  header, nav, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
}
