/* 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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #151D22;
  color: #F3F4F8;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.3s, color 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #3AB98A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #fff;
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}

li {
  margin-bottom: 0.5em; 
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F3F4F8;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.125rem;
}

p,
blockquote,
.small, small {
  color: #D6D9E0;
  font-size: 1rem;
  margin-bottom: 1.1em;
}

blockquote {
  border-left: 4px solid #3AB98A;
  padding-left: 16px;
  margin-bottom: 12px;
  font-style: italic;
  background: rgba(25, 61, 97, 0.06);
}

strong {
  color: #fff;
  font-weight: 700;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .section, section { padding: 24px 10px; margin-bottom: 36px; }
  .container { padding: 0 10px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: #181C1F;
  border-bottom: 1px solid #292E33;
  padding: 0;
  width: 100%;
  z-index: 1001;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo img {
  max-height: 44px;
  filter: brightness(1.2) drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F3F4F8;
  padding: 6px 12px;
  border-radius: 5px;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:after {
  display: block;
  content: '';
  width: 0;
  height: 3px;
  background: #3AB98A;
  border-radius: 2px;
  margin-top: 2px;
  transition: width 0.25s cubic-bezier(.72,.01,.53,1.01);
}
.main-nav a:hover:after, .main-nav a.cta-btn:after {
  width: 100%;
}
.main-nav .cta-btn {
  background: linear-gradient(90deg,#3AB98A 0,#193D61 120%);
  color: #181C1F;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 22px;
  margin-left: 10px;
  box-shadow: 0 2px 16px 0 rgba(30,60,80,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
  border: none;
}
.main-nav .cta-btn:hover,
.main-nav .cta-btn:focus {
  background: #3AB98A;
  color: #193D61;
  box-shadow: 0 3px 24px 0 rgba(30,60,80,0.18);
}

/* BURGER MENU (MOBILE) */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #F3F4F8;
  display: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 7px;
  transition: background 0.2s;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #23282C;
}

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
}

@media (max-width: 864px) {
  .main-nav .cta-btn { padding: 7px 16px; }
}

@media (max-width: 820px) {
  .main-nav { gap: 8px; }
  .main-nav a { font-size: 0.97rem; }
  header .container { height: 60px; }
  .logo img { max-height: 36px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #181C1F;
  box-shadow: 2px 0 24px 0 rgba(36,56,70,0.45);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  opacity: 0.97;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #3AB98A;
  margin: 14px 20px 0 0;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 5px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #23282C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 12px;
  padding: 30px 32px 16px 32px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #F3F4F8;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid #23282C;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #3AB98A33;
  color: #3AB98A;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg,#181C1F 75%,#193D61 200%);
  border-bottom: 1px solid #243045;
  display: flex;
  align-items: center;
  min-height: 320px;
  padding: 0 0 50px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.hero h1 {
  color: #3AB98A;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 16px #151D2288;
}
.hero p {
  color: #D6D9E0;
  font-size: 1.18rem;
  margin-bottom: 20px;
}
.hero .cta-btn {
  margin-top: 22px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    padding: 0 0 28px 0;
  }
}

/* BUTTONS & INTERACTIONS */
.cta-btn, button.cta-btn {
  background: #3AB98A;
  color: #151D22;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 13px 30px;
  border: none;
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 2px 21px 0 rgba(58,185,138,0.11);
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.15s;
  display: inline-block;
  text-align: center;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus, button.cta-btn:hover {
  background: #1F5C44;
  color: #F3F4F8;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 36px 0 rgba(58,185,138,0.22);
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23282C;
  border: 1px solid #313B43;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 22px;
  transition: box-shadow 0.19s, border 0.15s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(30,60,80,0.13);
  border: 1.5px solid #3AB98A;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 20px 20px;
  background: #F3F4F8;
  border-radius: 13px;
  margin-bottom: 26px;
  border-left: 6px solid #3AB98A;
  box-shadow: 0 2px 18px 0 #141c2533;
  color: #151D22;
  max-width: 680px;
}
.testimonial-card blockquote { color: #151D22; }
.testimonial-card div { color: #1D2833; font-weight: 500; font-family: 'Montserrat', Arial, sans-serif; }

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

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}
.features-grid > div {
  background: #23282C;
  border-radius: 11px;
  border: 1px solid #383D43;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 280px;
  padding: 24px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, border 0.17s, transform 0.18s;
  box-shadow: 0 2px 15px 0 rgba(36,61,97,.05);
}
.features-grid > div:hover {
  border: 1.5px solid #3AB98A;
  box-shadow: 0 6px 17px 0 #1e283444;
  transform: translateY(-3px) scale(1.017);
}
.features-grid h3 { color: #3AB98A; font-weight: 700; margin-top: 8px; }
.features-grid img { margin-bottom: 9px; max-height: 40px; filter: brightness(1.08); }

@media (max-width: 1024px) {
  .features-grid { gap: 15px; }
}
@media (max-width: 860px) {
  .features-grid { flex-wrap: wrap; }
  .features-grid > div { min-width: 46vw; }
}
@media (max-width: 650px) {
  .features-grid { flex-direction: column; gap: 14px; }
  .features-grid > div { min-width: 100%; max-width: 100%; }
}

/* CTA SECTION */
.cta {
  background: linear-gradient(100deg,#23282C 68%,#193D61 150%);
  border-top: 1px solid #292E33;
  border-bottom: 1px solid #292E33;
  border-radius: 16px;
  box-shadow: 0 2px 19px 0 #193d6122;
  margin-bottom: 0;
  padding-top: 48px;
  padding-bottom: 48px;
}
.cta h2 { color: #3AB98A; font-size: 2.2rem; }
.cta p { color: #D6D9E0; }

@media (max-width: 768px) {
  .cta { padding: 28px 0; border-radius: 8px; }
  .cta h2 { font-size: 1.4rem; }
}

/* PRICING TABLES, TABLES, INFO BLOCKS */
.comparison-table, .pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #23282c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 8px 0 #181c1f11;
  margin-bottom: 1em;
}
.comparison-table th, .comparison-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #262B30;
  color: #F3F4F8;
}
.comparison-table th { color: #3AB98A; font-size: 1rem; }
.comparison-table tr:last-child td { border-bottom: none; }

.pricing-grid {
  gap: 24px;
  margin-bottom: 16px;
}
.pricing-grid > div {
  background: #23282C;
  border-radius: 11px;
  border: 1px solid #363C42;
  flex: 1 1 215px;
  min-width: 190px;
  max-width: 280px;
  padding: 22px 15px 16px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 15px 0 #222c340d;
  transition: border 0.14s, box-shadow 0.16s;
}
.pricing-grid > div:hover {
  border: 1.5px solid #3AB98A;
  box-shadow: 0 6px 17px 0 #25454844;
}
.pricing-grid h3 { color: #3AB98A; font-weight: 700; }

@media (max-width: 850px) {
  .comparison-table, .pricing-grid {
    flex-direction: column;
    gap: 12px;
  }
  .comparison-table table {
    font-size: 0.98rem;
  }
}

/* TRUST SIGNALS / ICON LIST */
.trust-signals ul,
.key-figures, .team-values, .footer-contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.trust-signals li, .key-figures li, .team-values li {
  display: flex;
  align-items: center;
  font-size: 1.065rem;
  color: #3AB98A;
  background: none;
  gap: 14px;
}
.trust-signals img, .key-figures img, .footer-contact img {
  margin-right: 8px;
  height: 1.6em;
  width: auto;
}

/* FAQ / ACCORDION (Static) */
.faq-section, .faq-accordion {
  margin-bottom: 24px;
}
.faq-accordion dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.13rem;
  color: #3AB98A;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.18s;
}
.faq-accordion dd {
  margin: 0 0 12px 0;
  padding-left: 18px;
  color: #D6D9E0;
}
.faq-accordion dt:hover { color: #fff; }

/* CONTACT, FORMS, NOTICES */
.privacy-notice {
  margin-top: 14px;
  padding: 10px 14px;
  background: #23282C;
  font-size: 0.94rem;
  color: #92AAAF;
  border-radius: 7px;
  border-left: 4px solid #3AB98A;
}
.embedded-map {
  background: #23282C;
  border-radius: 10px;
  padding: 19px 14px;
  color: #D6D9E0;
  margin-top: 8px;
  font-size: 1.01rem;
}

/* FOOTER */
footer {
  background: #181C1F;
  color: #D6D9E0;
  padding: 38px 0 28px 0;
  border-top: 1px solid #292E33;
  z-index: 100;
  width: 100%;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 170px;
}
.footer-brand img {
  max-width: 90px;
  max-height: 38px;
  margin-bottom: 4px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 190px;
}
.footer-nav a {
  color: #3AB98A;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: none;
  font-size: 1.03rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 250px;
  font-size: 1rem;
  color: #D6D9E0;
}
.footer-contact a {
  color: #3AB98A;
  text-decoration: underline;
  transition: color 0.17s;
  word-break: break-all;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
}
@media (max-width: 992px) {
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start; }
}

/* LEGAL SECTION TEXT */
.legal {
  background: #23282C;
  border-radius: 14px;
  margin-bottom: 0;
}
.legal-text h2 {
  font-size: 1.23rem;
  color: #3AB98A;
}
.legal-text ul {
  padding-left: 1.5em;
}
.legal-text li {
  color: #D6D9E0;
  margin-bottom: 0.6em;
}

/* CONFIRMATION PAGE */
.confirmation {
  background: #23282C;
  border-radius: 12px;
  text-align: center;
}
.confirmation h1 {
  color: #3AB98A;
  margin-bottom: 16px;
}
.confirmation ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 26px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23282C;
  color: #F3F4F8;
  border-top: 4px solid #3AB98A;
  box-shadow: 0 -4px 18px 0 #151d2222;
  z-index: 5003;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px;
  font-size: 1.07rem;
  animation: cookieFadeIn 0.7s;
}
@keyframes cookieFadeIn { from{transform:translateY(100%);opacity:0} to{transform:translateY(0);opacity:1} }
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-btns .cookie-accept {
  background: #3AB98A;
  color: #151D22;
  border: none;
  border-radius: 7px;
  font-size: 1.02rem;
  padding: 8px 20px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 15px 0 #3ab98a26;
}
.cookie-btns .cookie-accept:hover,
.cookie-btns .cookie-accept:focus {
  background: #1F5C44;
  color: #fff;
}
.cookie-btns .cookie-reject {
  background: #23282C;
  color: #F3F4F8;
  border: 1px solid #3AB98A;
  border-radius: 7px;
  font-size: 1.02rem;
  padding: 8px 20px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btns .cookie-reject:hover,
.cookie-btns .cookie-reject:focus {
  background: #181C1F;
  color: #3AB98A;
}
.cookie-btns .cookie-settings {
  background: none;
  border: none;
  color: #3AB98A;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 9px;
  padding: 7px 14px;
  border-radius: 4px;
  transition: background 0.18s, color 0.16s;
}
.cookie-btns .cookie-settings:hover,
.cookie-btns .cookie-settings:focus {
  background: #23282C;
  color: #F3F4F8;
}

@media (max-width: 620px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 10px;
    font-size: 0.94rem;
  }
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,29,34,0.86);
  z-index: 6100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.4s;
}
@keyframes fadeInModalBg { from{opacity:0} to{opacity:1} }
.cookie-modal {
  background: #23282C;
  border-radius: 13px;
  box-shadow: 0 8px 64px 0 #151d2288;
  padding: 36px 24px 24px 24px;
  min-width: 300px;
  max-width: 96vw;
  width: 95vw;
  max-width: 440px;
  color: #F3F4F8;
  font-size: 1.07rem;
  animation: showModal 0.55s cubic-bezier(.77,.06,.39,.98);
}
@keyframes showModal { from{transform:translateY(90px) scale(0.94);opacity:0.2} to{transform:translateY(0) scale(1);opacity:1} }
.cookie-modal h2 {
  color: #3AB98A;
  font-size: 1.38rem;
  margin-bottom: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 15px 0;
}
.cookie-modal label {
  color: #D6D9E0;
  font-size: 1.06rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #3AB98A;
  width: 21px; height: 21px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 19px;
}
.cookie-modal .cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

/* ICON COLORS (INDUSTRIAL MODERN) */
img[src*="icon-"] {
  filter: grayscale(0.03) brightness(1.1) drop-shadow(0 1px 3px #151d221e);
}

/* SHADOWS & URBAN METALLIC EFFECT */
.card, .features-grid > div, .pricing-grid > div, .legal, .cta, .confirmation, .testimonial-card {
  box-shadow: 0 2.5px 17px 0 rgba(43,54,68,0.08), 0 1px 2px 0 rgba(30,32,33,0.08);
  border-radius: 10px;
}

/* SPACING & CONSISTENCY */
.section + .cta, section + .cta {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .card, .features-grid > div, .pricing-grid > div, .legal, .cta, .confirmation, .testimonial-card {
    margin-bottom: 15px;
    border-radius: 7px;
    padding: 16px 10px;
  }
}

/* ACCESSIBILITY: HIGH CONTRAST FOR TESTIMONIALS ON LIGHT */
.testimonials {
  background: #181C1F;
  padding-top: 42px;
  padding-bottom: 30px;
  border-radius: 16px;
}

/* ========== UTILITIES & OVERRIDES ========= */
.show { display: block !important; }
.hide { display: none !important; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.gap-10 { gap: 10px !important; }
.gap-20 { gap: 20px !important; }

::-webkit-scrollbar {
  width: 10px;
  background: #181C1F;
}
::-webkit-scrollbar-thumb {
  background: #23282C;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3AB98A;
}

/* ========== END OF CSS ========== */