/* =============================================================
   FELCE ARDENTE 'TECH_FUTURISTIC' STYLE.CSS
   (C)2024 – Modern Futurist Wellness / Flexbox Only
   ============================================================= */

/* === 0. CSS RESET & BASE === */
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,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 { line-height:1; }
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
 display: block;
}
ul,ol { list-style:none; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; border:0; }
button { border:none; outline:none; cursor:pointer; background:none; font-family:inherit; }

/* === 1. BRAND COLORS & VARIABLES === */
:root {
  --fa-primary: #26673C;
  --fa-secondary: #1A1A1A;
  --fa-accent: #E8EFE3;
  --fa-neon: #15ffaf; /* Futuristic neon green */
  --fa-bg-darker: #181b22;
  --fa-text-light: #f7fff9;
  --fa-text-dark: #1a1a1a;
  --fa-card-bg: #212531;
  --fa-shadow: 0 4px 32px 0 rgba(30,48,30,0.15), 0 0 0.5px #15ffaf;
  --fa-radius: 18px;
  --fa-radius-sm: 10px;
  --fa-spacing: 20px; 
  --fa-spacing-lg: 32px;
}

/* === 2. TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #212531 0%, #2a3e2d 100%);
  color: var(--fa-text-light);
  min-height: 100vh;
  font-size: 16px;
  font-weight:400;
  line-height:1.7;
  letter-spacing: 0.05em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--fa-neon);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
h1 {font-size: 2.25rem;}
h2 {font-size: 1.6rem;}
h3 {font-size: 1.15rem;}
h4,h5,h6{font-size:1rem;}
p, ul, ol, li {
  font-size: 1rem;
  margin-bottom: 8px;
}
strong, b {
  color: var(--fa-accent);
  font-weight: 700;
}
.text-section ul, .text-section ol {
  margin-left: 22px;
  margin-bottom: 12px;
}
.text-section ul li::marker, .text-section ol li::marker { color: var(--fa-neon); }

/* === 3. LAYOUT / CONTAINER === */
.container {
  width:100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display:flex;
  flex-direction:column;
  gap: var(--fa-spacing);
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === 4. HEADER & NAVIGATION === */
header {
  background-color: var(--fa-bg-darker);
  padding: 0 0 12px 0;
  box-shadow: 0 4px 40px 0 rgba(38,103,60,0.07);
  position: relative;
  z-index: 110;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top:18px;
  padding-bottom:16px;
}
header img[alt="Felce Ardente"] {
  width: 154px;
  height:auto;
  filter: drop-shadow(0 1px 10px var(--fa-neon));
}
.main-nav,
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a, .footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size:1rem;
  color: var(--fa-text-light);
  padding: 7px 15px;
  border-radius: var(--fa-radius-sm);
  position: relative;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.main-nav a:hover, .footer-menu a:hover, .mobile-nav a:hover, .main-nav a.active {
  color: var(--fa-neon);
  background: rgba(22,240,175,0.13);
  box-shadow: 0 1px 8px 0 #1fffbe3a;
}

.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight:700;
  color:var(--fa-secondary);
  background: linear-gradient(to right, var(--fa-neon) 40%, #9fffd7 100%);
  box-shadow: 0 0 12px 2px #15ffaf30, 0 1.5px 10px 0 #26673C50;
  padding:12px 36px;
  border-radius: var(--fa-radius);
  font-size: 1.14em;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  border:none;
  cursor:pointer;
  transition: background 0.21s, box-shadow 0.21s, transform 0.21s;
  outline:none;
  margin: 10px 0 0 0;
  z-index:10;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #25d859 40%, #15ffaf 100%);
  color: var(--fa-text-light);
  box-shadow: 0 2px 22px 2px #15ffaf42;
  transform: translateY(-2.5px) scale(1.04);
}

/* === 5. HERO SECTIONS === */
.hero {
  background: linear-gradient(120deg, #26673C 8%, #213426 90%);
  color: var(--fa-text-light);
  padding-top: 70px;
  padding-bottom:80px;
}
.hero .container {
  align-items: stretch;
}
.hero h1 {
  color: var(--fa-neon);
  font-size: 2.6rem;
  margin-bottom: 10px;
  text-shadow: 0 0 7px #09ffb33a;
}
.hero h2 {
  color: var(--fa-accent);
  font-size:1.5rem;
  margin-bottom:18px;
  font-weight:600;
}
.hero p {
  color: #d1e8cb;
  font-weight:400;
}

/* === 6. FEATURES, CARDS, SECTIONS  === */
.features {
  background: #23282F;
}
.features h2 {
  color: var(--fa-neon);
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  align-items: stretch;
}
.feature {
  background: var(--fa-card-bg);
  border-radius: var(--fa-radius);
  box-shadow: var(--fa-shadow);
  padding: 28px 22px 26px 22px;
  flex:1 1 230px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #15ffaf20;
  transition: box-shadow 0.25s, transform 0.19s, border 0.2s;
}
.feature:hover, .feature:focus {
  box-shadow: 0 1px 32px 9px #15ffaf40;
  border: 1.5px solid #15ffaf44;
  transform: translateY(-4px) scale(1.03);
  z-index:3;
}
.feature img {
  width:42px; height:42px; margin-bottom:16px; filter: drop-shadow(0 0 16px #09ffb37a);
  transition:filter 0.2s;
}
.feature:hover img {
  filter: drop-shadow(0 0 30px #15ffafcc);
}
.feature h3 {
  font-size: 1.24em;
  color: var(--fa-accent);
}

.card-container { display:flex; flex-wrap:wrap; gap:24px; }
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--fa-radius);
  background: var(--fa-card-bg);
  box-shadow: var(--fa-shadow);
  padding:32px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  width:100%;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom:32px;
}
.service-list li {
  background: #233527;
  box-shadow: 0 1.5px 42px 0 #15ffafb8;
  border-radius: var(--fa-radius);
  padding: 32px 26px 28px 26px;
  margin-bottom: 16px;
  border-left: 4px solid var(--fa-neon);
  position:relative;
  transition:box-shadow 0.23s, transform 0.15s;
}
.service-list li:hover {
  box-shadow: 0 4px 38px 0 #15ffaf68, 0 0 0.5px #19c188;
  transform: translateY(-3px) scale(1.015);
}
.service-list a {
  color: var(--fa-neon);
  transition:color 0.17s;
}
.service-list a:hover {
  color: #95ffd7;
}


/* === 7. TESTIMONIALS === */
.testimonials {
  background: var(--fa-accent);
  color: var(--fa-text-dark);
  padding-top:56px; padding-bottom:56px;
}
.testimonials h2 {
  color: var(--fa-primary);
  margin-bottom:16px;
}
.testimonial-card {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  padding: 20px;
  background: #fff;
  color: var(--fa-text-dark);
  border-radius: var(--fa-radius);
  box-shadow: 0 2px 26px 0 #26673c24, 0 0 1.5px #15ffafb3;
  margin-bottom:20px;
  min-width:220px;
  max-width:620px;
  width:100%;
  transition:box-shadow 0.17s, transform 0.14s;
  position:relative;
}
.testimonial-card:nth-child(2n) { box-shadow: 0 1px 20px 0 #15ffaf88; }
.testimonial-card:hover {
  box-shadow: 0 1px 26px 0 #15ffafa5;
  transform:translateY(-2.5px) scale(1.012);
}
.testimonial-card .text-section {
  font-size:1.12em;
  color: var(--fa-secondary);
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-card strong {
  color: var(--fa-primary);
  font-weight:700;
}
.testimonial-card span {
  color: #f0cf33;
  font-size:1.1em;
  margin-left:10px;
  font-family: 'Montserrat',sans-serif;
  letter-spacing:2px;
}

/* === 8. CTA SECTIONS === */
.cta {
  background: linear-gradient(100deg, #25d859 5%, var(--fa-primary) 90%);
  color: var(--fa-text-light);
  padding:40px 0 50px 0;
}
.cta h2 { color: var(--fa-neon); margin-bottom:10px; }
.cta .text-section { color: var(--fa-accent); margin-bottom:18px; }
.cta .cta-button { margin-top:18px; }

/* === 9. ABOUT/TEAM === */
.about {
  background: #1a2420;
}
.team {
  background:#23282F;
}

.team ul {
  padding-left:22px;
  margin-bottom:0;
}
.team ul li {
  margin-bottom:13px;
}
.team b {
  color: var(--fa-neon);
}

/* === 10. LEGAL SECTION === */
.legal {
  background: var(--fa-accent);
  color: var(--fa-text-dark);
  padding-top: 36px; padding-bottom: 50px;
}
.legal h1, .legal h2 {
  color: var(--fa-primary);
}

.legal a { color: var(--fa-primary); text-decoration: underline; }
.legal ul, .legal ol { margin: 13px 0 16px 22px; }


/* === 11. CONTACT SECTION === */
.contact {
  background:#23282F;
  color:var(--fa-text-light);
  padding-top:30px; padding-bottom:36px;
}
.contact h1 { color:var(--fa-neon); }
.contact .text-section ul {
  margin-bottom:12px;
}
.contact .text-section li {
  margin-bottom:8px;
  display:flex;
  align-items: center;
  gap:9px;
  color:var(--fa-accent);
  font-size: 1em;
}
.contact .text-section img {
  width:22px; height:22px;
}
.contact .cta-button {
  margin-top:12px;
}

.confirmation {
  background: #213426;
  color:var(--fa-text-light);
}
.confirmation h1 { color: var(--fa-neon); }

/* === 12. FAQ === */
.faq {
  background: var(--fa-card-bg);
  color: var(--fa-accent);
  padding-top:32px; padding-bottom:32px;
}
.faq h2 { color: var(--fa-neon); }
.faq .text-section ul li {
  margin-bottom:11px;
  color: var(--fa-accent);
}
.faq b { color: var(--fa-neon); }

/* === 13. FOOTER === */
footer {
  background: #161a19;
  color: var(--fa-accent);
  padding: 44px 0 22px 0;
  margin-top:40px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer img[alt="Felce Ardente"]{
  width: 62px; height:62px; margin-bottom:10px;
  filter:drop-shadow(0 1.5px 8px #15ffaf90);
}
.footer-menu {
  gap: 18px;
}
.footer-menu a {
  font-size: 0.98em;
  color: var(--fa-accent);
  padding: 5px 10px;
  border-radius: 7px;
}
.footer-menu a:hover { background: #262d2b; color: #25d859; }
.contact-info {
  font-size: 1em;
  line-height:1.6;
}
.contact-info a {
  color: #25d859;
  text-decoration:underline;
}
.contact-info a:hover {
  color: var(--fa-neon);
  text-decoration: underline wavy 2px;
}

/* === 14. FLEXBOX UTILITIES === */
.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; }

/* === 15. SPACING REGULARITY === */
section, .section, .legal, .faq, .about, .team, .contact {
  margin-bottom:60px;
  padding:40px 20px;
}
.card:not(:last-child), .service-list li:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* === 16. MOBILE NAVIGATION MENU === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right:22px; top:25px;
  z-index:200;
  font-size:2.1em;
  background:none;
  color: var(--fa-neon);
  border-radius: 100px;
  padding: 8px 12px;
  box-shadow: 0 1px 8px #1fffbe27;
  transition:background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(21,255,175,0.18);
  color:var(--fa-text-dark);
}

.mobile-menu {
  position: fixed;
  top: 0; left:0;
  width: 100%; height: 100vh;
  background: linear-gradient(130deg,#161f18 59%, #21c352 100%);
  box-shadow: 0 6px 60px #15ffaf79;
  z-index: 5000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.47,1.64,.41,.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size:2.3em;
  color: var(--fa-neon);
  background: none;
  position: absolute;
  top: 18px; right: 20px; z-index:5104;
  border-radius: 55px;
  padding: 7px 13px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(21,255,175,0.16);
  color: var(--fa-text-light);
}
.mobile-nav {
  display:flex;
  flex-direction: column;
  gap: 24px;
  margin-top:76px;
  width:100%;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: var(--fa-neon);
  font-size:1.18rem;
  padding:11px 0 11px 0;
  font-family:'Montserrat',sans-serif;
  position:relative;
  z-index:1;
}
.mobile-nav a:active, .mobile-nav a:focus {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container { max-width: 90vw; }
  footer .container { flex-direction:column; gap:30px; align-items:flex-start; }
}
@media (max-width: 800px) {
  .footer-menu { flex-wrap:wrap; }
}
@media (max-width: 768px) {
  header .main-nav, header .cta-button { display:none; }
  .mobile-menu-toggle { display:block; }
  .container { padding-left:16px; padding-right: 16px; }
  .section, section, .legal, .faq, .about, .team, .contact { padding:32px 8px; }
  .hero { padding-top: 40px; padding-bottom: 48px; }
  .hero .container { padding-left:0; padding-right: 0; }
  .features-grid, .service-list { gap: 16px; }
  .feature, .service-list li, .testimonial-card, .card { padding:20px 12px; min-width:unset; }
  .feature { min-width:145px; }
  .footer-menu { flex-wrap: wrap; gap:10px; }
  .content-grid { flex-direction: column; gap: 20px; }
  .content-wrapper { gap: 18px; }
  .team ul, .testimonials, .faq, .card-container, .legal, .about, .services { overflow-x:auto; }
  .testimonial-card { min-width:180px; }
  .mobile-menu { padding-bottom:25vw; }
  .team ul { margin-left:8px; }
  .card-container, .features-grid { gap:16px; }
  .service-list { gap:15px; }
  .faq .text-section ul li { font-size:1em; }
  
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  h1 { font-size:1.44rem; }
  h2 { font-size:1.18rem; }
  .hero h1 { font-size:1.72rem; }
  .cta-button, .main-nav a, .footer-menu a { font-size:0.93em; }
  .feature h3, .service-list li h3 { font-size:1.07rem; }
  .card { padding:14px 6px; }
  .testimonial-card { font-size:0.97em; }
}

/* === 17. COOKIE CONSENT BANNER ===  */
.cookie-banner {
  position: fixed;
  left:0; bottom:0;
  width:100%;
  z-index: 9999;
  background: linear-gradient(90deg, #181B22 70%, #15ffaf18 100%);
  border-top: 2.5px solid #15ffafcc;
  box-shadow: 0 -2px 25px #15ffaf44;
  color: #f7fff9;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  padding: 21px 12vw 21px 6vw;
  font-size: 1rem;
  transition: transform 0.29s cubic-bezier(.53,1.51,.44,.89);
}
.cookie-banner.hide {
  transform: translateY(120%); pointer-events:none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-left:auto;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: var(--fa-radius-sm);
  padding: 8px 18px;
  font-size: 1em;
  font-weight:600;
  margin:0;
  background: #23282F;
  color: var(--fa-neon);
  box-shadow: 0 1.5px 8px #15ffaf23;
  border: 1.5px solid #15ffaf66;
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.14s;
}
.cookie-banner button:hover {
  background: var(--fa-neon);
  color: var(--fa-text-dark);
  border: 1.5px solid #18e371;
  transform:translateY(-2.5px) scale(1.03);
}
.cookie-banner .cookie-settings-btn {
  background: #1a2322;
  color: #9fffd8;
  border: 1.5px solid #2ba375;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #25d859;
  color: var(--fa-secondary);
  border: 1.5px solid #15ffaf;
}

@media(max-width:800px){
  .cookie-banner { flex-direction:column; align-items: flex-start; gap:13px; padding:16px 4vw; font-size:0.98em; }
  .cookie-banner .cookie-buttons { margin-left:0; }
}

/* === 18. COOKIE PREFERENCE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0;width:100vw;height:100vh;
  z-index: 10100;
  background:rgba(10,20,20,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hide {opacity:0; pointer-events:none;}
.cookie-modal {
  background: #23272e;
  color: var(--fa-accent);
  border-radius: var(--fa-radius);
  box-shadow: 0 3px 38px #15ffaf97;
  padding: 48px 36px 32px 36px;
  max-width: 420px;
  width:90%;
  position:relative;
  display: flex;
  flex-direction: column;
  gap:20px;
  animation: modalIn 0.37s cubic-bezier(.44,2.09,.22,1) backwards;
}
@keyframes modalIn {
  from { transform: scale(0.86) translateY(60px); opacity:0; }
  to { transform:none; opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  top:18px; right:22px;
  font-size:1.62em;
  color: var(--fa-neon);
  background: none;
  border-radius: 99px;
  transition: background 0.15s,color 0.15s;
  padding:6px 12px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus{
  background: var(--fa-neon);
  color: var(--fa-secondary);
}
.cookie-modal h2{ color:var(--fa-neon); font-size:1.21em; margin-bottom:9px; }
.cookie-modal .cookie-category {
  display:flex;
  flex-direction: row;
  align-items:center;
  gap:10px;
  margin:0 0 12px 0;
  padding:7px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1em;
  margin: 0 0 0 11px;
}
.cookie-modal .cookie-switch {
  display: inline-flex;
  align-items: center;
  width:44px; height:24px;
  background: #222;
  border-radius:14px;
  position:relative;
  margin-left:6px;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity:0; position:absolute; left:0; top:0; width:100%; height:100%; cursor:pointer;
}
.cookie-modal .cookie-switch-indicator {
  width:20px; height:20px;
  border-radius:50%;
  background: #25d859;
  position:absolute; left:2px; top:2px;
  transition:left 0.18s cubic-bezier(.71,1.59,.18,.98), background 0.18s;
  box-shadow:0 0 8px #1fffbe;
}
.cookie-modal .cookie-switch input:not(:checked) + .cookie-switch-indicator {
  left:2px; background: #222;
}
.cookie-modal .cookie-switch input:checked + .cookie-switch-indicator {
  left:22px; background: #15ffaf;
}
.cookie-modal .cookie-category.essential label:after {
  content: ' (Essenziale)'; color:#25d859; font-size:0.97em; font-weight:500; }
.cookie-modal .cookie-category.essential .cookie-switch { opacity:0.4; pointer-events: none; }
.cookie-modal .cookie-actions {
  display:flex;
  flex-direction: row;
  gap: 16px;
  margin-top:10px;
}
.cookie-modal .cookie-actions button {
  font-family:'Montserrat',sans-serif;
  border-radius: var(--fa-radius-sm);
  padding:8px 20px;
  font-size:1.03em;
  font-weight:600;
  background: #25d859;
  border:1.5px solid #15ffaf7a;
  color: var(--fa-secondary);
  box-shadow: 0 1.5px 9px #15ffaf21;
}
.cookie-modal .cookie-actions button.reject {
  background: #ff3750;
  color: #fff;
  border:1.5px solid #bb2740;
}
.cookie-modal .cookie-actions button.settings {
  background: #23282F;
  color: #15ffaf;
  border:1.5px solid #1fffbe77;
}
.cookie-modal .cookie-actions button:hover {
  filter: brightness(1.08) saturate(1.37);
  box-shadow: 0 3px 21px #15ffaf50;
}

@media(max-width: 600px){
  .cookie-modal { padding:20px 7vw 24px 7vw;}
}

/* ===== 19. MICRO-ANIMATIONS & TRANSITIONS (Site-wide) ===== */
a, button, .cta-button, .main-nav a, .footer-menu a, .card, .service-list li, .feature, .testimonial-card {
  transition: box-shadow 0.19s, background 0.17s, color 0.15s, transform 0.19s, border 0.17s;
}

/* ===== 20. MISC / ACCESSIBILITY ===== */
:focus:not(.focus-visible) { outline: none; }
:focus-visible {
  outline: 2.5px solid var(--fa-neon);
  outline-offset:2.5px;
}

[aria-current],
.main-nav a.active, .footer-menu a.active, .mobile-nav a.active {
  color: #25d859;
  text-decoration:underline; background:#131b16;
}

/* ===== 21. SCROLLBAR ===== */
::-webkit-scrollbar { width: 9px; background: #262c24; }
::-webkit-scrollbar-thumb { background: #1fffbe61; border-radius:7px; }

/* ===== END OF tech_futuristic FELCE ARDENTE CSS ===== */
