/* RESET & BASELINES */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1F262A;
  color: #FFFFFF;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  vertical-align: middle;
}

ul, ol {
  margin: 0 0 24px 20px;
  padding-inline-start: 18px;
}
li { margin-bottom: 12px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 1px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }

p, a, li, label {
  font-size: 1rem;
  color: #E3E3E1;
  line-height: 1.7;
}

b, strong { color: #FFFFFF; }

a {
  color: #9F6937;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5BC6A;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* BRAND/EFFECTS VARIABLES (as classes for fallback) */
:root {
  --primary: #24513E;
  --secondary: #E3E3E1;
  --accent: #9F6937;
  --futuristic-green: #24FFD8;
  --futuristic-blue: #1875FF;
  --futuristic-bg-dark: #1F262A;
  --futuristic-bg-2: #212d23;
  --futuristic-bg-light: #232C2D;
  --neon-accent: #18DF76;
  --danger: #FF5656;
  --shadow-main: 0 8px 24px rgba(36,81,62,.10);
}

/*--------------
   HEADER
----------------*/
header {
  width: 100%;
  background: #232C2D;
  box-shadow: 0 2px 16px rgba(36,81,62, 0.12);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 12px #9F6937CC);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  color: #E3E3E1;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 6px;
  position: relative;
  transition: color 0.15s, background 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  margin: 5px auto 0 auto;
  background: linear-gradient(90deg,#24FFD8 0%,#1875FF 100%);
  border-radius: 2px;
  transition: width 0.2s;
}
.main-nav a:hover, .main-nav .cta:hover {
  color: #24FFD8;
  background: rgba(36,81,62,0.13);
}
.main-nav a:hover:after {
  width: 60%;
}
.main-nav .cta {
  background: linear-gradient(90deg,#24FFD8 30%,#9F6937 100%);
  color: #222;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 24px 9px 24px;
  letter-spacing: 0.12em;
  margin-left: 12px;
  box-shadow: 0 2px 18px 0 #24513e26;
  transition: background 0.18s, color 0.12s, box-shadow 0.17s;
}
.main-nav .cta:hover {
  background: linear-gradient(90deg,#18DF76,#9F6937);
  color: #111;
  box-shadow: 0 3px 22px 0 #24FFD866;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #E3E3E1;
  cursor: pointer;
  z-index: 110;
  transition: color 0.15s;
  margin-left: 12px;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  color: #24FFD8;
}

/*--------------
   MOBILE MENU
----------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #212D23;
  box-shadow: 0 8px 32px rgba(24,127,55,0.16);
  z-index: 200;
  transition: transform 0.33s cubic-bezier(.41,0,.43,1.38), opacity 0.11s;
  transform: translateX(-100vw);
  opacity: 0;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  margin-top: 18px;
  margin-left: auto;
  cursor: pointer;
  transition: color 0.15s;
  display: block;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #24FFD8;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
  gap: 20px;
}
.mobile-nav a {
  color: #E3E3E1;
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 10px 8px;
  border-radius: 7px;
  width: 100%;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #1875FF22;
  color: #24FFD8;
}

/*----- HERO / CTA BANNERS / SECTION ------*/
.hero {
  background: linear-gradient(90deg, #212D23 0%, #232C2D 50%, #1F262A 90%);
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #24FFD8;
  letter-spacing: 1px;
  text-shadow: 0 0 16px #24513e99;
  margin-bottom: 5px;
  font-family: 'Montserrat',sans-serif;
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 16px;
  color: #E3E3E1;
  text-shadow: 0 1px 3px #24513e20;
}
.hero .cta {
  margin-top: 20px;
}

.cta-banner {
  background: linear-gradient(90deg, #24513E 30%, #1875FF 100%);
  margin-top: 48px;
  margin-bottom: 0;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 7px 28px #1875FF28;
}
.cta-banner .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.cta-banner h2 {
  color: #24FFD8;
}
.cta-banner p {
  color: #E3E3E1;
}

/*------- SECTIONS WITH MANDATORY SPACING--*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.section { /* fallback class for non-section semantic containers */
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/*------ Feature grid/cards ------*/
.feature-grid, .card-container, .card-grid, .service-cards, .team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 210px;
  background: #232C2D;
  border-radius: 16px;
  box-shadow: 0 4px 24px #1875FF24;
  padding: 28px 16px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.15s;
}
.feature:hover {
  box-shadow: 0 9px 36px #24FFD844, 0 1.5px 9px #18DF7640;
  transform: translateY(-3px) scale(1.03);
}
.feature img {
  height: 46px;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px #24FFD899);
}
.feature h3 {
  color: #24FFD8;
  font-size: 1.23rem;
  margin-bottom: 6px;
  text-shadow: 0 0 9px #1875FF80;
}
.feature p {
  color: #E3E3E1;
  font-weight: 400;
  line-height: 1.6;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 230px;
  min-width: 210px;
  padding: 30px 20px;
  border-radius: 15px;
  background: #212D23;
  color: #E3E3E1;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.13s;
  box-shadow: 0 3px 15px #85521f20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.service-card h3 {
  color: #9F6937;
  font-size: 1.22rem;
}
.service-card a {
  margin-top: 15px;
  color: #24FFD8;
  font-weight: 600;
  border-radius: 18px;
  padding: 6px 15px;
  background: linear-gradient(90deg,#1F262A, #9F6937 75%);
  transition: background 0.17s, color 0.18s;
  font-family: 'Montserrat',sans-serif;
}
.service-card a:hover {
  background: linear-gradient(90deg, #24FFD8 0%, #24513E 100%);
  color: #232C2D;
}
.service-card:hover {
  box-shadow: 0 9px 36px #9F6937AA, 0 1.5px 9px #24FFD860;
  transform: translateY(-3px) scale(1.008);
}

.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 15px;
}
.team-members > div {
  background: #232C2D;
  border-radius: 14px;
  padding: 26px 16px;
  box-shadow: 0 3px 18px #24513E22;
  flex: 1 1 220px;
  min-width: 190px;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.partner-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 12px;
}
.partner-logos img {
  height: 34px;
  opacity: 0.88;
  transition: opacity 0.13s,filter 0.15s;
  filter: grayscale(0.35);
}
.partner-logos img:hover {
  opacity: 1;
  filter: drop-shadow(0 0 10px #24FFD8);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FAQ/Feature layout */
.faq-item {
  background: #232C2D;
  border-left: 4px solid #24FFD8;
  border-radius: 10px;
  padding: 20px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 13px #24FFD814;
}
.faq-item h3 {
  color: #24FFD8;
}

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

.diy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.diy-list li {
  flex: 1 1 220px;
  background: #232C2D95;
  border-radius: 12px;
  box-shadow: 0 1.5px 11px #18DF7640;
  padding: 20px 15px 15px 15px;
  list-style: none;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.16s,transform 0.14s;
  position: relative;
}
.diy-list li:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 9px 32px #24FFD850;
}
.diy-list .difficulty {
  background: #24FFD8;
  color: #1F262A;
  font-size: 0.91em;
  font-weight: 700;
  border-radius: 10px;
  padding: 2px 10px;
  margin-left: 10px;
}

/*---------- TESTIMONIAL CARDS -------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E3E3E1;
  border-radius: 13px;
  box-shadow: 0 3px 20px #24513E22;
  margin-bottom: 24px;
  color: #212D23;
  position: relative;
  flex-direction: row;
  min-width: 0;
  min-height: 72px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #212D23;
  font-family: 'Montserrat',sans-serif;
  margin-bottom: 0;
  line-height: 1.5;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #24513E;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 18px;
}
.testimonial-meta img {
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 1px #85521FAA);
}

/*--- BUTTONS & MICROINTERACTIONS ---*/
.cta, .btn, button, input[type="submit"] {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg,#24FFD8 0%,#9F6937 100%);
  color: #1F262A;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.09rem;
  box-shadow: 0 3px 13px #18DF7630;
  cursor: pointer;
  transition: background 0.19s, color 0.16s, box-shadow 0.16s, transform 0.15s;
  letter-spacing: 0.07em;
  outline: none;
}
.cta:focus, .cta:hover, .btn:focus, .btn:hover,
button:focus, button:hover, input[type="submit"]:focus, input[type="submit"]:hover {
  background: linear-gradient(90deg,#18DF76 0%,#24513E 100%);
  color: #fff;
  box-shadow: 0 6px 18px #24FFD866;
  transform: translateY(-2px) scale(1.04);
}

/* FORM & CONTENT UTILS */
input, textarea, select {
  border-radius: 8px;
  border: 1px solid #9F693760;
  background: #232C2D;
  color: #fff;
  padding: 12px 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: 'Roboto',sans-serif;
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #24FFD8;
}
label {
  font-size: 1rem;
  color: #24FFD8;
  font-weight: 500;
}

/* ---------- FOOTER --------------- */
footer {
  background: #212D23;
  padding: 40px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #24FFD8;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.13s;
}
.footer-nav a:hover {
  color: #9F6937;
}
.footer-contact {
  color: #E3E3E1;
  font-size: 1rem;
  max-width: 370px;
  line-height: 1.55;
}
.footer-contact a {
  color: #24FFD8;
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: #9F6937;
}
.footer-copy {
  color: #787878;
  font-size: 0.98rem;
  margin-top: 24px;
  flex-basis: 100%;
  text-align: left;
}
footer img {
  height: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px #24513e45);
}

/* Content Grids & Flex Patterning */
.card-container,
.card-grid                                       { 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; }

/* ---------- COOKIE CONSENT BANNER -------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232C2D;
  color: #E3E3E1;
  z-index: 4000;
  padding: 22px 30px 20px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 0 12px 0 #24FFD833;
  font-size: 1rem;
  flex-wrap: wrap;
  border-top: 3px solid #24FFD8;
  animation: slideupIn 0.45s cubic-bezier(.41,0,.43,1.38);
}
@keyframes slideupIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-consent-banner button,
.cookie-consent-banner .cta {
  font-size: 1rem;
  padding: 9px 20px;
  min-width: 80px;
  border-radius: 7px;
  background: linear-gradient(90deg,#24FFD8 0%,#9F6937 100%);
  color: #1F262A;
  border: none;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.17s, transform 0.13s;
  box-shadow: 0 2px 12px #18DF7635;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner .cta:hover {
  background: linear-gradient(90deg,#18DF76 0%,#24513E 100%);
  color: #fff;
  transform: translateY(-1.5px) scale(1.02);
}
.cookie-consent-banner .cookie-buttons .cookie-settings {
  background: none;
  border: 2px solid #24FFD8;
  color: #24FFD8;
  transition: background 0.16s, color 0.15s;
  padding: 9px 20px;
}
.cookie-consent-banner .cookie-buttons .cookie-settings:hover {
  background: #24FFD8;
  color: #222;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,50,44,0.85);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.32s;
}
@keyframes fadeInBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #212D23;
  color: #E3E3E1;
  border-radius: 14px;
  box-shadow: 0 9px 32px #24FFD850;
  padding: 38px 32px 32px 32px;
  min-width: 320px;
  max-width: 95vw;
  animation: fadeInModal 0.37s cubic-bezier(.41,0,.43,1.38);
  position: relative;
}
@keyframes fadeInModal {
  from { transform: translateY(35px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #24FFD8;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 22px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
}
.cookie-modal .cookie-category label {
  font-size: 1.06rem;
  color: #24FFD8;
  font-family: 'Montserrat',sans-serif;
}
.cookie-modal .cookie-category input[type="checkbox"]:disabled + label {
  opacity: 0.66;
}
.cookie-modal button, .cookie-modal .btn {
  background: linear-gradient(90deg,#24FFD8 0%,#9F6937 100%);
  color: #1F262A;
  padding: 10px 24px;
  border-radius: 8px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  border: none;
  margin-right: 10px;
  margin-top: 8px;
  min-width: 80px;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal button:hover, .cookie-modal .btn:hover {
  background: linear-gradient(90deg,#18DF76 0%,#24513E 100%);
  color: #fff;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 14px; right: 18px;
  color: #24FFD8;
  font-size: 1.77rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .modal-close-btn:hover {
  color: #9F6937;
}

/*------------ RESPONSIVE ----------*/
@media (max-width: 1024px) {
  .container {
    max-width: 940px;
  }
  .footer-contact {
    min-width: 210px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 99vw;
  }
  header .container,
  .footer-nav,
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 21px;
  }
  .footer-contact {
    margin-bottom: 17px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .service-cards, .feature-grid, .card-container, .diy-list,
  .content-grid, .team-members {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .service-card, .team-members > div, .diy-list li {
    min-width: 1px;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonial-card {
    flex-direction: column;
    padding: 14px 12px;
    gap: 11px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 35px;
  }
  .hero .content-wrapper { max-width: 100%; }
  .cta-banner { margin-top: 35px; border-radius: 13px 13px 0 0; }
  .section, section { padding: 24px 8px; }
  .partner-logos { gap: 16px; }
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; padding: 14px 12px 16px 12px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.12rem; }
  .cta, .btn, button, input[type="submit"] { font-size: 0.99rem; padding: 9px 12px; }
  .cookie-modal { padding: 22px 7vw 16px 7vw; min-width: 1px; }
}

/* ------ Utility classes ------ */
.hide { display: none !important; }
.visible { display: block !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { display: flex; flex-direction: column; }
.flex-row { display: flex; flex-direction: row; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }

/* Neon Flicker Animation on logo hover */
header a img:hover {
  filter: drop-shadow(0 0 22px #18DF76CC) drop-shadow(0 0 8px #1875FF); 
  animation: flicker 0.8s linear 1;
}
@keyframes flicker {
  0%,100%{opacity:1;} 63%{opacity:0.4;} 65%{opacity:0.08;} 68%{opacity:0.75;}
}

/* ---- Accessibility/Contrast Overlay for testimonials ---- */
.testimonial-card {
  color: #212D23;
  background: #E3E3E1;
}
.testimonial-card p, .testimonial-card .testimonial-meta {
  color: #212D23;
}

/* ----------- END ------------- */
