/* =========================================================
   CSS RESET & NORMALIZATION
========================================================= */
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, menu, 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, 
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(27,183,123,0.12);
}
body {
  line-height: 1.6;
  background: #181C26;
  color: #F8F8F5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* =========================================================
   BRAND TYPOGRAPHY
========================================================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F8F8F5;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
p, li, dl, dd {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #dee2ef;
}
.subtitle {
  font-size: 1.18rem;
  color: #b2fff9;
}
strong {
  color: #1BB77B;
  font-weight: 700;
}

/* =========================================================
   LAYOUT CONTAINERS
========================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  background: rgba(44,61,91,0.7);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px 0 rgba(27,183,123,0.10);
  margin-bottom: 20px;
}

/* =========================================================
   HERO SECTION
========================================================= */
.hero {
  padding: 60px 0 48px 0;
  background: linear-gradient(135deg, #223150 70%, #1BB77B 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 18px;
}
.hero h1 {
  color: #F8F8F5;
  text-shadow: 0 4px 20px rgba(27,183,123,0.12);
}
.hero .cta-primary {
  margin-top: 8px;
}

/* =========================================================
   HEADER & NAVBAR
========================================================= */
header {
  background: #222f43;
  box-shadow: 0 2px 10px 0 rgba(44,61,91,0.08);
  position: relative;
  z-index: 80;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  min-height: 70px;
  gap: 30px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #b2fff9;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: #1BB77B;
  color: #181C26;
  text-shadow: 0 0 12px #1BB77B66;
}
header nav .cta-primary {
  background: linear-gradient(90deg, #1BB77B 80%, #46f5bb 100%);
  color: #181C26 !important;
  font-weight: 600;
  box-shadow: 0 4px 24px 0 rgba(27,183,123,0.20);
  border-radius: 20px;
  padding: 8px 26px;
  transition: box-shadow 0.2s;
  letter-spacing: 0.03em;
  margin-left: 12px;
}
header nav .cta-primary:hover,
header nav .cta-primary:focus {
  background: #b2fff9;
  color: #1BB77B !important;
  box-shadow: 0 2px 16px 0 #1BB77B44;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2rem;
  color: #b2fff9;
  padding: 8px 10px;
  border-radius: 10px;
  border: 2px solid #1BB77B;
  margin-left: 10px;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #1BB77B;
  color: #181C26;
  border-color: #1BB77B;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,43,63,0.98);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,1,.2,1);
  width: 100vw;
  height: 100vh;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  padding: 14px 18px;
  margin: 10px 0 0 16px;
  color: #1BB77B;
  background: none;
  border-radius: 10px;
  align-self: flex-start;
  border: 2px solid #1BB77B;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1BB77B;
  color: #181C26;
  border-color: #1BB77B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 28px;
  width: 100vw;
}
.mobile-nav a {
  color: #b2fff9;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.24rem;
  padding: 10px 0 10px 2px;
  border-radius: 6px;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1BB77B;
  color: #181C26;
}

/* =========================================================
   SECTIONS & SPACING
========================================================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #23314d;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(27,183,123,0.10);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 #1BB77B44;
}
.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: 18px;
  background: #f8f8f5;
  color: #1d223a;
  padding: 20px;
  border-radius: 20px;
  min-width: 230px;
  box-shadow: 0 2px 16px 0 rgba(44,61,91,0.09);
  margin-bottom: 20px;
  border-left: 5px solid #1BB77B;
  font-size: 1.12rem;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
 color: #181C26;
}
.testimonial-card span {
  color: #2C3D5B;
  font-size: 0.98rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-top: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 #18d19e44;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-grid > div {
  background: rgba(44,61,91,0.90);
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(27,183,123,0.09);
  padding: 22px 18px 16px 18px;
  flex: 1 1 210px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.15s, background 0.15s;
}
.feature-grid > div:hover {
  background: #303f5d;
  box-shadow: 0 4px 16px 0 #1BB77B33;
}
.feature-grid h3 {
  margin-bottom: 8px;
  color: #b2fff9;
  font-weight: 700;
}
.feature-grid img {
  width: 36px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px #1BB77B33) brightness(1.14);
}

.company-information, .location-map {
  margin-bottom: 18px;
}
.company-information a {
  color: #1BB77B;
  font-weight: bold;
  border-bottom: 1px dashed #1BB77B;
  transition: border 0.1s;
}
.company-information a:hover { border-bottom: 1px solid #18d19e; }

.location-map {
  background: rgba(44,61,91,0.7);
  border-radius: 13px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #aad3c6;
  font-size: 1rem;
}
.location-map img { width: 22px; margin-right: 7px; }


/* =========================================================
   TABLE STYLES (Pricing)
========================================================= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
  background: transparent;
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 18px;
  background: #23314d;
  color: #b2fff9;
}
.pricing-table th {
  background: #1BB77B;
  color: #181C26;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9px 9px 0 0;
}
.pricing-table td {
  border-radius: 0 0 9px 9px;
}
.pricing-table tr {
  margin-bottom: 10px;
}
.pricing-table tbody tr:hover td {
  background: #b2fff9;
  color: #182230;
  transition: background 0.16s, color 0.16s;
}

/* =========================================================
   BUTTONS & CTAs
========================================================= */
.cta-primary {
  display: inline-block;
  background: linear-gradient(90deg, #1BB77B 80%, #46f5bb 100%);
  color: #181C26;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 48px;
  box-shadow: 0 4px 20px 0 rgba(27,183,123,0.18);
  padding: 13px 38px;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  transition: background 0.17s, color 0.17s, transform 0.14s, box-shadow 0.15s;
  margin-top: 10px;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #b2fff9;
  color: #1BB77B;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px 0 #1BB77B99, 0 0 0 3px #1bb77b40;
}

button, .btn, .cta-primary {
  outline: none;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  background: #223150;
  box-shadow: 0 -2px 10px 0 rgba(44,61,91,0.08);
  color: #b2fff9;
  padding: 0 0 25px 0;
  margin-top: 36px;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
  font-size: 1rem;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #b2fff9;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0;
}
footer nav a:hover, footer nav a:focus {
  color: #1BB77B;
  text-decoration: underline;
}
footer .contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #aad3c6;
  font-size: 0.97rem;
  align-items: flex-start;
}
footer .contact-details img { width: 18px; margin-right: 9px; vertical-align: middle; }
footer .contact-details p { display: flex; align-items: center; gap: 6px; }


/* =========================================================
   DL for FAQ PAGE
========================================================= */
dl {
  margin-bottom: 24px;
}
dt {
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
  color: #1BB77B;
}
dd {
  margin-bottom: 20px;
  margin-left: 32px;
}

/* =========================================================
   UTILITY CLASSES & MICRO-INTERACTIONS
========================================================= */
::-webkit-input-placeholder { color: #9ee1c8; }
::-moz-placeholder          { color: #9ee1c8; }
:-ms-input-placeholder      { color: #9ee1c8; }
::placeholder              { color: #9ee1c8; }

@media (max-width: 1024px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.12rem; }
  section {
    padding: 28px 6vw;
    margin-bottom: 45px;
  }
  .hero {
    padding: 38px 0 24px 0;
    min-height: 220px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 13px 14px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .card, .feature-grid > div, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .content-wrapper, .text-section { padding: 18px 6vw; }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .company-information p, .location-map p {
    font-size: 0.93rem;
  }
}

@media (max-width: 500px) {
  .header .container {
    padding: 7px 1vw;
  }
  section {
    padding: 16px 0;
    margin-bottom: 28px;
  }
  .text-section, .content-wrapper {
    padding: 10px 2vw;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER & MODAL
========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: #fff;
  color: #1d223a;
  box-shadow: 0 -2px 22px 2px #22315081;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 30px;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  animation: banner-slidein 0.6s cubic-bezier(.66,1.63,.46,.98);
}
@keyframes banner-slidein {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 0%;
  min-width: 140px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #2C3D5B;
  color: #F8F8F5;
  border: none;
  outline: none;
  padding: 10px 24px;
  border-radius: 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.01em;
  transition: background 0.16s, color 0.1s, box-shadow 0.13s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1BB77B;
  color: #181C26;
  box-shadow: 0 2px 10px 0 #1BB77B44;
}
.cookie-btn.cookie-accept {
  background: #1BB77B;
  color: #1d223a;
}
.cookie-btn.cookie-accept:hover, .cookie-btn.cookie-accept:focus {
  background: #b2fff9;
  color: #1BB77B;
}

.cookie-btn.cookie-reject {
  background: #23314d;
  color: #fff;
  border: 1.5px solid #1BB77B;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #2C3D5B;
  border: 1.5px solid #2C3D5B;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #eee;
  color: #1BB77B;
  border-color: #1BB77B;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px 9vw 16px 9vw;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    gap: 10px;
    justify-content: flex-start;
  }
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #23314dab;
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.7,.3,.2,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #f8f8f5;
  color: #1d223a;
  padding: 36px 30px 28px 30px;
  border-radius: 22px;
  box-shadow: 0 2px 30px 2px #1BB77B33;
  max-width: 93vw;
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  animation: modal-slidein 0.36s cubic-bezier(.44,1.12,.26,.97);
}
@keyframes modal-slidein {
  0% { transform: scale(0.92) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #1BB77B;
  font-weight: 700;
  font-size: 1.13rem;
  margin-bottom: 2px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #1BB77B;
  margin: 0;
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.99rem;
}
.cookie-close {
  position: absolute;
  top: 17px;
  right: 24px;
  font-size: 1.7rem;
  background: none;
  color: #2C3D5B;
  border-radius: 6px;
  border: 2px solid #1BB77B;
  padding: 6px 10px;
  transition: background 0.1s, color 0.11s;
}
.cookie-close:hover, .cookie-close:focus {
  background: #1BB77B;
  color: #f8f8f5;
}

@media (max-width: 512px) {
  .cookie-modal {
    padding: 15px 6vw;
    max-width: 99vw;
  }
}

/* =========================================================
   NEON & FUTURISTIC EFFECTS (Details)
========================================================= */
.cta-primary, .feature-grid > div:before, .card:before {
  box-shadow: 0 0 18px 2px #1BB77B13, 0 0 2px 1px #46f5bb18;
}
.feature-grid > div:hover:before, .card:hover:before {
  filter: blur(1.5px) brightness(1.17) ;
}
input:focus, textarea:focus, select:focus {
  outline: 1.5px solid #1BB77B;
  background: #18302d08;
}
.cta-primary:active {
  transform: scale(0.98)
}

/* =========================================================
   FORM ELEMENTS (if used in contact/other, optional)
========================================================= */
input[type=text], input[type=email], input[type=tel], textarea, select {
  background: #19202d;
  color: #b2fff9;
  padding: 12px 16px;
  font-size: 1rem;
  border: 1.5px solid #242d42;
  border-radius: 14px;
  margin-bottom: 18px;
  transition: border-color 0.14s;
  width: 100%;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, textarea:focus, select:focus {
  border-color: #1BB77B;
}

/* =========================================================
   ACCESSIBILITY/FOCUS
========================================================= */
a:focus, .cta-primary:focus, button:focus {
  outline: 2px solid #1BB77B;
  outline-offset: 2.5px;
}

/* =========================================================
   ANIMATED MICRO-INTERACTIONS
========================================================= */
.cta-primary, .card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.2s, background 0.16s, color 0.18s, transform 0.16s, text-shadow 0.14s;
}
.feature-grid > div:hover, .card:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 6px 42px 3px #1BB77B51;
}

/* =========================
    PRINT/UI SAFETY
========================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section { padding: 0 !important; margin: 0 !important; }
}
