/* ----------------- 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, 
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #151e29;
  color: #F7F7F7;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #A5B883;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F7F7F7;
}
ul, ol {
  padding-left: 1.1em;
  margin-bottom: 0.7em;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
/* -------------- VARIABLES/FALLBACKS -------------------------- */
:root {
  --brand-primary: #2C3E50;
  --brand-secondary: #A5B883;
  --brand-accent: #F7F7F7;
  --dark-bg: #151e29;
  --neon-green: #6cff95;
  --neon-blue: #7bdfff;
  --neon-purple: #a584ff;
  --card-bg: #232c39;
  --card-border: #3e526b;
  --shadow: 0 6px 24px 0 rgba(12,28,44,0.19);
  --radius: 16px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* -------------- TYPOGRAPHY ------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #F7F7F7;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.19;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  font-size: 1.08rem;
  color: #e6eaf4;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
  color: var(--neon-green);
}
.text-section h2, .text-section h3 {
  color: var(--neon-blue);
}

/* -------------- CONTAINER, SECTIONS & FLEX LAYOUTS -------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: #181f2c;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.features-grid, .services-list, .post-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 10px;
}
.features-grid li, .service-card, .post-teaser {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: 0 1px 14px 0 rgba(46,66,99,.10);
  padding: 26px 22px;
  flex: 1 1 250px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.21s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features-grid li:hover, .service-card:hover, .post-teaser:hover {
  box-shadow: 0 6px 40px 0 var(--neon-blue);
  transform: translateY(-3px) scale(1.02);
}
.services-list {
  gap: 28px;
}
.project-summary {
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  margin-bottom: 20px;
  margin-right: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1.5px solid var(--card-border);
  box-shadow: var(--shadow);
  padding: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------- HEADER & NAVIGATION ----------------------- */
header {
  background: linear-gradient(90deg, #232c39 0%, #232c39 60%, #22263a 100%);
  border-bottom: 2px solid var(--neon-blue);
  box-shadow: 0 2px 14px 0 rgba(18,31,49,0.13);
  padding: 0 0;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 0;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  padding-left: 12px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  padding: 6px 10px 6px 10px;
  color: #F7F7F7;
  border-radius: 8px;
  position: relative;
  transition: background 0.22s, color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.btn-primary {
  background: linear-gradient(90deg, var(--neon-blue) 35%, var(--brand-secondary) 88%);
  color: var(--brand-primary);
  border: none;
  padding: 12px 32px;
  border-radius: 25px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 16px 0 var(--brand-secondary);
  cursor: pointer;
  transition: background 0.23s, color 0.15s, box-shadow 0.25s, transform 0.21s;
  margin-left: 24px;
  white-space: nowrap;
  outline: none;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--brand-secondary) 35%, var(--neon-green) 90%);
  color: #181f2c;
  box-shadow: 0 4px 30px 0 var(--neon-green);
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.21s, color 0.17s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* -------------- MOBILE MENU ----------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25,35,55,0.98);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s cubic-bezier(0.6,0,0.6,1), opacity 0.37s cubic-bezier(0.6,0,0.6,1);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 2.8rem;
  align-self: flex-end;
  margin: 20px 30px 6px 0;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  margin-top: 18px;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--neon-blue);
  padding: 12px 0;
  width: 100%;
  border-radius: 5px;
  transition: background 0.17s, color 0.14s;
  font-weight: 600;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(167,240,235,0.09);
  color: var(--neon-green);
}

/* -------------- FOOTER ---------------------- */
footer {
  background: #1d2735;
  border-top: 2px solid var(--brand-secondary);
  padding: 36px 0 22px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--neon-blue);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-accent);
}
footer div > span {
  color: #d0e1e2;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 0.99rem;
  margin-bottom: 6px;
  line-height: 1.5;
}
footer img {
  width: 42px;
  margin-bottom: 10px;
}

/* ########## TESTIMONIALS ##################### */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--brand-accent);
  color: #232c39;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 20px 0 rgba(107,255,149,0.07);
  border-left: 6px solid var(--brand-secondary);
  flex-direction: column;
  min-width: 200px;
  max-width: 600px;
  transition: box-shadow 0.2s, border-left 0.25s;
}
.testimonial-card p {
  color: #22282f;
  font-weight: 500;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--brand-secondary);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px 0 var(--neon-green);
  border-left: 6px solid var(--neon-green);
}

/* ######### BLOG TEASERS & CATEGORIES ######### */
.post-teaser {
  min-width: 220px;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
}
.post-teaser a {
  display: inline-block;
  margin-top: 8px;
  color: var(--neon-green);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.15s;
}
.post-teaser a:hover {
  color: var(--neon-blue);
}
.blog-categories {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}
.blog-categories span {
  background: #232c39;
  color: var(--neon-blue);
  padding: 5px 18px;
  border-radius: 15px;
  font-size: 1rem;
  font-family: var(--font-display);
  transition: background 0.18s, color 0.12s;
}
.blog-categories span:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* ######### FAQ (PROCESS) ######### */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: var(--card-bg);
  border-left: 5px solid var(--neon-blue);
  border-radius: var(--radius);
  box-shadow: 0 2px 20px 0 rgba(107,255,149,0.04);
  padding: 18px 22px;
  transition: border-color 0.22s, box-shadow 0.2s;
}
.faq-item:hover {
  border-color: var(--neon-green);
  box-shadow: 0 4px 24px 0 var(--neon-green);
}

/* ######### CONTACT INFO ######### */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--brand-accent);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0;
}
.contact-info strong {
  color: var(--neon-blue);
  margin-right: 4px;
}
.cta-area {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ######### COOKIE CONSENT BANNER ######### */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1050;
  background: rgba(35,50,73,0.97);
  border-top: 2.5px solid var(--neon-blue);
  padding: 22px 20px 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 0 20px 0 rgba(116,219,241,0.10);
  visibility: visible;
  opacity: 1;
  transition: opacity 0.24s, visibility 0.3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-consent-banner .cookie-text {
  color: var(--brand-accent);
  font-size: 1.01rem;
  flex: 1 1 auto;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: var(--neon-blue);
  color: #21283a;
  border: none;
  border-radius: 25px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 2.5px 15px 0 rgba(66,248,188,.09);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.22s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--neon-green);
  color: #181f2c;
  box-shadow: 0 4px 20px 0 #6cff95aa;
}
.cookie-btn.secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.secondary:hover {
  background: var(--neon-purple);
  color: #181f2c;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1070;
  background: rgba(28,41,61,0.96);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #222b3c;
  border-radius: 22px;
  padding: 38px 30px 32px 30px;
  box-shadow: 0 12px 40px 0 #82edc394;
  min-width: 300px;
  max-width: 95vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  border: 2px solid var(--brand-secondary);
}
.cookie-modal h2 {
  color: var(--neon-blue);
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04rem;
  margin-top: 2px;
  margin-bottom: 8px;
  font-weight: 500;
}
.cookie-modal label[disabled], .cookie-modal label input[disabled] + span {
  color: #abbaad;
}
.cookie-modal .close {
  position: absolute;
  top: 18px; right: 20px;
  background: none;
  border: none;
  color: var(--brand-secondary);
  font-size: 2.3rem;
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal .close:hover {
  color: var(--neon-blue);
}
.cookie-toggle {
  width: 41px;
  height: 22px;
  background: #232c39;
  border: 1.5px solid var(--brand-secondary);
  border-radius: 11px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 2.5px;
  top: 2px;
  bottom: 2px;
  width: 18px;
  border-radius: 50%;
  background: var(--neon-blue);
  transition: left 0.2s, background 0.22s;
}
.cookie-toggle input:checked + span {
  left: 20px;
  background: var(--neon-green);
}

/* --------------- MISC / SHADOWS / DECORATIONS -------------- */
hr {
  border: 0;
  border-bottom: 1.5px solid var(--brand-secondary);
  margin: 30px 0;
}
.text-section {
  margin-bottom: 18px;
  color: #cdeaff;
  font-size: 1.09rem;
}
.text-section ul {
  color: #c5deb3;
  margin-bottom: 0.5em;
}

/* CTA/LINKS */
.content-wrapper > a, .content-wrapper .btn-primary, .cta-area > a {
  margin-top: 16px;
}
.content-wrapper > a {
  display: inline-block;
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.03rem;
  border: 2px solid var(--brand-secondary);
  border-radius: 20px;
  padding: 8px 22px;
  transition: background 0.16s, color 0.13s;
}
.content-wrapper > a:hover, .content-wrapper > a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

/* List marker custom (futuristic look) */
ul li::marker {
  color: var(--neon-blue);
  font-weight: bold;
}
ol li::marker {
  color: var(--brand-secondary);
  font-weight: bold;
}

/* ---------------------- RESPONSIVE ---------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .features-grid, .services-list, .post-teasers {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .footer .container {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding-right: 0;
    padding-left: 8px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .section, section {
    padding: 26px 3vw;
    margin-bottom: 42px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .features-grid, .services-list, .post-teasers {
    flex-direction: column;
    gap: 12px;
  }
  .card-container, .card-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    padding: 18px 10px;
    max-width: 95vw;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section, section {
    padding: 18px 2vw;
    margin-bottom: 28px;
    border-radius: 10px;
  }
  .card, .features-grid li, .service-card, .post-teaser, .project-summary {
    padding: 12px 7px;
    border-radius: 10px;
  }
  .testimonial-card {
    padding: 12px 7px;
    border-radius: 10px;
  }
  .cookie-consent-banner .cookie-text {
    font-size: 0.97rem;
  }
  .cookie-consent-banner {
    padding: 14px 9px 14px 9px;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-modal {
    padding: 18px 7px 18px 10px;
    border-radius: 10px;
  }
}

/* ------------------ Futuristic Neon Accent Effects ------------------ */
.features-grid li, .service-card, .card {
  border: 1.8px solid #243244;
  box-shadow: 0 2px 20px 0 #3BFFA2cc;
  transition: box-shadow 0.22s, border 0.24s, transform 0.24s;
}
.features-grid li:hover, .service-card:hover, .card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 4px 40px 0 var(--neon-blue);
  transform: scale(1.025);
}
.features-grid li h3, .service-card h3 {
  color: var(--neon-green);
}
.features-grid li img, .service-card img {
  width: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 6px var(--neon-blue));
}

/* Neon text effect for headings (futuristic) */
h1, h2 {
  position: relative;
  text-shadow: 0 2px 12px var(--neon-blue), 0 1.5px 6px #6cff9575;
}
h1 {
  color: var(--neon-blue);
}
h2 {
  color: var(--neon-green);
}

/* Secondary text neon for subtitles */
h3, .card h3 {
  color: var(--brand-secondary);
  text-shadow: 0 1px 6px #a5b88378;
}

/* ---------- Animations for interactive elements ------------- */
.btn-primary, .cookie-btn {
  transition: box-shadow 0.2s, background 0.24s, color 0.15s, transform 0.17s;
}
.btn-primary:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* -------------------------------------------------------------------------- */
/* No display:grid or column properties used as per requirements. Only flex.  */
/* -------------------------------------------------------------------------- */