/* ====================================================================
   RESET & BASELINE - mobile-first, normalize, box model, font import
   ==================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

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,
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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #F2F6ED;
  background: #191F26;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  background-color: #191F26;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #7DB36A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F2F6ED; text-decoration: underline; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ===================================================================
   THEME VARIABLES 
   =================================================================== */
:root {
  --primary: #23623B;
  --accent: #7DB36A;
  --dark: #191F26;
  --secondary: #F2F6ED;
  --danger: #ed2371;
  --cta-bg: #377242;
  --shadow-main: 0 4px 28px 0 rgba(79,255,187,0.13);
  --shadow-card: 0 2px 12px 0 rgba(50,255,146,0.17);
  --radius-main: 18px;
  --radius-sm: 12px;
  --transition: 0.22s cubic-bezier(.54,0,.32,1);
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F2F6ED;
  font-weight: 700;
  letter-spacing: -0.03em;
}
h1 { font-size: 2.35rem; margin-bottom: 18px; }
h2 { font-size: 1.65rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 4px; }
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.15rem; }
  h3 { font-size: 1.5rem; }
}
p, li, .subheadline {
  color: #CCF2DE;
  font-size: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.15rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #A3FFAD;
  margin-bottom: 24px;
}
strong { color: #F2F6ED; font-weight: 700; }

/* =============================================================
   LAYOUT STRUCTURE & SPACING
   ============================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section, .content-wrapper, section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-main);
}
.content-wrapper {
  margin-bottom: 0;
  background: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section, section { padding: 56px 44px 56px 44px; }
}

.card-container, .features-grid, .faq-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.content-grid { gap: 20px; justify-content: space-between; }

.card, .feature-card, .project-summary, .service-card, .faq-item, .testimonial-card {
  background: #232C33;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  position: relative;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover, .feature-card:hover, .service-card:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 2px 42px 0 rgba(131,255,143,0.12),var(--shadow-card);
  transform: translateY(-4px) scale(1.0125);
}

.card:last-child, .feature-card:last-child, .service-card:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

.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: stretch; gap: 20px; }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F2F6ED;
  color: #191F26;
  padding: 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(74, 255, 111, 0.10);
  border: 1.5px solid var(--primary);
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card p {
  color: #191F26;
  font-size: 1.04rem;
  margin-bottom: 0.25rem;
  font-style: italic;
}
.testimonial-meta strong {
  color: var(--primary);
  font-size: 1.05em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX WRAPPERS FOR LISTS */
.faq-list, .services-list .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Mobile: column default, desktop: row */
@media (min-width: 900px) {
  .features-grid {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
  }
  .faq-list {
    flex-direction: row;
    gap: 32px;
  }
  .project-highlights .content-wrapper, .project-summary {
    flex-direction: row;
    gap: 36px;
    align-items: flex-start;
  }
}

/* =============================================================
  HEADER & NAVIGATION
  ============================================================= */
header {
  width: 100%;
  position: relative;
  z-index: 40;
  background: #191F26;
  padding: 0;
  box-shadow: 0 2px 18px 0 rgba(0,255,155,0.05);
}
.desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 20px;
}
.desktop-nav > a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #A3FFAD;
  padding: 10px 0 10px 0;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s, border-color var(--transition);
  border-bottom: 2.5px solid transparent;
  margin-right: 10px;
}
.desktop-nav > a:hover, .desktop-nav > a:focus {
  color: #F2F6ED;
  border-bottom: 2.5px solid var(--accent);
}
.desktop-nav > a.cta-primary {
  background: linear-gradient(90deg, var(--primary) 80%, var(--accent) 100%);
  color: #F2F6ED;
  border-radius: 10px;
  padding: 10px 22px;
  margin-left: 16px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 24px 0 rgba(48,255,196,0.10);
  border-bottom: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.desktop-nav > a.cta-primary:hover {
  background: linear-gradient(90deg, var(--accent) 10%, var(--primary) 100%);
  color: #232C33;
  transform: scale(1.065) translateY(-2px);
}
.desktop-nav img { height: 38px; margin-right: 10px; }

/* Show on desktop */
@media (min-width: 1000px) {
  .desktop-nav { display: flex; }
  .mobile-menu-toggle { display: none; }
}

/* Burger menu button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 15px;
  z-index: 60;
  background: var(--accent);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 22px 0 rgba(72,255,187,0.09);
  border: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #A3FFAD;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,27,35,0.98);
  box-shadow: 0 6px 32px 0 rgba(38,255,132,0.13);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.57,0,.32,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 26px 20px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #fff;
  background: var(--primary);
  width: 48px; height: 48px;
  border-radius: 50%;
  align-self: flex-end;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: none;
  box-shadow: 0 2px 13px 0 rgba(120,255,143,0.10);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover {
  background: var(--accent); color: #191F26;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  color: #F2F6ED;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 13px 0;
  border-radius: 6px;
  width: 100%;
  transition: background var(--transition), color var(--transition);
  min-width: 140px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #1C2620;
}

/* =============================================================
   HERO SECTIONS
   ============================================================= */
.hero {
  background: linear-gradient(110deg, #232C33 60%, var(--primary) 100%);
  color: #F2F6ED;
  min-height: 285px;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  margin-bottom: 34px;
  padding-top: 56px;
  padding-bottom: 62px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
@media (min-width: 900px) {
  .hero { min-height: 440px; padding-top: 74px; padding-bottom: 84px; }
}

/* =============================================================
   FEATURE/PROJECT/SERVICE CARDS
   ============================================================= */
.features-grid, .services-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-card, .service-card {
  flex: 1 1 270px;
  background: #232C33;
  border: 1.5px solid #377242;
  color: #F2F6ED;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px 24px 22px;
  min-width: 225px;
  transition: box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.feature-card img, .service-card img {
  margin-bottom: 18px;
  height: 36px;
  filter: drop-shadow(0 2px 0 #59987c90);
}
.service-card .price {
  color: #7DB36A;
  background: #1d3e2b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  border-radius: 6px;
  padding: 5px 12px;
  font-weight: 700;
  margin-top: 10px;
  align-self: flex-end;
}
@media (min-width: 900px) {
  .features-grid, .services-list .content-wrapper {
    flex-direction: row;
    gap: 36px;
  }
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #191F26;
  padding: 48px 0 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 3px solid var(--primary);
}
.footer-logo img {
  width: 64px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: #A3FFAD;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: color 0.15s, border-color 0.18s;
}
.footer-nav a:hover { color: #F2F6ED; border-bottom: 2px solid var(--accent); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #A3FFAD;
  font-size: 1rem;
  align-items: center;
  margin-top: 7px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact img { width: 18px; filter: brightness(1.8); }

/* =============================================================
   BUTTONS/ CTA
   ============================================================= */
.cta-primary {
  background: linear-gradient(90deg, var(--primary) 80%, var(--accent) 100%);
  color: #F2F6ED;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 3px 18px 0 rgba(116,245,153,0.14);
  margin-top: 18px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.21s, color 0.23s, box-shadow 0.22s, transform 0.18s;
  outline: none;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, var(--accent) 16%, var(--primary) 100%);
  color: #232C33;
  box-shadow: 0 5px 22px 0 rgba(120, 245, 154, 0.20);
  transform: scale(1.06);
}
button, .button {
  background: var(--primary);
  color: #F2F6ED;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.18s;
}
button:hover, .button:hover {
  background: var(--accent);
  color: #232C33;
}

/* Other Button Colors */
.button-accent {
  background: var(--accent);
  color: #232C33;
}
.button-danger {
  background: var(--danger);
  color: #fff;
}
.button-light {
  background: #ffffff;
  color: #23623B;
}

/* =============================================================
   FAQ & ACCORDION
   ============================================================= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
}
.faq-item {
  background: #232C33;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border-color 0.18s;
  border: 1.5px solid var(--primary);
}
.faq-item h3 {
  color: var(--accent);
  font-family: 'Montserrat';
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 600;
}
.faq-item p {
  color: #F2F6ED;
  font-family: 'Lato'; font-size: 1rem;
}

/* =============================================================
   COOKIE BANNER & SETTINGS
   ============================================================= */
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #191F26;
  color: #F2F6ED;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -3px 14px 0 rgba(10,255,146,0.09);
  padding: 21px 12vw 21px 8vw;
  z-index: 20000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: cookieBannerIn 0.36s cubic-bezier(.5,0,.27,1);
}
@keyframes cookieBannerIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
#cookie-banner button {
  margin: 0 8px 0 0;
  font-family: 'Montserrat';
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 7px;
  box-shadow: 0 3px 12px 0 rgba(89,249,145,0.11);
  border: none;
  background: var(--primary);
  color: #F2F6ED;
  transition: background 0.16s, color 0.16s, transform 0.17s;
  cursor: pointer;
}
#cookie-banner .button-accent {
  background: var(--accent);
  color: #191F26;
}
#cookie-banner .button-light {
  background: #fff;
  color: var(--primary);
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: var(--accent);
  color: #232C33;
  transform: scale(1.06);
}

#cookie-modal {
  position: fixed;
  z-index: 30000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(20, 23, 29, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: cookieModalOpen 0.28s cubic-bezier(.53,0,.44,1);
}
@keyframes cookieModalOpen { from { opacity: 0; } to { opacity: 1; } }
#cookie-modal .modal-content {
  background: #F2F6ED;
  color: #191F26;
  border-radius: var(--radius-main);
  max-width: 390px;
  width: 93vw;
  padding: 36px 26px 28px 26px;
  box-shadow: 0 2px 28px 0 rgba(42,255,150,0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  font-size: 1rem;
}
#cookie-modal .modal-header {
  font-family: 'Montserrat';
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.17s, color 0.17s;
}
#cookie-modal .modal-close:hover { background: var(--accent); color: #191F26; }
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
#cookie-modal .cookie-toggle {
  width: 36px; height: 20px;
  border-radius: 12px;
  background: #d9ecd4;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
  flex-shrink: 0;
}
#cookie-modal .cookie-toggle[data-enabled="true"] {
  background: var(--accent);
}
#cookie-modal .cookie-switch {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s;
}
#cookie-modal .cookie-toggle[data-enabled="true"] .cookie-switch {
  left: 18px;
  background: var(--primary);
}
#cookie-modal .cookie-category .label {
  color: #23623B;
  font-size: 1.05rem;
  font-weight: 700;
}
#cookie-modal .category-desc {
  color: #232C33;
  font-size: 0.98rem;
  margin-left: 8px;
}
#cookie-modal .essential {
  color: #888;
  font-size: 0.96rem;
  font-style: italic;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
#cookie-modal button {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 7px;
  cursor: pointer;
  font-family: 'Montserrat';
  font-weight: 700;
  border: none;
  box-shadow: 0 1px 12px 0 rgba(80,252,144,0.10);
  background: var(--primary);
  color: #F2F6ED;
  transition: background 0.18s, color 0.17s;
}
#cookie-modal button.button-accent {
  background: var(--accent);
  color: #191F26;
}
#cookie-modal button.button-light {
  background: #fff;
  color: var(--primary);
}
#cookie-modal button:hover, #cookie-modal button:focus {
  background: var(--accent);
  color: #232C33;
}

/* HIDE BANNERS init */
#cookie-modal, #cookie-banner { display: none; }

/* =============================================================
   UTILITY, EFFECTS, GENERAL
   ============================================================= */
::-webkit-scrollbar { width: 11px; background: #1b2422; }
::-webkit-scrollbar-thumb { background: #23623B; border-radius: 9px; }

hr {
  border: none;
  border-top: 1px solid #7DB36A;
  margin: 30px 0;
}

.section:last-child { margin-bottom: 0; }

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* =============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================= */
@media (max-width: 1200px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .hero { min-height: 220px; padding-top: 38px; padding-bottom: 36px; }
  .features-grid, .services-list .content-wrapper, .content-grid { flex-direction: column; gap: 20px; }
  .feature-card, .service-card { min-width: 0; }
}
@media (max-width: 768px) {
  .section, section { padding: 30px 5vw; }
  .footer-contact { font-size: 0.95rem; }
  .footer-nav { gap: 14px; font-size: 0.95rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.285rem; }
  .faq-list { gap: 16px; }
}
@media (max-width:600px) {
  body { font-size: 15px; }
  .footer-logo img { width: 46px; }
}

/* Tighten gaps and stack in tiny screens */
@media (max-width:480px) {
  .section, section { padding: 17px 2vw; }
  .hero { padding-top: 24px; padding-bottom: 18px; }
  .testimonial-card { padding: 14px; font-size: 0.97rem; }
  .service-card, .feature-card { padding: 18px 9px 19px 9px; }
  .mobile-menu { padding: 18px 6px 8px 12px; }
}

/* =============================================================
   SPECIALS: THANK-YOU & LEGAL/STATIC
   ============================================================= */
.thank-you .content-wrapper, .legal-section .content-wrapper {
  background: #232C33;
  border-radius: var(--radius-main);
  padding: 32px 22px;
  color: #F2F6ED;
  box-shadow: 0 2px 22px 0 rgba(59,255,132,0.09);
}
.legal-section h1, .legal-section h2 { color: var(--accent); }
.legal-section ul, .legal-section p { color: #F2F6ED; }
.legal-section ul { padding-left: 22px; }
.legal-section li {
  list-style: disc;
  margin-left: 10px;
  margin-bottom: 8px;
  color: #A3FFAD;
}

/* =============================================================
   ANIMATIONS & TRANSITIONS
   ============================================================= */
.hero, .feature-card, .service-card, .faq-item, .cta-primary, .testimonial-card,
.project-summary, .card, .button, .mobile-nav a, .desktop-nav a {
  transition: 
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

/* Microinteraction: Tiny accent neon border on hover for 'futuristic' feel */
.feature-card:hover, .service-card:hover, .faq-item:hover, .project-summary:hover, .testimonial-card:hover {
  border-color: #8DFF92!important;
  box-shadow: 0 4px 38px 0 rgba(134,255,134,0.08), var(--shadow-card);
}

/* Neon Focus for buttons/CTA */
.cta-primary:focus, .button:focus {
  outline: 2.5px solid #44FF97;
  outline-offset: 3px;
}

/* Subtle neon glow effect for hero headline */
.hero h1 {
  text-shadow: 0 2px 14px #7DB36A77, 0 1px 0 #101a1344;
}

/* Accent underline for active nav items (optional JavaScript class) */
.desktop-nav a.active, .mobile-nav a.active {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
}

/* ==================================================================
   END
   ================================================================== */
