/* === CSS RESET & NORMALIZE === */
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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background-color: #182231;
  color: #F6F7EB;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #4DA746;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #42ffa6;
  outline: none;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #213142;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(0,23,50,0.10), 0 1.5px 8px 0 #3dd3f7 inset;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}
/* === TYPOGRAPHY === */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 48px;
  letter-spacing: -1px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #F6F7EB;
  text-shadow: 0 2px 32px #21314266;
}
@media (max-width: 768px) {
  h1, .h1 {
    font-size: 32px;
  }
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -.5px;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 1px 12px #33436622;
}
@media (max-width: 768px) {
  h2, .h2 {
    font-size: 24px;
  }
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.2px;
  margin-bottom: 12px;
  color: #42ffa6;
}
@media (max-width: 768px) {
  h3, .h3 {
    font-size: 17px;
  }
}
h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #4DA746;
  margin-bottom: 8px;
}
p, .subheadline {
  font-size: 18px;
  color: #B9D0D2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  p, .subheadline {
    font-size: 16px;
  }
}
strong {
  color: #F6F7EB;
  font-weight: bold;
}
blockquote {
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: #182231;
  background: #F6F7EB;
  border-left: 4px solid #4DA746;
  padding: 24px 28px 14px 22px;
  border-radius: 12px;
  box-shadow: 0 1px 8px #0003;
  margin-bottom: 6px;
  margin-top: 0;
}
blockquote footer {
  font-style: normal;
  font-size: 15px;
  color: #213142;
  margin-top: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.78;
}
/* === CONTAINERS AND WRAPPERS === */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 2px;
  }
}
/* === FLEXBOX LAYOUT UTILITIES === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #232F44;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #18223122, 0 0.5px 3.5px 0 #42ffa635 inset;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
  padding: 24px;
  min-width: 280px;
  flex: 1 1 320px;
}
.card:hover {
  transform: translateY(-5px) scale(1.022);
  box-shadow: 0 10px 28px 0 #42ffa640, 0 1.5px 8px 0 #4DA74655 inset;
}
.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;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F7EB;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0003;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px;
    margin-bottom: 16px;
    border-radius: 11px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* === HERO CTA & BUTTONS === */
.cta,
button,
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #182231;
  background: #42ffa6;
  border: none;
  outline: none;
  border-radius: 8px;
  padding: 13px 28px;
  cursor: pointer;
  box-shadow: 0 1.5px 16px #4DA74655, 0 0.5px 3.5px 0 #42ffa635 inset;
  transition: background 0.15s, color 0.18s, box-shadow 0.17s, transform 0.15s;
  text-transform: none;
  letter-spacing: .03em;
  margin-top: 12px;
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}
.cta:hover,button:hover,.mobile-menu-toggle:hover,.mobile-menu-close:hover {
  background: #21ffb0;
  color: #182231;
  box-shadow: 0 2.5px 22px #00e09c66, 0 6px 18px #0002 inset;
  transform: translateY(-2px) scale(1.025);
}
button:focus, .cta:focus {
  outline: 2px solid #4DA746;
  outline-offset: 3px;
}
/* === MAIN NAVIGATION === */
header {
  background: #182231;
  box-shadow: 0 1px 12px #10213455;
  position: sticky;
  top: 0;
  z-index: 12;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  padding-bottom: 13px;
  gap: 16px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #F6F7EB;
  border-radius: 6px;
  padding: 6px 13px;
  position: relative;
  transition: color .17s, background .17s;
}
.main-nav a:hover,.main-nav a:focus {
  color: #4DA746;
  background: #232F44;
  outline: none;
}
.main-nav .cta {
  background: #4DA746;
  color: #182231;
  padding: 10px 23px;
  margin-left: 22px;
  box-shadow: 0 2px 10px #4DA74644;
  border-radius: 22px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  transition: background 0.13s, color 0.15s;
}
.main-nav .cta:hover {
  background: #42ffa6;
  color: #182231;
}
.mobile-menu-toggle {
  display: none;
  background: #42ffa6;
  color: #213142;
  border-radius: 7px;
  height: 46px;
  width: 46px;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  z-index: 31;
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* MOBILE SLIDE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(24,34,49, 0.94);
  backdrop-filter: blur(6px);
  z-index: 1001;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.61,0.01,0.5,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 24px;
  padding-right: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 28px;
  background: #ff4176;
  color: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px #a6002a44;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100vw;
  max-width: 340px;
  margin-right: 0;
  margin-left: auto;
  background: transparent;
  padding: 9px 2px 24px 2px;
}
.mobile-nav a {
  color: #F6F7EB;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  padding: 13px 14px;
  border-radius: 10px;
  transition: background .14s, color .16s;
  margin-bottom: 2px;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: #232F44;
  color: #42ffa6;
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}
/* === FEATURE, SERVICE, PROJECT GRIDS === */
.feature-grid,
.service-grid,
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  margin-bottom: 14px;
  justify-content: space-between;
}
.feature-grid li, .service-grid li, .project-grid li {
  background: #232F44;
  border-radius: 17px;
  box-shadow: 0 1.5px 10px #21b7a655;
  padding: 24px 20px;
  flex: 1 1 270px;
  min-width: 240px;
  margin-bottom: 0;
  transition: box-shadow .17s, transform .16s;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.feature-grid li:hover, .service-grid li:hover, .project-grid li:hover {
  box-shadow: 0 3px 18px #42ffa650, 0 2px 6px #113;
  transform: translateY(-2.5px) scale(1.018);
}
.feature-grid img, .service-grid img, .project-grid img {
  width: 47px;
  height: 47px;
  margin-bottom: 7px;
}
.service-price {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  background: #42ffa6;
  color: #182231;
  border-radius: 6px;
  padding: 6px 17px;
  margin-top: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 1px 8px #1ee7c744;
}
@media (max-width: 900px) {
  .feature-grid,
  .service-grid,
  .project-grid {
    gap: 16px;
  }
  .feature-grid li, .service-grid li, .project-grid li {
    min-width: 170px;
    padding: 14px 9px;
  }
}
@media (max-width: 700px) {
  .feature-grid,
  .service-grid,
  .project-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li,
  .service-grid li,
  .project-grid li {
    min-width: 0;
    width: 100%;
  }
}
.key-partner-logos {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 14px;
}
.key-partner-logos img {
  height: 36px;
  width: auto;
  opacity: 0.82;
}
/* === FOOTER === */
footer {
  background: #182231;
  padding: 0;
  margin-top: 42px;
  border-top: 2px solid #4DA74633;
}
footer .container {
  padding: 23px 0 0 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 42px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  height: 55px;
  margin-bottom: 18px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a, .legal-nav a {
  font-size: 16px;
  color: #F6F7EB;
  opacity: .81;
  transition: color .13s, opacity .13s;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: #42ffa6;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact p {
  font-size: 14px;
  color: #B9D0D2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact img {
  height: 19px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
  .footer-brand {
    margin-bottom: 18px;
  }
}
/* === MICRO-INTERACTIONS & ANIMATIONS === */
.cta, button, .mobile-menu-toggle, .mobile-menu-close, .service-grid li, .feature-grid li, .card, .testimonial-card {
  transition: box-shadow 0.18s, background 0.17s, color 0.16s, transform 0.13s;
}
.cta:active, button:active {
  transform: scale(0.98);
}
/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1002;
  background: #232F44;
  color: #F6F7EB;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -5px 40px #42ffa650, 0 3px 15px #0007;
  padding: 28px 16px 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  font-size: 16px;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
  animation: cookieBannerIn .6s cubic-bezier(0.33,1.04,0.56,1.06);
}
@keyframes cookieBannerIn {
  from { transform: translateY(120px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-consent-banner button {
  background: #4DA746;
  color: #F6F7EB;
  border: none;
  border-radius: 7px;
  font-size: 16px;
  padding: 8px 17px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1.5px 7px #42ffa650;
  transition: background 0.18s, color 0.14s, box-shadow .16s;
}
.cookie-consent-banner button:hover {
  background: #42ffa6;
  color: #213142;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #213142;
  color: #42ffa6;
  border: 1.2px solid #42ffa6;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #42ffa6;
  color: #213142;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    padding: 17px 7px 13px 12px;
    max-width: 97vw;
  }
  .cookie-consent-buttons {
    width: 100%;
    gap: 10px;
    justify-content: flex-end;
  }
}
/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(10,30,36,.88);
  z-index: 2002;
  align-items: center;
  justify-content: center;
  animation: fadeIn .26s cubic-bezier(.57,.76,.77,1);
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity:0;} to{opacity:1;}
}
.cookie-modal {
  background: #232F44;
  color: #F6F7EB;
  border-radius: 18px;
  box-shadow: 0 8px 48px #42ffa640, 0 4px 18px #0005;
  padding: 36px 28px 25px 32px;
  max-width: 410px;
  width: 94vw;
  position: relative;
  animation: modalIn .4s cubic-bezier(.33,1,.73,1.12);
}
@keyframes modalIn {
  from { transform: scale(0.92) translateY(56px); opacity: 0.4; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 19px;
  color: #42ffa6;
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #42ffa6;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .close-cookie-modal {
  position: absolute; right: 18px; top: 16px;
  background: #ff4176;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 21px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.19s;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal .close-cookie-modal:hover {
  background: #ef0000;
}
/* === GENERAL ELEMENTS AND OVERRIDES === */
hr {
  border: none;
  height: 2px;
  background: #42ffa6;
  margin: 26px 0;
  border-radius: 1px;
}
::-webkit-scrollbar-thumb {
  background: #42ffa6;
  border-radius: 6px;
}
::-webkit-scrollbar {
  background: #213142;
  width: 8px;
}
/* === RESPONSIVE DESIGN === */
@media (max-width: 1300px) {
  .container{
    max-width:95vw;
  }
}
@media (max-width: 1100px) {
  .content-wrapper{
    gap: 16px;
  }
}
@media (max-width: 800px) {
  h1, .h1 { font-size: 29px; }
  h2, .h2 { font-size: 20px; }
  h3, .h3 { font-size: 16px; }
  section { padding: 16px 0; margin-bottom: 16px; }
}
@media (max-width: 600px) {
  .footer-contact p {
    font-size: 13px;
  }
}
@media (max-width: 470px) {
  h1, .h1 { font-size: 22px; }
  .footer-brand img {
    height: 39px;
  }
  .cookie-modal {padding: 16px 8px 11px 12px;}
}
/* === PRINT === */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  section, .container, .content-wrapper { padding: 0; margin: 0; background: none; box-shadow: none; }
  body { color: #213142; background: #fff; }
}
/* === ERROR & THANK-YOU PAGE === */
section.thankyou {
  text-align: center;
  background: #232F44;
  margin: 44px auto;
  border-radius: 13px;
}
