/* 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, caption, tbody, tfoot, thead, tr, th, td, section, article, aside, nav, footer, header, main, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
main, article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
body {
  background: #171B22;
  color: #F4F2ED;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
a {
  color: #5A7C63;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #93B198;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 20px;
}
strong, b { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }

/* TYPOGRAPHY ------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F2ED;
  font-weight: 700;
  letter-spacing: 0.025em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; }
p, li, ol, ul { font-size: 1rem; }
.text-section h2, .text-section h3 { color: #5A7C63; }

/* CONTAINER & LAYOUT ----------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  background: rgba(34,48,73,0.98);
  border-radius: 12px;
  box-shadow: 0px 2px 16px 0px rgba(30, 34, 40, 0.16);
  padding: 40px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.card-container, .feature-grid, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #212A37;
  border-radius: 10px;
  border: 1px solid #273348;
  box-shadow: 0 1px 8px 0 rgba(25, 28, 36, 0.08);
  margin-bottom: 20px;
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.card:hover {
  border-color: #5A7C63;
  box-shadow: 0 4px 24px 0 rgba(90, 124, 99, 0.17);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Spacing Patterns */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F4F2ED;
  color: #223049;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px 0 rgba(60,60,60,0.08);
  flex-wrap: wrap;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #223049;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #E0A800;
  font-size: 1.2em;
}
.testimonial-card div {
  font-size: 1rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container {
  gap: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.contact-highlight {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #232F3F;
  padding: 12px 20px;
  border-radius: 8px;
  color: #F4F2ED;
  box-shadow: 0 2px 10px 0 rgba(20,22,30,0.12);
  margin-bottom: 20px;
  margin-top: 8px;
  font-size: 1.1rem;
}
.contact-details {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.team-short-intro {
  background: #202A36;
  color: #F4F2ED;
  padding: 16px;
  border-radius: 7px;
  margin-top: 12px;
  margin-bottom: 16px;
  box-shadow: 0 1px 8px 0 rgba(20,20,20,0.06);
}
.success-metrics, .rating-summary {
  background: #262D39;
  padding: 18px 24px;
  margin-top: 10px;
  border-radius: 7px;
  font-weight: 600;
  color: #EDEDE9;
  font-size: 1.07rem;
}
.references-snippets ul, .client-stories ul {
  margin-bottom: 0;
}
.text-section {
  margin-top: 8px;
}
.text-section p, .text-section ul, .text-section ol {
  color: #F4F2ED;
  opacity: 0.95;
}
.text-section span, .gdpr-notice span {
  color: #5A7C63;
}
.gdpr-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F4F2ED;
  color: #273348;
  border-radius: 7px;
  margin-top: 16px;
  padding: 10px 14px;
  font-size: 0.98rem;
}

/* HEADER & NAV ------------------------------ */
header {
  background: #223049;
  border-bottom: 2px solid #343F53;
  box-shadow: 0 2px 8px 0 rgba(20, 24, 32, 0.07);
  padding: 0;
  width: 100%;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
header img {
  height: 44px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
nav a {
  color: #F4F2ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  transition: color 0.16s, background 0.19s;
}
nav a:hover, nav a:focus {
  color: #5A7C63;
  background: #181F2D;
  text-decoration: none;
}
nav a.cta-primary {
  background: #5A7C63;
  color: #F4F2ED;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  letter-spacing: 0.06em;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 4px 16px 0 rgba(90,124,99,0.09);
  border: none;
}
nav a.cta-primary:hover, nav a.cta-primary:focus {
  background: #446F52;
  color: #FFF;
}
nav a.cta-secondary {
  background: transparent;
  color: #5A7C63;
  border: 1.5px solid #5A7C63;
  border-radius: 6px;
  padding: 10px 20px;
  font-weight: 600;
}
nav a.cta-secondary:hover, nav a.cta-secondary:focus {
  background: #232F3F;
  color: #F4F2ED;
  border-color: #93B198;
}

/* MOBILE MENU ------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #232F3F;
  color: #F4F2ED;
  border: none;
  border-radius: 6px;
  font-size: 2rem;
  padding: 7px 17px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.19s, color 0.16s;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #5A7C63;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: rgba(23, 27, 34, 0.97);
  z-index: 3000;
  padding: 32px 0 0 0;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.67,0,.37,1) 0s;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #F4F2ED;
  font-size: 2.2rem;
  border: none;
  margin-right: 24px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus {
  outline: 2px solid #5A7C63;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 32px;
  padding-right: 24px;
  gap: 12px;
}
.mobile-nav a {
  color: #F4F2ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid #363C48;
  width: 100%;
  transition: color 0.17s, background 0.15s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #5A7C63;
  background: #212931;
}

@media (max-width: 1100px) {
  .container { padding-left: 8px;padding-right: 8px; }
}
@media (max-width: 900px) {
  nav { gap: 11px; }
  .content-wrapper { padding: 32px 8px; }
}
@media (max-width: 900px) {
  .content-wrapper, .testimonial-card, .contact-highlight { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 768px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .content-wrapper { padding: 20px 4px; margin-bottom: 20px; }
  .card, .testimonial-card { padding: 12px 7px; }
  .header .container { padding-top: 2px; padding-bottom: 2px; }
  .footer-nav { flex-wrap: wrap; }
  .contact-details { flex-direction: column; gap: 9px; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.08rem; }
  .feature-grid, .card-container, .card-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 16px 7px;
  }
  .contact-highlight { flex-direction: column; gap: 6px; }
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    display: none;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 11px;
  }
}

@media (max-width:480px){
  .container{max-width:100vw;}
  .contact-details { gap: 5px; }
}

/* BUTTONS ---------------------------------- */
.cta-primary, .cta-secondary, button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s;
  min-width: 120px;
  display: inline-block;
  margin-top: 8px;
}
.cta-primary {
  background: #5A7C63;
  color: #F4F2ED;
  box-shadow: 0 8px 36px 0 rgba(90,124,99,0.11);
  letter-spacing: 0.08em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #446F52;
  color: #FFF;
}
.cta-secondary {
  background: transparent;
  color: #5A7C63;
  border: 1.5px solid #5A7C63;
  box-shadow: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #232F3F;
  color: #F4F2ED;
  border-color: #93B198;
}

button, input[type="submit"] {
  font-size: 1rem;
  background: #232F3F;
  color: #F4F2ED;
}
button:hover, button:focus,
input[type="submit"]:hover, input[type="submit"]:focus {
  background: #5A7C63;
  color: #FFF;
}

/* FOOTER ----------------------------------- */
footer {
  background: #1A222C;
  color: #F4F2ED;
  border-top: 2px solid #2E384B;
  font-size: 1rem;
  padding-top: 28px;
  padding-bottom: 22px;
  position: relative;
  z-index: 10;
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #93B198;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #F4F2ED;
  text-decoration: underline;
}
footer .contact-details {
  align-items: flex-start;
  gap: 18px;
  margin-top: 8px;
}
footer img {
  height: 36px;
}

/* FAQ ACCORDION ---------------------------- */
.faq-accordion { margin-bottom: 16px; }
.faq-accordion h3 {
  margin-bottom: 0;
  background: #262D39;
  color: #F4F2ED;
  cursor: pointer;
  padding: 16px 14px;
  border-radius: 7px 7px 0 0;
  font-size: 1.07rem;
  font-weight: 700;
  transition: background 0.16s;
}
.faq-accordion h3:hover { background: #2D3543; }
.faq-accordion div {
  display: none;
  background: #232F3F;
  color: #EDEDE9;
  border-radius: 0 0 7px 7px;
  padding: 14px 14px 18px 18px;
  font-size: 1rem;
  margin-bottom: 12px;
  animation: fadeInFaq 0.27s;
}
.faq-accordion h3.active + div {
  display: block;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* SPECIAL SECTIONS --------------------------------- */
.rating-summary span {
  color: #FFC107;
  font-weight: 700;
}
.references-snippets ul li,
.client-stories ul li {
  color: #CFD8DC;
  opacity: 0.9;
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.success-metrics { border-left: 4px solid #5A7C63; }

/* Cookie Consent Banner -------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #232F3F;
  color: #F4F2ED;
  z-index: 3100;
  box-shadow: 0 -2px 24px 0 rgba(20,20,24,0.11);
  padding: 28px 16px 22px 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  justify-content: space-between;
  transition: transform 0.26s;
  will-change: transform;
}
.cookie-banner.hide { transform: translateY(120%); pointer-events: none; }
.cookie-banner-message { flex:1; max-width:600px; }
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 7px;
  transition: background 0.18s, color 0.18s, border 0.19s;
}
.cookie-btn.accept {
  background: #5A7C63;
  color: #F4F2ED;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #446F52;
  color: #FFF;
}
.cookie-btn.reject {
  background: transparent;
  color: #F4F2ED;
  border: 2px solid #373E51;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #1A222C;
  color: #CFD8DC;
}
.cookie-btn.settings {
  background: transparent;
  color: #5A7C63;
  border: 1.5px solid #5A7C63;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #223049;
  color: #F4F2ED;
  border-color: #93B198;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 18px 7px 18px 7px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions { gap: 8px; }
}

/* Cookie Modal -------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #232F3F;
  color: #F4F2ED;
  border-radius: 12px;
  box-shadow: 0 6px 36px 0 rgba(20,20,24,0.19);
  width: 95vw;
  max-width: 420px;
  z-index: 3400;
  padding: 34px 30px 34px 30px;
  animation: fadeCookie 0.23s;
  display: none;
}
.cookie-modal.open { display: block; }
.cookie-modal h2 {
  color: #5A7C63;
  font-size: 1.42rem;
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #283145;
  border-radius: 6px;
  padding: 13px 12px 13px 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F4F2ED;
  font-weight: 600;
}
.cookie-category .cookie-toggle {
  width: 42px; height: 24px;
  background: #5A7C63;
  border-radius: 12px;
  position: relative;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
  display: flex; align-items: center;
}
.cookie-category .cookie-toggle.disabled {
  opacity: 0.55;
  background: #BBBBBB;
  cursor: not-allowed;
}
.cookie-category .cookie-toggle span {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #F4F2ED;
  border-radius: 50%;
  transition: left 0.17s;
}
.cookie-category .cookie-toggle.toggled span {
  left: 20px;
  background: #5A7C63;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  color: #F4F2ED;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 5;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #5A7C63;
}
@keyframes fadeCookie {
  from { opacity:0;transform: translate(-50%,-53%) scale(0.96); }
  to { opacity:1;transform: translate(-50%,-50%) scale(1); }
}

/* INDUSTRIAL MODERN EFFECTS ----------------- */
.card, .feature-grid > div, .feature-item {
  border: 1.5px solid #283145;
  background: linear-gradient(130deg, rgba(34,48,73,0.95) 70%, rgba(41,55,79,0.97) 100%);
  box-shadow: 0px 2px 10px 0px rgba(34, 48, 73, 0.09);
  border-radius: 9px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.19s;
}
.card:hover, .feature-item:hover, .feature-grid > div:hover {
  box-shadow: 0px 8px 32px 0px rgba(90,124,99,0.19);
  border-color: #5A7C63;
}
.card:before, .feature-item:before, .feature-grid > div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: linear-gradient(155deg, rgba(255,255,255,0.02) 50%,rgba(120,120,120,0.06));
  border-radius: 9px;
  pointer-events: none;
  z-index: 0;
}

/* Metallic Accents */
.feature-grid > div img, .feature-item img, .contact-details img, .contact-highlight img, .gdpr-notice img {
  filter: grayscale(45%) brightness(1.1) contrast(1.3) drop-shadow(0 1px 2px #181F2D);
  background: linear-gradient(90deg,rgba(225,225,230,0.16),rgba(180,180,190,0.23));
  border-radius: 4px;
  margin-bottom: 7px;
}

/* LISTS & OL/UL ------------------------------------ */
ul, ol {
  padding-left: 24px;
  margin-top: 8px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 11px;
  line-height: 1.64;
  position: relative;
}
ul li:before {
  content: '– ';
  color: #5A7C63;
  font-weight: 700;
  font-size: 1.15em;
  margin-right: 2px;
  position: absolute; left: -20px;
}
ol li { counter-increment: custom; }
ol {
  counter-reset: custom;
}
ol li:before {
  content: counter(custom) ". ";
  color: #93B198;
  margin-right: 1px;
  position: absolute; left: -24px;
}

/* Misc --------- */
::-webkit-scrollbar {
  width: 12px;
  background: #202A36;
}
::-webkit-scrollbar-thumb {
  background: #323E51;
  border-radius: 6px;
}

/* Hide visually but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- End of CSS --- */
