/* =======================================================================
   CSS RESET & BASE STYLES (Normalize-like Reset for Consistency)
   ======================================================================= */
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;
}
body {
  min-height: 100%;
  background: #181e23;
  color: #F2F5F7;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #58A684;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2F5F7;
  outline: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  line-height: 1.2;
  color: #F2F5F7;
}
h1 { font-size: 2.6rem; margin-bottom: 20px; letter-spacing: 1px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p {
  margin-bottom: 16px;
  color: #e0e4e6;
}
strong, b {
  font-weight: bold;
}

/* =======================================================================
   CONTAINER & LAYOUT SYSTEM (Flexbox ONLY, mobile-first)
   ======================================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
/* Section Spacing & Alignment */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #202a31;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(20,27,35,0.18),0 6px 24px rgba(10,18,27,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 26px;
  border: 1px solid #252f36;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(37, 49, 58, 0.21),0 8px 32px rgba(88,166,132, 0.10);
  transform: translateY(-2px) scale(1.01);
}
.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;
  background: #f2f5f7;
  color: #1B2936;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(30, 45, 65, 0.13);
  border: 1.5px solid #dee3e7;
  margin-bottom: 20px;
  min-width: 245px;
  max-width: 375px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #202a31;
  border-radius: 12px;
  padding: 24px 20px;
  border: 1.5px solid #303d48;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border-color 0.16s;
  min-width: 240px;
  flex: 1 1 230px;
}
.feature-item img {
  height: 38px;
  width: auto;
  margin-bottom: 7px;
}
.feature-item:hover {
  border-color: #58A684;
  box-shadow: 0 4px 16px rgba(88, 166, 132, 0.10);
}
.feature-grid,
.story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.story-list .feature-item {
  background: #232d34;
  border: 1.5px solid #2c353c;
}

/* =======================================================================
   HEADER & NAVIGATION (Industrial Modern)
   ======================================================================= */
header {
  background: #1B2936;
  border-bottom: 2.5px solid #232d34;
  padding: 0;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 45px;
  width: auto;
}
.navigation {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.navigation a {
  color: #f2f5f7;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.6px;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 4px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.18s;
}
.navigation a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: #58A684;
  margin: 6px auto 0 auto;
  border-radius: 2px;
  transition: width 0.18s;
}
.navigation a:hover,
.navigation a:focus {
  color: #58A684;
}
.navigation a:hover:after,
.navigation a:focus:after {
  width: 85%;
}

/* Call to action in header */
.btn-primary {
  background: #58A684;
  color: #1B2936;
  border: none;
  border-radius: 8px;
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: bold;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-left: 20px;
  box-shadow: 0 2px 12px rgba(40, 92, 75, 0.14);
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #43A095;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}

.btn-secondary {
  background: #F2F5F7;
  color: #1B2936;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 22px;
  box-shadow: 0 1px 7px rgba(88,166,132, 0.08);
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #58A684;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}

@media (max-width: 1100px) {
  header .container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .navigation {
    justify-content: center;
  }
}

/* =======================================================================
   HERO / CTA / TRUST SIGNAL SECTIONS
   ======================================================================= */
.hero {
  background: linear-gradient(120deg, #232E36 62%, #23312E 100%);
  color: #f2f5f7;
  border-bottom: 5px solid #252f36;
  padding: 60px 0 48px;
  margin-bottom: 0;
}
.hero .container {
  min-height: 240px;
  gap: 32px;
}
.cta-section {
  background: #232d34;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(27,41,54,0.11);
  text-align: center;
  margin-top: 36px;
  margin-bottom: 0;
}
.cta-section h2 {
  color: #F2F5F7;
  font-size: 2.1rem;
  margin-bottom: 20px;
}
.cta-section .btn-primary {
  font-size: 1.15rem;
}

.trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 4px;
}
.trust-signals li {
  background: #232E36;
  color: #58A684;
  border-radius: 10px;
  border: 1px solid #324855;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  gap: 7px;
  padding: 9px 18px 9px 13px;
  box-shadow: 0 1px 6px rgba(40,58,77,0.08);
}
.trust-signals li img {
  height: 22px;
  width: auto;
}

/* =======================================================================
   FOOTER
   ======================================================================= */
footer {
  background: #151e24;
  color: #b0c1ca;
  font-size: 1rem;
  margin-top: 60px;
  border-top: 2px solid #232d34;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 18px 22px 18px;
  align-items: flex-start;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer .footer-nav a {
  color: #6b8794;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
footer .footer-nav a:hover,
footer .footer-nav a:focus {
  color: #58A684;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 5px;
  max-width: 300px;
}
footer .footer-contact img {
  height: 35px;
  width: auto;
  margin-bottom: 5px;
}
footer .footer-contact address {
  font-style: normal;
  color: #b0c1ca;
  font-size: 1rem;
  margin-bottom: 4px;
}
footer .footer-meta {
  width: 100%;
  text-align: center;
  padding: 14px 0 7px 0;
  border-top: 1.5px solid #232d34;
  font-size: 0.92rem;
  background: #181e23;
}

/* =======================================================================
   MOBILE BURGER MENU & RESPONSIVE NAV
   ======================================================================= */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 18px;
  z-index: 1020;
  background: #232d34;
  color: #F2F5F7;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(27,41,54,0.11);
  border: 1.5px solid #2b353c;
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #222c32;
  color: #58A684;
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #181e23;
  z-index: 1200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.63,.26,.48,1.06), opacity 0.3s;
  box-shadow: 0 0 32px rgba(27,41,54,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: #58A684;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 22px 24px 0 0;
  width: 48px;
  height: 48px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 28px 0px 35px;
}
.mobile-nav a {
  color: #F2F5F7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 9px 17px;
  margin-left: -8px;
  margin-right: 0;
  transition: background 0.18s, color 0.16s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #2a373e;
  color: #58A684;
}

/* Hide header nav and show hamburger on mobile */
@media (max-width: 960px) {
  .navigation, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .container {
    justify-content: flex-start;
    gap: 12px;
  }
  header img {
    height: 38px;
  }
}
@media (max-width: 1080px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-contact {
    padding-top: 7px;
    max-width: 100%;
  }
}

/* Responsive for all major content flex sections */
@media (max-width: 880px) {
  .story-list, .feature-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-item, .testimonial-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    padding: 32px 6px;
    margin-bottom: 34px;
  }
  .hero {
    padding: 44px 0 32px;
  }
  .cta-section {
    padding: 25px 4px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-item {
    padding: 19px 10px;
  }
  .testimonial-card {
    padding: 15px 10px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .btn-primary, .btn-secondary {
    font-size: 0.98rem;
    padding: 10px 16px;
  }
}

/* =======================================================================
   CONTACT, ADDRESS & LEGAL
   ======================================================================= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #222c31;
  border-radius: 13px;
  padding: 22px 16px;
  margin-bottom: 18px;
  box-shadow: 0 1px 8px rgba(27,41,54,0.07);
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F2F5F7;
  font-size: 1.01rem;
}
.contact-details img {
  width: 21px;
  height: 21px;
}

.legal-section {
  background: #202a31;
  color: #F2F5F7;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(24,30,35,0.065);
}
.legal-section h1, .legal-section h2, .legal-section h3 {
  color: #F2F5F7;
}

/* =======================================================================
   LISTS (Bullets)
   ======================================================================= */
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 12px;
}
ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 21px;
  font-size: 1.01rem;
}
ul li:before {
  position: absolute;
  left: 0;
  top: 8px;
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #58A684;
  border-radius: 2px;
}

/* Shadows and Metallic Accents == Industrial Modern */
.card, .feature-item, .cta-section, .contact-details, .legal-section {
  box-shadow: 0 3px 16px rgba(40, 60, 68, 0.11), 0 8px 32px rgba(30, 50, 70, 0.08);
  border: 1.5px solid #252f36;
}
.card, .feature-item, .cta-section, .legal-section {
  border-top: 1.8px solid #222c31;
  border-left: 1.3px solid #3F4A51;
  border-bottom: 2.1px solid #333d44;
}

/* metallic accent effect for accent separators */
hr {
  border: 0;
  height: 3px;
  background: linear-gradient(90deg, #505d66 0%, #B2C4C9 48%, #505d66 100%);
  border-radius: 1.5px;
  margin: 34px 0 24px 0;
}

/* =======================================================================
   TYPOGRAPHY (Industrial fonts & hierarchy)
   ======================================================================= */
body, p, li, address, span, input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
}
h1,h2,h3,h4,h5,h6,nav a, .btn-primary, .btn-secondary, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
}
h1, h2, .btn-primary, nav a, .footer-nav a {
  letter-spacing: 0.02em;
}

/* =======================================================================
   TESTIMONIALS STYLING (Card Style, High Contrast)
   ======================================================================= */
.testimonial-card p {
  color: #1B2936;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: #25555a;
  font-size: 0.99rem;
  font-weight: bold;
  font-family: 'Montserrat';
  letter-spacing: 0.03em;
}

/* =======================================================================
   COOKIE CONSENT BANNER (Fixed & Modern)
   ======================================================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #232E36;
  color: #F2F5F7;
  border-top: 2.3px solid #303c44;
  box-shadow: 0 -3px 18px rgba(27,41,54,0.13);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 18px;
  gap: 16px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: cookieBannerPop 0.5s cubic-bezier(.7,.32,.35,1.05);
}
@keyframes cookieBannerPop {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #f2f5f7;
  font-size: 1.06rem;
  line-height: 1.5;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  background: #58A684;
  color: #1B2936;
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 22px;
  margin: 0;
  box-shadow: 0 1px 7px rgba(30, 50, 70, 0.07);
  cursor: pointer;
  transition: background 0.16s, color 0.13s, transform 0.14s;
}
.cookie-btn.settings {
  background: #1B2936;
  color: #F2F5F7;
  border: 1.4px solid #58A684;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #43A095;
  color: #fff;
  transform: scale(1.04);
  outline: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #303d44;
  color: #58A684;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 5px 22px 5px;
    font-size: .99rem;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1600;
  width: 100vw; height: 100vh;
  background: rgba(24,30,35,0.9);
  backdrop-filter: blur(0.7px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.6,.2,.48,1.1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #202a31;
  color: #F2F5F7;
  border-radius: 13px;
  box-shadow: 0 3px 48px rgba(30,50,70,0.17);
  padding: 34px 22px 26px 22px;
  min-width: 290px;
  max-width: 360px;
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPop 0.48s cubic-bezier(.7,.33,.37,1.08);
}
@keyframes modalPop {
  from { transform: scale(0.9) translateY(80px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: #58A684;
  margin-bottom: 6px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F2F5F7;
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-modal label[disabled],
.cookie-modal .essential-label {
  color: #8fcbb5;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cookie-modal .switch {
  width: 38px;
  height: 22px;
  border-radius: 22px;
  background: #232d34;
  border: 1.5px solid #58A684;
  position: relative;
  cursor: pointer;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0; left: 0;
  cursor: pointer;
}
.cookie-modal .switch::before {
  content: '';
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  background: #58A684;
  border-radius: 50%;
  transition: transform 0.2s, background 0.15s;
}
.cookie-modal .switch input:checked + span::before {
  transform: translateX(16px);
  background: #43A095;
}
.cookie-modal .switch input:checked + span{
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  background: none;
  color: #8fcbb5;
  font-size: 1.5rem;
  border: none;
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
  padding: 4px;
}

/* =======================================================================
   TRANSITIONS & MICRO-INTERACTIONS
   ======================================================================= */
.card, .feature-item, .testimonial-card, .cta-section, .cookie-modal, .cookie-banner {
  transition: box-shadow 0.18s, border-color 0.14s, background 0.18s, color 0.16s;
}
@media (hover: hover) {
  .card:hover, .feature-item:hover, .cta-section:hover {
    box-shadow: 0 6px 27px rgba(51,68,76,0.12), 0 18px 54px rgba(34,54,60,0.07);
    border-color: #58A684;
  }
}

.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.18s, color 0.18s, transform 0.16s;
}

/* =======================================================================
   INDUSTRIAL MODERN STYLE: Metallic Accents,
   Urban feel, Strong lines & Shadows, Consistent Color Blocks
   ======================================================================= */
body {
  background: #181e23;
}
.section, .cta-section, .feature-item, .testimonial-card, .card {
  border-radius: 12px;
  /* Simulated metallic edge light */
  box-shadow: 0 1.5px 0 #38414a inset, 0 0 0 1.5px #252f36;
}

/* =======================================================================
   UTILITIES & HELPER CLASSES
   ======================================================================= */
.text-center {
  text-align: center!important;
}
.text-right {
  text-align: right!important;
}
.d-flex {
  display: flex;
  align-items: center;
}
.flex-column {
  flex-direction: column;
}
.gap-16 {
  gap: 16px;
}
.mb-20 {
  margin-bottom: 20px!important;
}
.mt-24 {
  margin-top: 24px!important;
}

/* =======================================================================
   ACCESSIBILITY & FOCUS
   ======================================================================= */
a:focus, button:focus, .cookie-btn:focus {
  outline: 2px solid #58A684;
  outline-offset: 2px;
}

/* End of stylesheet */
