/* ----------- 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,
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F5F6FA;
  color: #233137;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #27B278;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #233137;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  padding-left: 2em;
}
strong {
  font-weight: 700;
}

/* ----------- TYPOGRAPHY (Geometric & Structured) ----------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #233137;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  margin-bottom: 10px;
}
.section ul,
.section ol {
  margin-bottom: 16px;
}

/* ----------- CONTAINER & STRUCTURED GRID ----------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 36px;
  }
}

/* ----------- HEADER & NAVIGATION ----------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(35,49,55,0.08);
  padding: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-height: 72px;
  gap: 32px;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #27B27812;
  color: #27B278;
}
header .btn-primary {
  margin-left: 30px;
}
@media (max-width: 992px) {
  header .container {
    gap: 20px;
  }
  header nav {
    gap: 16px;
  }
  header .btn-primary {
    margin-left: 16px;
    padding-left: 18px;
    padding-right: 18px;
  }
}
/* Hide navigation on mobile, show burger */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
}

/* ----------- MOBILE MENU (Burger, Overlay, Animation) ----------- */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 2022;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #233137;
  border: 2px solid #27B278;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(35,49,55,0.1);
  transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #27B278;
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #233137F5;
  z-index: 2100;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.6,.05,.28,.91), opacity 0.2s;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: #27B278;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 2102;
  box-shadow: 0 2px 10px #27B27855;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1e8063;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-left: 36px;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #27B278;
  border-bottom: 2px solid #27B278;
  background: none;
}

/* ----------- BUTTONS ----------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #27B278;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 #27B27822;
  letter-spacing: 0.6px;
  text-transform: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1e8063;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px #27B27844;
  color: #FFF;
}

/* ----------- HERO SECTION ----------- */
.hero {
  background: #233137;
  color: #fff;
  border-radius: 0 0 52px 52px;
  box-shadow: 0 16px 60px -24px #23313744 inset;
  padding: 54px 0 68px 0;
  margin-bottom: 48px;
}
.hero .container,
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero h1 {
  font-size: 2.85rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.17rem;
  max-width: 560px;
}
.hero .btn-primary {
  margin-top: 12px;
  font-size: 1.12rem;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 28px 28px;
    padding: 40px 0 36px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ----------- FEATURES GRID & SERVICES ----------- */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.features-grid > div,
.services-list > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 20px 0 #23313714;
  border: 2px solid #E4E8F0;
  min-width: 255px;
  flex: 1 1 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 22px 26px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: border-color 0.17s, box-shadow 0.22s, transform 0.15s;
}
.features-grid > div:hover,
.services-list > div:hover {
  border-color: #27B278;
  box-shadow: 0 8px 32px -8px #27B27833, 0 1px 2px 0 #23313720;
  transform: translateY(-5px) scale(1.03);
}
.features-grid img,
.services-list img {
  width: 44px;
  height: 44px;
}
.features-grid h3,
.services-list h2 {
  font-size: 1.15rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #233137;
  margin-bottom: 4px;
  margin-top: 4px;
}
.features-grid p,
.services-list p {
  margin-bottom: 7px;
  color: #263238CC;
  font-weight: 400;
}
.service-price {
  margin-top: 2px;
  font-size: 1rem;
  color: #27B278;
  font-weight: 700;
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  .features-grid, .services-list {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .features-grid > div, .services-list > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
  }
}

/* ----------- CTA SECTION ----------- */
.cta-section {
  background: #27B278;
  border-radius: 32px;
  color: #fff;
  padding-top: 45px;
  padding-bottom: 45px;
  margin-bottom: 0;
  box-shadow: 0 4px 24px #27B27819;
  transition: background 0.2s;
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 14px;
}
.cta-section p {
  color: #F5F6FA;
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.cta-section .btn-primary {
  background: #fff;
  color: #27B278;
  box-shadow: 0 2px 8px #fff33;
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #E4E8F0;
  color: #1e8063;
}

/* ----------- INFO CARDS/CONTENT ----------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px #23313720;
  border: 2px solid #E4E8F0;
  position: relative;
  padding: 28px 20px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.15s, box-shadow 0.18s, transform 0.13s;
}
.card:hover {
  border-color: #27B278;
  box-shadow: 0 8px 24px -8px #27B2782e;
  transform: translateY(-5px) scale(1.02);
}

/* ----------- FLEX LAYOUTS ----------- */
.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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

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

/* ----------- TESTIMONIALS & REVIEW CARDS ----------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2px solid #27B27833;
  box-shadow: 0 3px 18px #27B27822;
  border-radius: 18px;
  padding: 20px 32px;
  min-width: 250px;
  max-width: 390px;
  margin-bottom: 24px;
  color: #233137;
  transition: border-color 0.17s, box-shadow 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  border-color: #27B278;
  box-shadow: 0 12px 32px -10px #27B2781e;
  transform: scale(1.025);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #233137;
  font-weight: 500;
  margin-bottom: 7px;
}
.testimonial-card strong {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #27B278;
  margin-left: 10px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    width: 100%;
    padding: 18px 8vw;
  }
}

/* Distinct section for customer logos */
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0 0 0;
}
.logos img {
  height: 48px;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 8px;
  transition: transform 0.16s;
}
.logos img:hover {
  transform: scale(1.09) rotate(-2deg);
}
@media (max-width: 600px) {
  .logos {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
  .logos img {
    height: 38px;
    max-width: 98vw;
  }
}

/* ----------- USP & CASES ----------- */
.usp-highlights, .case-briefs, .project-benefits, .client-industries {
  background: #2331370f;
  border-radius: 13px;
  padding: 20px 28px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.usp-highlights h3, .case-briefs h3, .client-industries h3, .project-benefits h3 {
  font-size: 1.2rem;
  color: #27B278;
  margin-bottom: 5px;
}

/* ----------- FAQ ACCORDION ----------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.faq-accordion > div {
  background: #fff;
  border: 2px solid #E4E8F0;
  border-radius: 9px;
  padding: 20px 24px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px #23313710;
  transition: border-color 0.13s, box-shadow 0.13s;
}
.faq-accordion > div:hover {
  border-color: #27B278;
  box-shadow: 0 6px 24px #27B27818;
}
.faq-accordion strong {
  cursor: pointer;
  font-size: 1.09rem;
}

/* ----------- CONTACT DETAILS ----------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #233137;
  background: #fff;
  border-radius: 9px;
  padding: 13px 20px;
  box-shadow: 0 2px 12px #23313710;
  font-size: 1.07rem;
}
.contact-details img {
  width: 28px;
  height: 28px;
}
.map-embed {
  min-height: 250px;
  background: #E4E8F0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
.map-placeholder {
  color: #23313799;
  font-size: 1.1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ----------- FOOTER ----------- */
footer {
  background: #233137;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 18px 18px 18px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-top nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-top nav a {
  color: #F5F6FA;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.14s;
}
.footer-top nav a:hover {
  color: #27B278;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1.5px solid #31464f;
  padding-top: 14px;
}
.footer-bottom nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom nav a {
  color: #E4E8F0;
  font-size: 0.95rem;
  transition: color 0.14s;
}
.footer-bottom nav a:hover {
  color: #27B278;
}
.footer-contact {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  opacity: 0.89;
}
.footer-copy {
  font-size: 0.96rem;
  color: #A9B7BF;
  margin-top: 10px;
  letter-spacing: 0.1px;
}
@media (max-width: 768px) {
  .footer-top, .footer-bottom, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ----------- COOKIE CONSENT BANNER ----------- */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #233137;
  color: #fff;
  z-index: 2500;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 16px 22px 16px;
  transition: transform 0.35s cubic-bezier(.6,.05,.28,.91), opacity 0.27s;
  box-shadow: 0 -3px 34px #23313733;
  border-radius: 24px 24px 0 0;
  opacity: 0;
  transform: translateY(110%);
}
#cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
}
#cookie-banner .cookie-content {
  flex: 1 1 0;
  margin-right: 26px;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.2px;
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
#cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #27B278;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 9px;
  padding: 11px 18px;
  box-shadow: 0 2px 6px #27B27833;
  margin: 0;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.13s, transform 0.13s;
}
#cookie-banner button:hover, #cookie-banner button:focus {
  background: #1e8063;
  color: #fff;
  transform: scale(1.04);
}
#cookie-banner .cookie-settings-btn {
  background: #fff;
  color: #233137;
  border: 2px solid #27B278;
}
#cookie-banner .cookie-settings-btn:hover, #cookie-banner .cookie-settings-btn:focus {
  background: #E4E8F0;
  color: #27B278;
}
@media (max-width: 600px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 7px 14px 7px;
    border-radius: 14px 14px 0 0;
  }
  #cookie-banner .cookie-content {
    margin-bottom: 16px;
    margin-right: 0;
  }
  #cookie-banner .cookie-buttons {
    gap: 9px;
  }
}

/* COOKIE SETTINGS MODAL */
#cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #233137F0;
  z-index: 2550;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.16s ease;
}
#cookie-modal.active {
  display: flex;
}
#cookie-modal .modal-box {
  background: #fff;
  color: #233137;
  border-radius: 16px;
  max-width: 420px;
  width: 92vw;
  padding: 44px 28px 28px 28px;
  box-shadow: 0 12px 44px #23313740;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
#cookie-modal .modal-box h2 {
  font-size: 1.28rem;
  color: #27B278;
  margin-bottom: 14px;
}
#cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}
#cookie-modal .category label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
}
#cookie-modal .toggle {
  width: 44px;
  height: 26px;
  background: #E4E8F0;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
#cookie-modal .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
#cookie-modal .toggle span {
  position: absolute;
  left: 4px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #27B278;
  border-radius: 50%;
  transition: left 0.15s;
}
#cookie-modal .toggle input:checked + span {
  left: 20px;
  background: #1e8063;
}
#cookie-modal .toggle.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #27B278;
  cursor: pointer;
  z-index: 2560;
  transition: color 0.15s;
}
#cookie-modal .modal-close:hover {
  color: #1e8063;
}
@media (max-width: 450px) {
  #cookie-modal .modal-box {
    padding: 37px 11px 20px 11px;
    max-width: 98vw;
  }
}
@keyframes fadeIn {
  from {opacity: 0; } to {opacity: 1; }
}

/* ----------- ACCESSIBILITY: FOCUS ----------- */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #27B278 !important;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ----------- MISC ----------- */
::-webkit-scrollbar {
  width: 8px;
  background: #E4E8F0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #27B27833;
  border-radius: 8px;
}

/* ----------- PRINT ----------- */
@media print {
  header, footer, .mobile-menu, #cookie-banner, #cookie-modal {
    display: none !important;
  }
  main, .container {
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
  }
}

/* --------------- END --------------- */
