/* RESET & BASE TYPOGRAPHY */
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; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #191e22;
  color: #eaf5fb;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 16px;
  background: linear-gradient(140deg, #181e23 0%, #235974 100%);
}
@media (max-width: 768px) {
  body { font-size: 15px; }
}
a {
  color: #17a589;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
}
p, ul, ol, blockquote {
  margin-bottom: 18px;
}
strong { color: #17a589; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; }

/* LAYOUT FLEXBOX SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #273545;
  border-radius: 14px;
  box-shadow: 0 4px 36px 0 rgba(11,32,56,0.15), 0 1.5px 6px 0 #152d426a;
  padding: 28px 20px;
  transition: box-shadow 0.28s, transform 0.22s;
  border: 1.5px solid #223c51;
}
.card:hover {
  box-shadow: 0 6px 40px 0 #17a58933, 0 3px 14px 0 #12766baa;
  transform: translateY(-2px) scale(1.03);
}
.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: row;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #181e23;
  padding: 20px 28px;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: 0 3px 32px 0 rgba(35,89,116,0.08), 0 1.5px 8px 0 #12766b38;
  position: relative;
  min-width: 0;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  margin-bottom: 0;
  color: #12766b;
  font-style: italic;
  border-left: 4px solid #17a589;
  padding-left: 18px;
  margin-right: 12px;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235974;
  font-size: 1.04rem;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Responsive Layouts */
@media (max-width: 1099px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .section   { padding: 28px 5px; }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section { flex-direction: column; gap: 24px; }
}

/* --- HEADER, NAVIGATION --- */
header {
  background: #181e23;
  border-bottom: 2.5px solid #223c51;
  width: 100%;
  z-index: 50;
  box-shadow: 0 4px 20px 0 rgba(35,89,116,0.07);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 18px;
  flex-wrap: wrap;
  gap: 14px;
}
header img {
  height: 46px;
  vertical-align: middle;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #ebf5fb;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.21s, border-color 0.21s;
}
header nav a:hover, header nav a:focus {
  color: #17a589;
  border-bottom: 2px solid #17a589;
}
header .cta-btn {
  margin-left: 16px;
}

/* --- CTA BUTTONS --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #17a589;
  color: #fff !important;
  padding: 12px 34px;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 15px 0 #12766b42;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, box-shadow 0.22s, transform 0.18s;
  position: relative;
  z-index: 3;
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #12766b;
  color: #EBF5FB;
  box-shadow: 0 5px 14px 0 #17a58973, 0 1.5px 7px 0 #23597456;
  transform: translateY(-2px) scale(1.04);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 201;
  padding: 10px 14px;
  background: #17a589;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  box-shadow: 0 2px 8px 0 #12766bbc;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus { background: #235974; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 330px;
  max-width: 100vw;
  height: 100vh;
  background: #181e23;
  box-shadow: -7px 0 24px #235974bf;
  padding: 35px 30px 60px 30px;
  transform: translateX(120%);
  transition: transform 0.42s cubic-bezier(.75,.01,.2,1);
  z-index: 210;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(.2,.75,.4,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #EBF5FB;
  font-size: 2.1rem;
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 222;
  cursor: pointer;
  opacity: 0.9;
  transition: color .19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #17a589; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 42px;
}
.mobile-nav a {
  padding: 11px 0 11px 4px;
  color: #ebf5fb;
  border-left: 3.5px solid transparent;
  border-radius: 2px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color .18s, border-color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #17a589;
  border-left: 3.5px solid #17a589;
  background: #223c51;
}

@media (max-width: 1200px) {
  header nav { gap: 14px; }
  header .container { gap: 8px; }
}
@media (max-width: 991px) {
  header nav { gap: 10px; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 400px) {
  .mobile-menu { padding: 20px 8px 44px 8px; }
  .mobile-nav a { font-size: 0.98rem; }
}

/* --- MAIN CONTENT SECTIONS --- */
main {
  width: 100%;
  padding-bottom: 50px;
}
section {
  background: none;
  border-radius: 18px;
  position: relative;
  margin-bottom: 60px;
}
section .container { max-width: 900px; }
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(36, 49, 62, 0.76);
  border-radius: 16px;
  padding: 34px 28px;
  gap: 18px;
  min-width: 0;
  box-shadow: 0 2.5px 20px 0 #23597412;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section .container { max-width: 100vw; }
  .content-wrapper { padding: 18px 6.5vw; border-radius: 11px; }
}

/* --- FEATURE GRID/ITEMS --- */
.feature-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.feature-grid li {
  background: #273545;
  border: 1.5px solid #223c51;
  border-radius: 14px;
  box-shadow: 0 3px 22px 0 #12766b18;
  padding: 22px 20px 18px 20px;
  min-width: 220px;
  max-width: 325px;
  flex: 1 1 225px;
  color: #ebf5fb;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.07rem;
  transition: box-shadow .21s, transform .22s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 4.5px 24px #17a58938;
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 1.5px 5px #17a58970);
}
.feature-grid strong {
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media (max-width: 900px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-grid li { max-width: 100%; min-width: 0; }
}

/* --- SERVICE LISTS --- */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 0;
}
.service-list li {
  background: #1e2733;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 1.07rem;
  position: relative;
  box-shadow: 0 1.5px 8px #12766b24;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.service-list .price {
  background: #17a589;
  color: #fff;
  border-radius: 20px;
  padding: 4px 15px;
  font-size: 0.98rem;
  margin-left: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 1.5px 7px #12766b28;
  letter-spacing: 0.01em;
  transition: background .17s;
}
.service-list .price:hover, .service-list .price:focus { background: #12766b; }

/* -- FAQ LIST -- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-list .text-section {
  background: #222a31;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2.5px 12px #17a5891a;
}
.faq-list h3 {
  color: #12766b;
  margin-bottom: 7px;
  font-size: 1.14rem;
}
.faq-list p {
  color: #eeeeea;
}

/* --- CONTACT LIST --- */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1e2733;
  border-radius: 9px;
  padding: 13px 16px;
  color: #ebf5fb;
  font-size: 1.08rem;
}
.contact-list img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 1.5px 5px #17a58990);
}

/* --- FOOTER --- */
footer {
  background: #181e23;
  border-top: 2.5px solid #223c51;
  color: #ebf5fb;
  padding: 0 0 26px 0;
}
footer .container { max-width: 1000px; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 36px 0 16px 0;
}
.footer-top img {
  height: 38px;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.footer-top nav a {
  color: #ebf5fb;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 0 3.5px;
  transition: color .17s;
}
.footer-top nav a:hover,
.footer-top nav a:focus { color: #17a589; }
.footer-links {
  color: #b3e3dd;
  font-size: 0.97rem;
  margin-bottom: 7px;
}
.footer-links a { color: #b3e3dd; transition: color .13s; }
.footer-links a:hover, .footer-links a:focus { color: #17a589; }
.footer-contact {
  margin-bottom: 10px;
  font-size: 0.96rem;
  color: #ebf5fb;
}
.footer-contact a {
  color: #17a589;
  text-decoration: none;
  transition: color .13s;
}
.footer-contact a:hover { color: #b3e3dd; }
.footer-copy {
  color: #607c94;
  font-size: 0.93rem;
  margin-top: 13px;
}
@media (max-width: 900px) {
  .footer-top { flex-direction: column; gap: 12px; }
}

/* --- TEXT SECTION CARDS --- */
.text-section {
  background: #273545;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 18px;
  color: #ebf5fb;
  box-shadow: 0 1px 7px #12766b0c;
  font-size: 1.07rem;
}
.text-section strong {
  color: #17a589;
  font-size: 1.08rem;
}
.text-section ul { margin-bottom: 0; }

/* --- MODALS & BANNERS --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: none;
  z-index: 300;
  pointer-events: all;
}
.cookie-content {
  background: #273545;
  color: #ebf5fb;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4.5px 32px #12766b39;
  padding: 22px 40px;
  margin: 0 0 0 0;
  max-width: 438px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.29s cubic-bezier(.46,.03,.52,1), opacity 0.26s;
}
.cookie-banner.hide .cookie-content {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.cookie-btn {
  padding: 8px 23px;
  border: none;
  border-radius: 20px;
  background: #17a589;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 1.5px 6px #12766b42;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 6px;
  transition: background 0.16s, color 0.14s;
}
.cookie-btn.secondary { background: #273545; color: #17a589; border: 1.5px solid #17a589; }
.cookie-btn:hover, .cookie-btn:focus { background: #12766b; color: #fff; }
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus { background: #223c51; color: #fff; }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,30,35,0.88);
  z-index: 310;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #222a31;
  color: #ebf5fb;
  border-radius: 16px;
  box-shadow: 0 3px 36px 0 #12766b57;
  padding: 50px 40px 32px 40px;
  max-width: 420px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  animation: modal-in .32s cubic-bezier(.29,.84,.15,1);
}
@keyframes modal-in {
  0% { opacity: 0; transform: scale(0.92) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 16px;
  background: none;
  border: none;
  color: #ebf5fb;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  opacity: 0.88;
}
.cookie-modal-close:hover { color: #17a589; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.cookie-category input[type='checkbox']:not(:disabled) {
  accent-color: #17a589;
}
.cookie-category label {
  font-size: 1rem;
  color: #17a589;
}
.cookie-category.essential label {
  color: #ccc;
  font-style: italic;
}

/* --- ANIMATIONS AND INTERACTIONS --- */
.card, .feature-grid li, .testimonial-card,
.cta-btn, .cookie-btn, .service-list li, .faq-list .text-section {
  transition: box-shadow 0.23s, transform 0.21s, background 0.155s, color 0.14s;
}
.cta-btn, .cookie-btn {
  transition: background 0.17s, color 0.15s, box-shadow 0.18s, transform 0.17s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* --- UTILITIES --- */
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 22px; }
.no-margin { margin: 0 !important; }

/* --- GENERAL RESPONSIVE --- */
@media (max-width:600px){
  .container { padding: 0 2vw; }
  .cookie-content { padding: 18px 10px; max-width: 98vw; }
  .cookie-modal { padding: 28px 10px 20px 10px; }
}

/* --- FUTURISTIC DECORATIVE NEON ACCENTS --- */
.cta-btn, .cookie-btn {
  box-shadow: 0 2px 18px #17a58958, 0 7px 24px #223c5118;
  position: relative;
}
.cta-btn::after, .cookie-btn::after {
  pointer-events: none;
  content: '';
  display: block;
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid #17a58964;
  opacity: 0.3;
  filter: blur(1.5px);
}
@media (max-width:400px){
  .cta-btn, .cookie-btn { padding-left: 11px; padding-right: 11px; font-size: 0.95rem; }
}

/* --- ACCESSIBILITY --- */
:focus-visible { outline:2px solid #17a589; outline-offset:2px; }

/* Hide images from text if needed for accessibility */
img[alt=''] { display:none; }

/* --- OVERRIDES FOR BRAND BAR --- */
::-webkit-scrollbar { width: 8px; background: #273545; }
::-webkit-scrollbar-thumb { background: #17a589; border-radius:6px; }

/* --- OVERRIDE FORM ELEMENTS --- */
input, select, textarea, button { font-family: inherit; }
input[type='text'], input[type='email'], textarea {
  border: 1.5px solid #223c51;
  background: #222a31;
  color: #fff;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 1.05rem;
  margin-bottom: 18px;
  transition: border .16s, box-shadow .17s;
}
input[type='text']:focus, input[type='email']:focus, textarea:focus {
  border: 1.5px solid #17a589;
  background: #273545;
  box-shadow: 0 2px 11px #12766b28;
  outline: none;
}
button, .btn {
  background: #17a589;
  color: #fff;
}

/* --- PRINT OPTIMIZED --- */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; color: #235974 !important; }
}
