/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #0e1a16;
  color: #d9f2ec;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  outline: none;
}


/* BRAND FONTS ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #7fffd4;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 13px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
p, li, blockquote {
  color: #d9f2ec;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 12px;
}
strong {
  color: #7fffd4;
}

/* CONTAINER ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}

/* GLOBAL SECTION SPACING ----------------------------------------------- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width: 768px) {
  section, .section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 20px; }
}

/* HEADER --------------------------------------------------------------- */
header {
  width: 100%;
  background: #162d26;
  box-shadow: 0 4px 18px 0 rgba(0, 120, 80, 0.09);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.main-nav a {
  color: #d9f2ec;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
  padding: 8px 0 5px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #57ffb7;
  border-bottom: 2px solid #39e3a9;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #02613a, #39e3a9);
  color: #fff;
  padding: 11px 34px;
  border-radius: 27px;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 20px 0 #20473d70;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #39e3a9, #02613a 90%);
  box-shadow: 0 4px 26px 0 #21bb7d73;
  transform: translateY(-2px) scale(1.03);
}

/* HAMBURGER & MOBILE MENU --------------------------------------------- */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: #39e3a9;
    padding: 8px 10px 7px 10px;
    cursor: pointer;
    transition: color 0.14s, transform 0.12s;
    z-index: 1201;
  }
  .mobile-menu-toggle:active {
    color: #fff;
    transform: scale(0.95);
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #111d18cc;
  backdrop-filter: blur(6px);
  transform: translateX(100vw);
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  transition: transform 0.36s cubic-bezier(.69,-0.33,.31,1.38), opacity 0.18s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #57ffb7;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.13s, transform 0.13s;
  z-index: 1210;
}
.mobile-menu-close:hover { color: #fff; transform: scale(1.16); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 52px 0 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #d9f2ec;
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #39e3a9;
  border-bottom: 2px solid #39e3a9;
}

@media (max-width: 450px) {
  .mobile-nav { margin-left: 12px; }
}

/* HERO SECTION --------------------------------------------------------- */
.hero-section {
  background: linear-gradient(115deg, #20473d 8%, #02613a 61%, #10261e 97%);
  padding: 62px 0 60px 0;
  border-bottom: 2.7px solid #39e3a9;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.5rem;
}
.hero-section p {
  color: #d9f2ec;
  font-size: 1.18rem;
  margin-bottom: 24px;
  margin-top: 4px;
}
.hero-section .cta-btn {
  font-size: 1.18rem;
  margin-top: 20px;
}

/* FLEXBOX LAYOUTS ------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #182421;
  color: #d9f2ec;
  border-radius: 17px;
  box-shadow: 0 5px 38px 0 #047A5522;
  padding: 32px 27px;
  transition: box-shadow 0.17s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 44px 0 #57ffb73d;
  transform: scale(1.025);
  z-index: 2;
}
.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;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* FEATURES & SERVICES -------------------------------------------------- */
.feature-grid,.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-item {
  background: #1d322c;
  border: 1.5px solid #39e3a955;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 26px 24px 26px;
  min-width: 230px; max-width: 320px;
  box-shadow: 0 3px 22px 0 #2fffb630;
  transition: border 0.18s, box-shadow 0.17s, transform 0.11s;
}
.feature-item img {
  width: 38px; height: 38px;
  margin-bottom: 2px;
  filter: brightness(1.5) drop-shadow(0 0 9px #57ffb773);
}
.feature-item h3 { color: #39e3a9; font-size: 1.17rem; }
.feature-item:hover {
  border: 1.5px solid #17cf90;
  box-shadow: 0 8px 40px 0 #39e3a97b;
  transform: translateY(-5px);
  z-index: 2;
}

.service-card {
  background: #162d26;
  border-radius: 15px;
  box-shadow: 0 2.5px 18px 0 #0b684250;
  padding: 30px 22px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  min-width: 230px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.service-card h3 {
  color: #57ffb7;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.service-card .price {
  color: #39e3a9;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 2px;
}
.service-cta {
  border: none;
  border-radius: 18px;
  background: linear-gradient(90deg, #39e3a9, #02613a 85%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 9px 28px;
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 2px 13px 0 #21bb7d36;
  transition: background 0.19s, transform 0.13s;
}
.service-cta:hover, .service-cta:focus {
  background: linear-gradient(90deg, #02613a 10%, #39e3a9 80%);
  transform: translateY(-1.5px) scale(1.045);
  color: #fff;
}
.service-card:hover {
  box-shadow: 0 7px 40px 0 #39e3a96c;
  transform: translateY(-4px) scale(1.02);
}

@media (max-width: 900px) {
  .feature-grid, .services-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* TESTIMONIALS --------------------------------------------------------- */
.testimonials {
  background: #f6fffa;
  padding: 60px 0;
  border-top: 2px solid #39e3a9;
}
.testimonials h2 {
  color: #20473d;
  margin-bottom: 36px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #20473d;
  border-radius: 17px;
  box-shadow: 0 3px 38px 0 #21bb7d22;
  padding: 20px 30px;
  margin-bottom: 24px;
  max-width: 730px;
  width: 100%;
  transition: box-shadow 0.15s, transform 0.13s;
  border: 1.7px solid #39e3a921;
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  line-height: 1.6;
  color: #20473d;
  margin-bottom: 0;
  font-style: italic;
  text-shadow: 0 2px 10px #d9f2ec44;
}
.client-info {
  font-size: 1rem;
  color: #05816a;
}
.client-info .client-name {
  font-weight: bold;
  color: #057a55;
}
.rating {
  font-size: 1.35rem;
  color: #02613a;
}
.testimonial-card:hover {
  box-shadow: 0 8px 64px 0 #057a5534;
  transform: scale(1.018);
}

/* FINAL CTA ------------------------------------------------------------ */
.final-cta {
  background: linear-gradient(100deg, #02613a 45%, #20473d 100%);
  color: #fff;
  text-align: center;
  padding: 54px 0;
  border-radius: 0 0 25px 25px;
  border-top: 2.2px solid #39e3a9;
}
.final-cta h2 {
  color: #fff;
  font-size: 2.05rem;
  margin-bottom: 28px;
}
.final-cta .cta-btn {
  font-size: 1.2rem;
  margin-top: 18px;
}

/* BLOG STYLES ---------------------------------------------------------- */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.blog-highlight {
  background: #1a2e27;
  border-left: 5px solid #39e3a9;
  border-radius: 15px;
  box-shadow: 0 2.5px 23px 0 #21bb7d32;
  padding: 22px 22px;
  flex: 1 1 290px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.blog-highlight:hover {
  box-shadow: 0 10px 42px 0 #57ffb73d;
  transform: translateY(-4px) scale(1.018);
}
.read-more {
  color: #39e3a9;
  font-weight: bold;
  text-decoration: underline;
  margin-top: 9px;
  transition: color 0.18s;
}
.read-more:hover, .read-more:focus {
  color: #057a55;
}

.categories-list {
  margin-top: 40px;
}
.categories-list h4 {
  color: #39e3a9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.10rem;
  margin-bottom: 9px;
}
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.categories-list li {
  background: #d9f2ec;
  color: #20473d;
  border-radius: 13px;
  padding: 6px 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 1.7px 6px #057a553c;
}

/* FOOTER --------------------------------------------------------------- */
footer {
  background: #162d26;
  color: #d9f2ec;
  border-top: 2.5px solid #02613a;
  padding: 40px 0 25px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a {
  color: #7fffd4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.14s;
  padding-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #39e3a9;
}
.footer-contact {
  text-align: center;
  font-size: 0.98rem;
  color: #b0ded0;
  margin-bottom: 6px;
  margin-top: 8px;
}
footer p {
  text-align: center;
  font-size: 0.98rem;
  color: #567a70;
}

/* TEXT BLOCKS FOR ABOUT/TEAM/LEGAL ETC. -------------------------------- */
.text-section {
  margin-bottom: 20px;
}
.text-section h3 {
  color: #39e3a9;
  font-size: 1.12rem;
  margin-bottom: 7px;
}
.text-section ul, ul {
  padding-left: 16px;
  margin-top: 10px;
  margin-bottom: 14px;
}
.text-section li, li {
  font-size: 1rem;
  margin-bottom: 9px;
  color: #84e5bc;
}
ul li strong { color: #39e3a9; }
.about-list li {margin-bottom: 10px;}

/* CONTACT SECTION ------------------------------------------------------ */
.contact-details {
  background: #1d322c;
  border-radius: 15px;
  padding: 22px 24px;
  margin-bottom: 19px;
  color: #d9f2ec;
  box-shadow: 0 2px 12px #057a5512;
}
.contact-details p { margin-bottom: 9px; }
.contact-details a {
  color: #39e3a9;
  text-decoration: underline;
  transition: color 0.14s;
}
.contact-details a:hover, .contact-details a:focus { color: #17cf90; }

.info-message {
  background: #fff4;
  color: #39e3a9;
  border-left: 5px solid #39e3a9;
  border-radius: 13px;
  padding: 11px 24px;
  font-size: 1rem;
}
.next-steps-info {
  margin: 15px 0 12px 0;
  font-size: 1.04rem;
  color: #84e5bc;
}

/* RESPONSIVENESS ------------------------------------------------------- */
@media (max-width: 850px) {
  .container {
    max-width: 96vw;
  }
  .feature-item, .service-card, .blog-highlight {
    min-width: 90vw;
    max-width: 100%;
  }
  .testimonial-card {
    max-width: 97vw;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .hero-section { padding-top: 36px; padding-bottom: 36px; }
  .final-cta { padding: 28px 0; border-radius: 0 0 11px 11px; }
  .section, section { padding: 22px 4px; margin-bottom: 19px; }
  .content-wrapper { gap: 14px; }
  .feature-item, .service-card, .blog-highlight {
    padding: 16px 11px;
    min-width: 95vw;
  }
  .testimonial-card {
    padding: 16px 10px;
  }
}

/* SHADOWS, FOCUS & MICRO-INTERACTIONS ---------------------------------- */
a:focus, button:focus, .cta-btn:focus, .service-cta:focus {
  outline: 2.5px solid #39e3a9a6;
  outline-offset: 2.5px;
}
blockquote:before {
  content: '\201C';
  color: #39e3a9;
  font-size: 2.3em;
  vertical-align: -0.6em;
  line-height: 0.1em;
  margin-right: 0.2em;
  opacity: 0.65;
}
blockquote {
  position: relative;
}
/* SCROLLBAR CUSTOMIZATION ---------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #172922;
}
::-webkit-scrollbar-thumb {
  background: #39e3a9;
  border-radius: 8px;
}

/* COOKIE CONSENT BANNER & MODAL ---------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #131f1b;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 20px 8px;
  box-shadow: 0 -2px 26px #39e3a930;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 1500;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(.69,-0.33,.31,1.36), opacity 0.22s;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #d9f2ec;
}
.cookie-btn,
.cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 16px;
  padding: 10px 18px;
  margin-right: 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px 0 #57ffb733;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.12s;
}
.cookie-btn.accept {
  background: #39e3a9;
  color: #112921;
}
.cookie-btn.reject {
  background: #bc400b;
  color: #fff;
}
.cookie-settings-btn {
  background: #223E33;
  color: #39e3a9;
}
.cookie-btn:hover, .cookie-settings-btn:hover, .cookie-btn:focus, .cookie-settings-btn:focus {
  background: #02613a;
  color: #fff;
  transform: scale(1.07);
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #111d18bb;
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-backdrop.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #20473d;
  color: #fff;
  padding: 38px 32px 26px 32px;
  border-radius: 18px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 7px 54px 0 #21bb7d34;
  position: relative;
  z-index: 1610;
  display: flex;
  flex-direction: column;
  gap: 17px;
  opacity: 0;
  transform: translateY(-50px) scale(0.95);
  pointer-events: none;
  transition: opacity 0.22s, transform 0.27s;
}
.cookie-modal-backdrop.visible .cookie-modal {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.cookie-modal h3 {
  color: #7fffd4;
  font-size: 1.24rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #39e3a9;
  width: 20px; height: 20px;
}
.cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-close {
  background: none;
  border: none;
  position: absolute;
  top: 17px;
  right: 20px;
  color: #7fffd4;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.15s, transform 0.12s;
}
.cookie-close:hover { color: #fff; transform: scale(1.13); }

@media (max-width: 500px) {
  .cookie-modal { padding: 19px 4px 12px 9px; }
  .cookie-banner { flex-direction: column; gap: 12px; }
}

/* UTILITY -------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 18px; }
.fade-in {
  animation: fade-in 0.7s cubic-bezier(.61,-0.24,.31,1.24);
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* END CSS */
