/* =======================================================
   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 {
  background: #FFF8E7;
  color: #191F2A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}
button:focus, a:focus {
  outline: 2px solid #FFD88A;
  outline-offset: 2px;
}
strong, b {
  font-weight: 700;
}

/* =======================================================
   Font Imports
======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #374151;
  --color-secondary: #FFD88A;
  --color-accent: #FFF8E7;
  --color-electric1: #FFC800;
  --color-electric2: #8357FF;
  --color-electric3: #29D0E5;
  --color-electric4: #FF4C60;
  --color-electric5: #22E370;
  --color-dark: #191F2A;
  --shadow-card: 0 6px 26px rgba(55,65,81,0.08), 0 2px 8px rgba(55,65,81,0.03);
  --shadow-high: 0 10px 40px rgba(55,65,81,0.12);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =======================================================
   Layout Containers (Flexbox only)
======================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow-high);
  transform: translateY(-4px) 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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-secondary);
  border-radius: 16px;
  color: var(--color-dark);
  box-shadow: 0 2px 8px rgba(191, 173, 118, 0.1);
  transition: box-shadow 0.2s, transform 0.2s;
  font-size: 18px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  margin-right: 14px;
  color: var(--color-primary);
  line-height: 1.5;
}
.testimonial-card strong {
  min-width: 120px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px rgba(255, 216, 138, 0.2);
  transform: scale(1.02);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features,
.services-preview,
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 20px;
  margin-bottom: 8px;
}
.feature, .service {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.15s;
}
.feature img, .service img {
  width: 54px;
  height: 54px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(255,200,0,0.15));
}
.feature:hover, .service:hover {
  box-shadow: var(--shadow-high);
  transform: translateY(-6px) scale(1.04);
}
@media (max-width: 1100px) {
  .feature, .service {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 180px;
  }
}
@media (max-width: 768px) {
  .features,
  .services-preview,
  .services {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ========== Project/List & Blog/Teaser Styles ========== */
.project-list, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.project-summary, .post-teaser {
  background: #FFF;
  box-shadow: var(--shadow-card);
  border-radius: 15px;
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 12px;
}
@media (max-width: 900px) {
  .project-list, .blog-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* =======================================================
   Header & Navigation (with mobile menu)
======================================================= */
header {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 18px rgba(55,65,81,0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  min-height: 76px;
}
header a img {
  height: 46px;
  width: auto;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-radius: 6px;
  padding: 4px 10px;
  transition: background 0.13s, color 0.13s;
}
nav a:hover, nav a.active {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cta-btn {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  background: var(--color-secondary);
  border-radius: 18px;
  padding: 12px 32px;
  box-shadow: 0 4px 22px 0 rgba(255, 200, 0, 0.14);
  font-size: 18px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  margin-left: 24px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.15s;
  outline: none;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F9B712;
  color: #191F2A;
  box-shadow: 0 6px 38px rgba(255, 200, 0, 0.22);
  transform: scale(1.06) translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  margin-left: 18px;
  z-index: 31;
  transition: color 0.2s;
}

@media (max-width: 1020px) {
  nav {
    gap: 10px;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 11px 20px;
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    padding: 0 12px;
    min-height: 60px;
  }
  nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ========== Mobile Overlay Menu ========== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  opacity: 0.98;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 34px;
  color: #FFD88A;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #FFF8E7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 32px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  padding: 10px 0 10px 8px;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.14s, color 0.14s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* =======================================================
   Hero Section
======================================================= */
.hero {
  min-height: 420px;
  width: 100%;
  background: linear-gradient(to right, var(--color-secondary) 0%, var(--color-electric2) 100%);
  color: var(--color-primary);
  border-radius: 0 0 38px 38px;
  margin-bottom: 56px;
  box-shadow: 0 18px 54px -12px rgba(255,200,0,0.10);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero .container {
  height: 100%;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 26px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  color: #fff;
  text-shadow: 0 6px 28px rgba(55,65,81,0.16);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero p {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 22px;
  font-family: var(--font-body);
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    margin-bottom: 32px;
    border-radius: 0 0 22px 22px;
  }
  .hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .hero p {
    font-size: 18px;
  }
}

/* =======================================================
   Headings & Typography
======================================================= */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--color-electric2);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--color-electric4);
  letter-spacing: 0.01em;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 20px;
}
h5, .h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
}
h6, .h6 {
  font-family: var(--font-body);
  font-size: 15px;
}
p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 10px;
}
ul, ol {
  margin: 0 0 14px 20px;
}
li {
  font-size: 16px;
  font-family: var(--font-body);
  margin-bottom: 6px;
  color: var(--color-primary);
  position: relative;
}
ul li::before {
  content: '•';
  color: var(--color-electric4);
  margin-right: 6px;
}
blockquote {
  font-style: italic;
  color: var(--color-primary);
  background: #fff4da;
  border-left: 5px solid var(--color-electric4);
  border-radius: 12px;
  padding: 18px 18px 18px 24px;
  margin: 17px 0 15px 0;
  font-size: 18px;
}
@media (max-width: 768px) {
h1, .h1 { font-size: 30px; }
h2, .h2 { font-size: 24px; }
h3, .h3 { font-size: 18px; }
p, li, ul, ol { font-size: 15px; }
blockquote { font-size: 15px; padding: 13px 12px 13px 14px; }
}

/* =======================================================
   Forms & Inputs
======================================================= */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  background: #fff;
  border: 2px solid var(--color-secondary);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: var(--font-body);
  margin-bottom: 14px;
  width: 100%;
  box-shadow: none;
  transition: border 0.2s;
  color: var(--color-dark);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: var(--color-electric2);
}
button, .newsletter-form button {
  font-family: var(--font-display);
  font-weight: 800;
  background: var(--color-electric4);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 10px 28px;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255,76,96,0.11);
  margin-top: 8px;
  transition: background 0.17s, color 0.17s, transform 0.13s, box-shadow 0.17s;
}
button:hover, button:focus, .newsletter-form button:hover {
  background: var(--color-electric2);
  color: #FFD88A;
  box-shadow: 0 8px 28px rgba(131,87,255,0.18);
  transform: scale(1.04);
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.newsletter-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 150px;
  margin: 0;
  font-size: 16px;
}
.newsletter-form button {
  min-width: 110px;
  font-size: 17px;
  margin: 0;
}

/* =======================================================
   Footer styles
======================================================= */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 46px 0 24px 0;
  border-radius: 36px 36px 0 0;
  margin-top: 64px;
}
footer .container {
  align-items: flex-start;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 260px;
}
.footer-brand img {
  height: 38px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0.88;
  padding: 4px 0;
  transition: color 0.16s, opacity 0.14s;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #FFD88A;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-contact li {
  font-size: 15px;
  margin-bottom: 5px;
  color: #FFD88A;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact li img {
  height: 22px;
  width: 22px;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.footer-social a img {
  height: 28px;
  width: 28px;
  filter: grayscale(0.15) brightness(1.35);
  opacity: 0.86;
  transition: filter 0.22s, transform 0.12s, opacity 0.11s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 6px 10px #FFD88A);
  opacity: 1;
  transform: scale(1.14) rotate(-6deg);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .footer-brand img {
    height: 32px;
  }
  footer {
    padding: 24px 0 18px 0;
  }
}

/* =======================================================
   Blog & Tag Styles
======================================================= */
.blog-categories, .tag-cloud {
  margin: 20px 0;
  font-size: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.blog-categories a, .tag-cloud a {
  display: inline-block;
  background: var(--color-electric1);
  color: var(--color-primary);
  padding: 6px 18px;
  border-radius: 12px;
  font-size: 15px;
  margin-right: 0.6em;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background 0.16s, color 0.14s, box-shadow 0.13s;
  box-shadow: 0 2px 5px rgba(255, 200, 0, 0.08);
}
.blog-categories a:hover, .tag-cloud a:hover {
  background: var(--color-electric5);
  color: #fff;
  box-shadow: 0 4px 22px rgba(34,227,112,0.16);
}

/* =======================================================
   Utility Classes (for Vibrant Accents)
======================================================= */
.accent {
  color: var(--color-electric2) !important;
}
.underline {
  border-bottom: 2px solid var(--color-electric4);
  display: inline;
}
.text-center {
  text-align: center;
}
.flex {
  display: flex !important;
}
.flex-between {
  justify-content: space-between !important;
  align-items: center !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-36 {
  gap: 36px !important;
}
.rounded {
  border-radius: 20px !important;
}
.shadow {
  box-shadow: var(--shadow-card) !important;
}

/* =======================================================
   Cookie Consent Banner & Modal
======================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--color-primary);
  color: #fff;
  z-index: 2001;
  padding: 26px 20px 16px 20px;
  box-shadow: 0 -2px 20px rgba(55,65,81,0.17);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  transform: translateY(100%);
  opacity: 1;
  font-size: 16px;
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner__text {
  flex: 1 1 220px;
  font-family: var(--font-body);
  color: #ffd88a;
  font-size: 17px;
  line-height: 1.45;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 22px;
  padding: 10px 24px;
  margin: 0 2px;
  cursor: pointer;
  background: var(--color-electric2);
  color: #fff;
  transition: background 0.16s, color 0.16s, transform 0.13s;
  box-shadow: 0 2px 10px rgba(131,87,255,0.13);
}
.cookie-btn--accept { background: var(--color-electric5); color: var(--color-primary); }
.cookie-btn--accept:hover { background: #12c85a; color: #fff; }
.cookie-btn--reject { background: var(--color-electric4); }
.cookie-btn--reject:hover { background: #fc1435; }
.cookie-btn--settings { background: var(--color-electric2);
  color: #FFD88A; }
.cookie-btn--settings:hover { background: #6b3be6; }

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 27, 44, 0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-overlay.hidden { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 22px;
  box-shadow: 0 8px 44px rgba(55,65,81,0.18);
  width: 95vw;
  max-width: 450px;
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h3 {
  font-size: 22px;
  color: var(--color-electric2);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-modal label, .cookie-modal p {
  font-size: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 13px 0 0 0;
  font-family: var(--font-body);
}
.cookie-modal .switch {
  width: 40px;
  height: 22px;
  background: #e4e4ed;
  border-radius: 18px;
  position: relative;
  display: inline-block;
  margin-right: 5px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--color-electric5);
  transition: 0.17s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--color-electric2);
  left: 21px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 32px;
  background: none;
  border: none;
  color: var(--color-electric2);
  cursor: pointer;
  z-index: 2;
  transition: color 0.14s;
}
.cookie-modal-close:hover {
  color: var(--color-electric4);
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 20px 8px 24px 8px;
    min-width: 0;
    width: 99vw;
  }
  .cookie-modal-overlay {
    align-items: flex-end;
    padding-bottom: 8vw;
  }
}

/* =======================================================
   Responsive Tweaks
======================================================= */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .section { border-radius: 13px; }
}

/* Ensure minimum margin for all content sections/cards */
.section:not(:last-child), .card:not(:last-child),
.feature:not(:last-child), .service:not(:last-child),
.project-summary:not(:last-child), .post-teaser:not(:last-child) {
  margin-bottom: 20px;
}

/* Prevent overlap in all flex containers */
.features, .services-preview, .services,
.card-container, .content-grid, .project-list, .blog-list {
  gap: 24px;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .features, .services-preview, .services, .card-container, .content-grid, .project-list, .blog-list {
    gap: 12px;
  }
}

/* =======================================================
   Micro-animations & Effects
======================================================= */
.cta-btn, button, .service, .feature, .card, .testimonial-card, .footer-social a img {
  transition: box-shadow 0.16s, background 0.15s, color 0.14s, transform 0.15s;
}

/* =======================================================
   Hide visually (for cookies, modals) */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* =========== Additional Vibrant Accents (optional) ============= */
@media (min-width: 1100px) {
  .hero:before {
    content: '';
    position: absolute;
    right: -80px;
    top: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-electric3) 0%, transparent 100%);
    opacity: 0.4;
    z-index: 0;
  }
  .hero:after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -110px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--color-electric5) 0%, transparent 100%);
    opacity: 0.28;
    z-index: 0;
  }
}

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