/* ===============================
   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;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #181C22;
  color: #E1E6EB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.03em;
  /* Urban feel */
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #59B253;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2F5F8;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button:focus {
  outline: 2px solid #59B253;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 16px;
  padding: 0;
}
li {
  margin-bottom: 10px;
}


/* ============================================
   BRANDING & TYPOGRAPHY
   ============================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #F2F5F8;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, span, li, strong, .footer-contact, .footer-brand span {
  color: #D0D6DC;
}
strong {
  font-weight: 700;
  color: #F2F5F8;
}

.text-section {
  font-size: 1.08rem;
}

/* =============================================
   CONTAINERS, SECTIONS & FLEX LAYOUTS
   ============================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

/* Card Containers (general) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23262B;
  border: 1.5px solid #353B42;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(24,28,34,0.10); /* metallic, urban shadow */
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.22s cubic-bezier(.25,.8,.25,1), box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(24,28,34,0.20);
  transform: translateY(-5px) scale(1.02);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 28px 24px 22px 24px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 28px;
  background: #F2F5F8;
  color: #263243;
  border-radius: 15px;
  border-left: 6px solid #59B253;
  box-shadow: 0 2px 12px 0 rgba(24,28,34, 0.09);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 560px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card p {
  color: #23262B;
  font-size: 1.16rem;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.testimonial-card span, .testimonial-card strong {
  color: #16426e;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px 2px rgba(24,28,34,0.16);
  transform: scale(1.018);
}

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

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.faq-accordion .question {
  background: #23262B;
  border: 1.5px solid #353B42;
  border-radius: 13px;
  padding: 18px 22px;
  transition: box-shadow 0.18s, border-color 0.20s;
  cursor: pointer;
}
.faq-accordion .question:hover {
  box-shadow: 0 4px 16px 0 rgba(24,28,34,0.14);
  border-color: #59B253;
}
.faq-accordion h3 {
  color: #F2F5F8;
  font-size: 1.16rem;
}
.faq-accordion .answer {
  margin-top: 10px;
  color: #D0D6DC;
  font-size: 1.02rem;
}

/* =============================================
    HEADER & NAVIGATION (ONLY FLEXBOX)
   ============================================= */
header {
  width: 100%;
  background: #181C22;
  border-bottom: 2px solid #23262B;
  position: sticky;
  top: 0; left: 0; z-index: 1102;
  transition: box-shadow 0.15s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 42px;
  width: auto;
  filter: brightness(1) contrast(1.1) grayscale(0.2) drop-shadow(0px 2px 2px #181C22);
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F2F5F8;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.08em;
  padding: 7px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #59B253;
  transition: width 0.23s;
  margin-top: 4px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
/* Hide on mobile, show with JS if needed */
.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 1201;
  background: #23262B;
  color: #59B253;
  border-radius: 6px;
  padding: 10px 17px;
  font-size: 2rem;
  margin-left: auto;
  border: 2px solid #353B42;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #292E34;
  color: #F2F5F8;
}
/* =============================================
   RESPONSIVE MOBILE NAVIGATION (flex only)
   ============================================= */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #181C22ee;
  backdrop-filter: blur(2.5px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.75,0,.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #23262B;
  color: #F2F5F8;
  border: none;
  font-size: 2.3rem;
  padding: 14px 25px 10px 16px;
  margin-top: 16px;
  margin-right: 12px;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-end;
  box-shadow: 0 2px 7px 0 rgba(33,35,39, 0.07);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #27435D;
  color: #59B253;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 0 30px 20px 42px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.27rem;
  color: #F2F5F8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.09em;
  padding: 14px 0 13px 0;
  border-bottom: 1px solid #23262B;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #59B253;
  background: #23262B;
}

/* =============================================
    CTA BUTTONS
   ============================================= */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  min-width: 160px;
  padding: 13px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.13s;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 12px 0 #0f3a6030;
  letter-spacing: 0.05em;
}
.btn-primary {
  background: #59B253;
  color: #222E34;
  border: 1.5px solid #0F3A60;
}
.btn-primary:hover, .btn-primary:focus {
  background: #0F3A60;
  color: #59B253;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 5px 17px 0 #0f3a6066;
}
.btn-secondary {
  background: #181C22;
  color: #59B253;
  border: 1.5px solid #59B253;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #59B253;
  color: #1B232B;
  transform: translateY(-2px) scale(1.035);
  border-color: #0F3A60;
}

/* =============================================
   HERO, FEATURES, LISTS, CARDS
   ============================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section > .container > h1, section > .container > h2 {
  margin-bottom: 10px;
}
.content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.content-wrapper ul li,
.content-wrapper ol li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #D0D6DC;
  background: none;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.18s;
}
.content-wrapper ul li img {
  width: 28px;
  height: 28px;
  filter: grayscale(40%) brightness(1.2) contrast(1.1) drop-shadow(0px 1.5px 2px #23262B);
}
.content-wrapper ul li:hover,
.content-wrapper ol li:hover {
  background: #242C36;
  color: #59B253;
}

/* CTA at the end of pages */
section:last-of-type .content-wrapper {
  align-items: center;
}

/* Cards flex wrapping - spacing */
.card-container, .content-grid {
  margin-bottom: 20px;
}

/* =============================================
   FOOTER (FLEX ONLY)
   ============================================= */
footer {
  background: #15181C;
  color: #BCC0C5;
  padding: 44px 0 36px 0;
  border-top: 2px solid #23262B;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 250px;
}
.footer-brand img {
  width: 56px;
  height: 56px;
  filter: contrast(1.12) brightness(1.08) grayscale(0.12) drop-shadow(0px 1px 3px #23262B);
}
.footer-brand span {
  color: #64ffda;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #A7B2BF;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: color 0.18s;
  text-decoration: none;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #59B253;
}
.footer-contact {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #98A4B6;
  font-family: 'Roboto', Arial, sans-serif;
}

/* =============================================
   COOKIE CONSENT BANNER & MODAL (flex only)
   ============================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #23262B;
  color: #F2F5F8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px 16px 26px 16px;
  box-shadow: 0 -2px 16px 0 rgba(16,20,40,0.12);
  border-top: 3px solid #59B253;
  transition: transform 0.33s cubic-bezier(.9,0,.1,1), opacity 0.22s;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 4px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.05em;
  padding: 9px 24px;
  border-radius: 7px;
  font-size: 1.04rem;
  font-weight: 700;
  border: none;
  background: #23262B;
  color: #59B253;
  box-shadow: 0 2px 7px #10141a16;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner button.accept {
  background: #59B253;
  color: #1E242B;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #0F3A60;
  color: #59B253;
}
.cookie-banner button.decline {
  background: #23262B;
  color: #59B253;
  border: 1.5px solid #59B253;
}
.cookie-banner button.decline:hover, .cookie-banner button.decline:focus {
  background: #0F3A60;
  color: #F2F5F8;
}
.cookie-banner button.settings {
  background: #F2F5F8;
  color: #0F3A60;
  border: 1px solid #59B253;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #59B253;
  color: #F2F5F8;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 3100;
  background: rgba(24,28,34, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #23262B;
  color: #F2F5F8;
  padding: 38px 26px 32px 26px;
  border-radius: 16px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 6px 42px 0 rgba(24,32,44,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.08rem;
  padding: 7px 0;
}
.cookie-category input[type="checkbox"]:disabled + label {
  color: #BCC0C5;
  opacity: 0.7;
  font-style: italic;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  color: #F2F5F8;
  font-size: 2rem;
  border: none;
  position: absolute;
  top: 18px; right: 26px;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #59B253;
}

/* =============================================
   RESPONSIVE LAYOUT
   ============================================= */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-brand {
    margin-bottom: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
  .container {
    padding-right: 7px;
    padding-left: 7px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    min-width: unset;
    text-align: center;
    justify-content: center;
  }
  section {
    padding: 30px 0 24px 0;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  footer .container {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2vw;
  }
  .card, .testimonial-card {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-modal-content {
    min-width: 90vw;
    padding: 16px 7vw 16px 7vw;
  }
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.12s, color 0.18s, transform 0.15s, box-shadow 0.19s;
}
.btn-primary:active, .btn-secondary:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
}
.card, .testimonial-card, .faq-accordion .question {
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.card:active, .testimonial-card:active, .faq-accordion .question:active {
  transform: scale(0.98);
}

::-webkit-scrollbar {
  width: 7px;
  background: #1a2230;
}
::-webkit-scrollbar-thumb {
  background: #23262B;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #353B42;
}

/* ==================
   UTILITY CLASSES
   ================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 8px; }
.mb-1 { margin-bottom: 8px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }


/* ============================
    INDUSTRIAL MODERN ACCENTS
   ============================ */
body, .card, section, header, footer {
  /* subtle metallic texture (simulate with shadow) */
  box-shadow: 0 0 1.5px 0 #42526B0a;
}
.card, .testimonial-card {
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(22,36,56,0.11);
  border-left: 5px solid #0F3A60;
}

/* Metallic accent on interactive element */
.btn-primary, .btn-secondary {
  box-shadow: 0 0 0 2.5px #353B4240 inset;
  border-radius: 11px;
}
.testimonial-card {
  border-left: 6px solid #59B253;
}

/* Highlight focusable elements for accessibility */
a:focus, .btn-primary:focus, .btn-secondary:focus, .mobile-nav a:focus {
  outline: 2.5px solid #59B253;
  outline-offset: 2px;
}

/* ==================================
   Z-INDEX LAYERING FOR INTERACTIVE UI
   ==================================*/
header { z-index: 1102; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3100; }

/* =============================================
   ACCESSIBLE, SUSTAINABLE CONTRAST
   ============================================= */
/* Testimonial background: always light, dark readable text */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #23262B !important;
  background: #F2F5F8 !important;
}

/* ================
   MISC & SPACING
   ================ */
h1, h2, h3, .section, .card, .testimonial-card, .faq-accordion .question, .content-wrapper, .footer-brand, .footer-contact, .footer-nav {
  margin-bottom: 20px;
}

/* ENDFILE */
