/* ----------------------------------------------------
   CSS RESET & NORMALIZATION
---------------------------------------------------- */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, a,
ul, ol, li, table, tr, th, td, blockquote, pre, code,
address, section, article, aside, nav, header, footer,
img, figure, figcaption, main, button, input, textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: none;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #233D4D;
  background: #fff;
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #17BEBB;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s cubic-bezier(.7,0,.3,1);
}
a:hover, a:focus {
  color: #233D4D;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  margin-bottom: 16px;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #233D4D;
  line-height: 1.13;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.75rem;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -1.3px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
p {
  margin-bottom: 14px;
  color: #233D4D;
}
strong {
  font-weight: 700;
}
.subtitle {
  color: #17BEBB;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.tagline {
  font-size: 1rem;
  color: #17BEBB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 18px;
}
.text-center {
  text-align: center;
}
.text-section {
  padding: 12px 0;
}
address {
  font-style: normal;
  margin-bottom: 20px;
  color: #233D4D;
}

/* ----------------------------------------------------
   FLEXBOX LAYOUT UTILITIES
---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #E8E9EB;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(35,61,77,0.09);
  margin-bottom: 20px;
  min-width: 0;
  flex: 1 1 250px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(35,61,77,0.21);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-grid > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(23,190,187,0.09);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  min-width: 0;
  border: solid 2px #E8E9EB;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 32px rgba(35,61,77,0.16);
  border-color: #17BEBB;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(23,190,187,0.07);
  padding: 22px 20px;
  min-width: 0;
  margin-bottom: 20px;
  border: solid 1.7px #E8E9EB;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.service-list > div:hover {
  border-color: #17BEBB;
}
.service-card {
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(23,190,187,0.15);
  background: #fff;
  padding: 25px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #17BEBB;
  border-left: 3px solid #17BEBB;
  padding-left: 12px;
}

/* ----------------------------------------------------
   MAIN NAVIGATION & HEADER
---------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  box-shadow: 0 3px 22px rgba(35,61,77,0.04);
  position: relative;
  z-index: 101;
}
header img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #233D4D;
  font-size: 1rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.18s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 3px;
  width: 0;
  background: #17BEBB;
  transition: width 0.2s cubic-bezier(.7,0,.3,1);
  border-radius: 2px;
  margin: 2px auto 0 auto;
}
.main-nav a:hover, .main-nav a:focus {
  color: #17BEBB;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 80%;
}
header .btn-primary {
  margin-left: 40px;
}
.mobile-menu-toggle {
  display: none;
  background: #17BEBB;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  margin-left: 28px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover {
  background: #233D4D;
}

/* ----------------------------------------------------
   MOBILE MENU OVERLAY
---------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,61,77,0.94);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 10vw;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 22px 0 18px 0;
  align-self: flex-end;
  cursor: pointer;
  opacity: 0.9;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #17BEBB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  margin-top: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
  text-align: right;
  background: none;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #17BEBB;
  color: #233D4D;
}

/* ----------------------------------------------------
   BUTTONS & CTA
---------------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 12px;
  padding: 12px 32px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  outline: none;
  box-shadow: 0 3px 18px rgba(23,190,187,0.07);
  transition: background 0.19s, color 0.13s, box-shadow 0.15s, transform 0.17s;
  text-align: center;
}
.btn-primary {
  background: #17BEBB;
  color: #fff;
  border: 2.5px solid #17BEBB;
}
.btn-primary:hover, .btn-primary:focus {
  background: #233D4D;
  color: #fff;
  border-color: #233D4D;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 32px rgba(23,190,187,0.13);
}
.btn-secondary {
  background: #fff;
  color: #17BEBB;
  border: 2px solid #17BEBB;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #17BEBB;
  color: #fff;
}

/* ----------------------------------------------------
   TABLES & FAQ
---------------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 16px 10px;
  text-align: left;
}
.pricing-table thead tr {
  background: #233D4D;
  color: #fff;
}
.pricing-table tbody tr:nth-child(even) {
  background: #E8E9EB;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #fff;
}
.faq-group {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
}
.faq-group > div {
  background: #E8E9EB;
  border-radius: 12px;
  padding: 22px 18px;
  min-width: 0;
  flex: 1 1 230px;
  box-shadow: 0 1.5px 9px rgba(35,61,77,0.07);
  margin-bottom: 10px;
}
.faq-group strong {
  font-size: 1.08rem;
  color: #233D4D;
}

/* ----------------------------------------------------
   TESTIMONIALS
---------------------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #233D4D;
  margin-bottom: 10px;
  quotes: "\201C" "\201D";
}
.testimonial-card p {
  color: #233D4D;
  font-size: 0.98rem;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card strong {
  color: #17BEBB;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  background: #233D4D;
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.footer-nav a {
  color: #17BEBB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px 0;
}
.footer-brand img {
  width: 42px;
  height: auto;
}
.footer-brand small {
  color: #E8E9EB;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ----------------------------------------------------
   NEWSLETTER SIGNUP
---------------------------------------------------- */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.newsletter-signup p {
  font-size: 1.08rem;
  text-align: center;
  color: #233D4D;
}

/* ----------------------------------------------------
   SPACING & VISUAL SECTIONS
---------------------------------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 900px) {
  section {
    padding: 28px 10px;
    margin-bottom: 44px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 25px 0px;
    margin-bottom: 36px;
  }
}

.container, .content-wrapper, .newsletter-signup,
.feature-grid, .testimonial-slider, .card-container,
.service-list, .content-grid, .faq-group {
  /* Mobile vertical stacking */
  flex-direction: column;
}

/* ----------------------------------------------------
   RESPONSIVE FLEXBOX ADJUSTMENTS
---------------------------------------------------- */
@media (min-width: 801px) {
  .feature-grid, .testimonial-slider, .faq-group, .service-list, .card-container, .content-grid {
    flex-direction: row;
  }
  .feature-grid {
    justify-content: space-between;
  }
  .testimonial-slider {
    justify-content: center;
  }
  .faq-group {
    justify-content: flex-start;
  }
  .service-list {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .content-grid, .feature-grid, .testimonial-slider, .service-list, .faq-group, .card-container {
    flex-direction: column;
  }
  .feature-grid > div, .testimonial-card, .service-list > div, .service-card, .faq-group > div {
    width: 100%;
    min-width: 0;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .btn-primary {
    display: none;
  }
}
@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
  header .btn-primary {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .container {
    padding: 0 12px;
  }
}

/* ----------------------------------------------------
   COOKIE CONSENT BANNER
---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #233D4D;
  color: #fff;
  padding: 16px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 12000;
  box-shadow: 0 -2px 14px rgba(35,61,77,0.17);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s, transform 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 9px;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  padding: 10px 24px;
  margin: 0;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: background .15s, color .13s, box-shadow .13s;
  box-shadow: 0 1.5px 10px rgba(23,190,187,0.07);
}
.cookie-btn.accept {
  background: #17BEBB;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #19a5a5;
}
.cookie-btn.reject {
  background: #fff;
  color: #233D4D;
  border: 2px solid #17BEBB;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #E8E9EB;
}
.cookie-btn.settings {
  background: transparent;
  color: #17BEBB;
  border: 2px solid #17BEBB;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #17BEBB;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 38px rgba(35,61,77,0.26);
  z-index: 13000;
  min-width: 340px;
  max-width: calc(98vw - 30px);
  padding: 35px 32px 26px 32px;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.32s, transform 0.3s;
  opacity: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cookie-modal.hide {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  pointer-events: none;
}
.cookie-modal h2 {
  color: #233D4D;
}
.cookie-modal p {
  color: #233D4D;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 18px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 12px;
  background: #E8E9EB;
  border-radius: 9px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #17BEBB;
  position: relative;
  border: 0;
  transition: background 0.17s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle[aria-checked="false"] {
  background: #C6CBCF;
}
.cookie-toggle .toggle-dot {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.17s;
}
.cookie-toggle[aria-checked="true"] .toggle-dot {
  left: 18px;
}
.cookie-category[data-essential='true'] .cookie-toggle {
  background: #E8E9EB;
  cursor: not-allowed;
  box-shadow: none;
}
.cookie-category[data-essential='true'] label {
  color: #adafb1;
}
.cookie-modal .cookie-buttons {
  margin-top: 10px;
}

/* ----------------------------------------------------
   MISCELLANEOUS & GEOMETRIC DECORATIVE SHAPES
---------------------------------------------------- */
.feature-grid > div:before {
  /* Example geometric dot accent */
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #17BEBB;
  margin-bottom: 16px;
  opacity: 0.15;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: unset;
    padding: 24px 8px 16px 8px;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* ----------------------------------------------------
   SCROLLBAR & SELECTION
---------------------------------------------------- */
::selection {
  background: #17BEBB;
  color: #fff;
}
::-webkit-scrollbar {
  width: 10px;
  background: #E8E9EB;
}
::-webkit-scrollbar-thumb {
  background: #17BEBB;
  border-radius: 8px;
}

/* ----------------------------------------------------
   FORMS & INPUTS (if present)
---------------------------------------------------- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #17BEBB;
  border-radius: 9px;
  padding: 12px 12px;
  outline: none;
  background: #fff;
  color: #233D4D;
  margin-bottom: 20px;
  transition: border .14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #233D4D;
}
button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px dashed #17BEBB;
  outline-offset: 1.5px;
}

/* ----------------------------------------------------
   ANIMATIONS & MICRO-INTERACTIONS
---------------------------------------------------- */
.btn-primary, .btn-secondary, .card, .feature-grid > div, .testimonial-card, .service-card {
  transition: box-shadow 0.16s cubic-bezier(.7,0,.3,1), transform 0.15s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97);
}
@media (hover: hover) {
  .feature-grid > div:hover, .testimonial-card:hover, .service-card:hover {
    transform: translateY(-3px) scale(1.014);
    box-shadow: 0 7.5px 32px rgba(35,61,77,0.19);
  }
}

/* ----------------------------------------------------
   GEOMETRIC SHAPE EXAMPLES (optional accents)
---------------------------------------------------- */
.section {
  position: relative;
  overflow: visible;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: -32px; bottom: -32px;
  width: 48px; height: 48px;
  background: #17BEBB;
  opacity: 0.07;
  border-radius: 16px;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 700px) {
  .section:after {
    right: -14px; bottom: -18px;
    width: 24px; height: 24px;
  }
}

/* ----------------------------------------------------
   TYPOGRAPHIC SCALE
---------------------------------------------------- */
html {
  font-size: 16px;
}
@media (min-width: 1100px) {
  html {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 15px;
  }
}

/* ----------------------------------------------------
   END Lorban Automation CSS
---------------------------------------------------- */
