/* ====================================================================== */
/* CSS RESET & BASE TYPOGRAPHY
/* ====================================================================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #24487a;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img, picture {
  max-width: 100%;
  display: block;
}
alink, a:visited {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
a:hover, .main-nav a.active, nav a.active {
  color: #8cc63e;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
section {
  width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #24487A;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {font-size: 2.25rem; margin-bottom: 20px;}
h2 {font-size: 1.5rem; margin-bottom: 16px;}
h3 {font-size: 1.125rem; margin-bottom: 8px;}
p, li, dl, dd, dt {font-size: 1rem; color: #3b4e66;}
strong {font-weight: 600;}

/* ====================================================================== */
/* LAYOUT CONTAINERS & FLEX SPACING
/* ====================================================================== */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(36,72,122,0.04);
}

@media (max-width: 900px) {
  .container {padding-left:12px; padding-right:12px;}
  .section {padding:28px 6px; margin-bottom:38px;}
}
@media (max-width: 500px) {
  .section {padding:18px 2px; margin-bottom:22px;}
}

/* ====================================================================== */
/* HEADER, LOGO, AND NAVIGATION
/* ====================================================================== */
header {
  background: #fff;
  border-bottom: 1.5px solid #f2f4f7;
  padding: 0;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #264164;
  padding: 3.5px 2px;
  border-radius: 3px;
  transition: background .15s, color .2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f7f7f7;
  color: #8cc63e;
}
.cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 10px 28px;
  background: #24487a;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 99px;
  box-shadow: 0 1.5px 10px rgba(36,72,122,0.09);
  cursor: pointer;
  transition: background .18s, box-shadow .18s, color .15s;
  display: inline-block;
  margin-left: 18px;
  letter-spacing: 0.04em;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #8cc63e;
  color: #24487a;
  box-shadow: 0 4px 16px rgba(36,72,122,0.13);
}

/* ====================================================================== */
/* MOBILE MENU & BURGER
/* ====================================================================== */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    font-size: 2rem;
    background: none;
    border: none;
    color: #24487a;
    position: absolute;
    top: 22px; right: 18px;
    z-index: 102;
    width: 46px; height: 46px;
    cursor: pointer;
    border-radius: 50%;
    transition: background .13s;
  }
  .mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
    background: #f7f7f7;
    color:#8cc63e;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247,247,247,0.97);
  z-index: 1200;
  transform: translateX(-110%);
  transition: transform .38s cubic-bezier(.62,.26,.17,.83);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 28px 18px 24px;
  gap: 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #24487a;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color .16s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #8cc63e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #24487a;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 4px;
  transition: background .12s, color .18s;
  width: 98%;
}
.mobile-nav a:active, .mobile-nav a:hover,
.mobile-nav a:focus {
  background: #8cc63e;
  color: #fff;
}
@media (min-width:901px) {
  .mobile-menu, .mobile-menu-toggle {
    display:none !important;
  }
}

/* ====================================================================== */
/* HERO, CTA BANNER, & PAGE SECTIONS
/* ====================================================================== */
.hero {
  background: #f7f7f7;
  border-radius: 0 0 18px 18px;
  margin-bottom: 60px;
  padding: 54px 0 52px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 600px;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.hero h1 {font-size: 2.75rem; color: #24487a; margin-bottom: 20px;}
.hero p {font-size:1.18rem;color:#3b4e66;margin-bottom:22px;}
.hero .cta-btn {margin-top: 16px;}

.cta-banner, .cta-banner .container {background:#f7f7f7; border-radius:14px;}
.cta-banner .content-wrapper {align-items: center; text-align: center; gap:18px;}
.cta-banner h2 {font-size:1.58rem;}

/* ====================================================================== */
/* FLEXBOX CARDS & CONTENT PRESENTATION
/* ====================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,72,122,0.04);
  margin-bottom: 20px;
  padding: 32px 22px 24px 22px;
  min-width:280px;
  flex: 1 1 290px;
  position: relative;
  transition: box-shadow .18s;
}
.card:hover, .card:focus-within {
  box-shadow:0 6px 28px rgba(36,72,122,.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap:16px;
}

/* ====================================================================== */
/* SPECIAL FLEX PATTERNS
/* ====================================================================== */
.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:17px; align-items: flex-start;}
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {gap:14px;}

/* ====================================================================== */
/* FEATURES, SERVICES, & VALUES FLEX SECTIONS
/* ====================================================================== */
.features, .services-overview ul, .values ul, .usp ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services-grid, .services .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.service-item {
  background: #fff;
  border: 1px solid #f1f3f6;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(36,72,122,0.05);
  flex: 1 1 295px;
  min-width: 252px;
  margin-bottom: 20px;
  padding: 28px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .18s, border-color .18s;
  position: relative;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 8px 28px rgba(36,72,122,0.13);
  border-color: #8cc63e;
}

/* ====================================================================== */
/* TESTIMONIALS & PROJECT CARDS
/* ====================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 18px rgba(36,72,122,0.07);
  margin-bottom: 20px;
  color: #24487a;
  font-size: 1rem;
  transition: box-shadow .15s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px rgba(36,72,122,.14);
}
.testimonial-card p {
  color: #3b4e66;
  font-size:1.09rem;
  margin-right: 10px;
}
.testimonial-card strong {
  color: #24487a;
  font-weight: 700;
  font-size: .99rem;
  white-space: nowrap;
}

.project-item {
  background:#f7f7f7;
  border-radius:13px;
  padding: 28px 20px;
  margin-bottom: 28px;
  box-shadow: 0 2px 10px rgba(36,72,122,0.03);
  display: flex;
  flex-direction: column;
  gap:14px;
}

/* ====================================================================== */
/* BLOG LIST & FAQ
/* ====================================================================== */
.blog-list .blog-teaser {
  background: #fff;
  border: 1px solid #f1f3f6;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(36,72,122,0.025);
  margin-bottom: 20px;
  padding: 22px 18px 13px 18px;
  transition: box-shadow .18s, border-color .13s;
}
.blog-list .blog-teaser:hover {
  box-shadow: 0 4px 20px rgba(36,72,122,0.09);
  border-color: #8cc63e;
}
.faq dl {
  margin-top:12px;
}
.faq dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 7px;
  color: #24487a;
}
.faq dd {
  margin-bottom: 19px;
  margin-left: 8px;
  color: #3b4e66;
}

/* ====================================================================== */
/* TABLES & PRICING
/* ====================================================================== */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(36,72,122,0.025);
  margin-bottom: 18px;
  overflow: hidden;
  font-size:1rem;
}
.pricing-table th, .pricing-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #f2f4f6;
  color: #24487a;
}
.pricing-table th {
  background: #f7f7f7;
  font-family:'Montserrat',Arial,sans-serif; font-weight: 600;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* ====================================================================== */
/* FOOTER STYLES
/* ====================================================================== */
footer {
  background: #f7f7f7;
  padding: 32px 0 18px 0;
  border-top: 1.5px solid #f2f4f7;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 0.98rem;
}
.footer-menu a {
  color: #24487a;
  transition: color .16s;
}
.footer-menu a:hover {
  color: #8cc63e;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.97rem;
  color: #3b4e66;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px; align-items: flex-start;
    padding: 0 4px;
  }
  .footer-logo img {margin-bottom:2px;}
}

/* ====================================================================== */
/* COOKIE CONSENT BANNER AND MODAL
/* ====================================================================== */
.cookie-consent {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: #fff;
  border-top: 1px solid #f2f4f7;
  box-shadow: 0 -4px 34px rgba(36,72,122,.09);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  z-index: 2100;
  transition: transform .28s cubic-bezier(.42,.2,.17,1), opacity .24s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-consent p {
  color: #24487a;
  font-size: 1rem;
  margin-right: 18px;
  max-width: 580px;
}
.cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 99px;
  padding: 9px 22px;
  cursor: pointer;
  background: #24487a;
  color: #fff;
  transition: background .19s, color .17s;
}
.cookie-btn.settings {background: #f7f7f7; color:#24487a; border:1.2px solid #24487a;}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {background:#8cc63e; color:#fff;}
.cookie-btn.reject {background: #fff; color:#24487a; border:1.2px solid #24487a;}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {background:#f7f7f7; color:#24487a;}
.cookie-btn.accept {background: #8cc63e; color:#fff;}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {background: #24487A; color:#fff;}

@media (max-width: 700px) {
  .cookie-consent {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px;
  }
  .cookie-consent p {margin-right:0;}
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,72,122,0.16);
  z-index: 2150;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity:1;
  pointer-events:auto;
  transition: opacity .22s;
}
.cookie-modal.hide {opacity:0; pointer-events: none;}
.cookie-modal-content {
  background: #fff;
  padding: 40px 28px 30px 28px;
  border-radius: 12px;
  min-width: 300px; max-width: 95vw;
  box-shadow:0 4px 40px rgba(36,72,122,0.15);
  display: flex; flex-direction: column; gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #24487a;
  margin-bottom: 4px;
  font-size:1.29rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem; color: #24487a;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #24487a;
  position: absolute;
  top: 16px; right: 19px;
  font-size:1.5rem;
  cursor:pointer;
}
.cookie-modal-close:hover {color: #8cc63e;}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* ---------------------------------------------------------------------- */
/* ANIMATIONS & MICRO-INTERACTIONS
/* ---------------------------------------------------------------------- */
:focus {outline:2px solid #8cc63e; outline-offset: 2.5px;}
button, a {
  transition: background .19s, color .12s, box-shadow .13s, border-color .13s;
}
[data-animate="fade"] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s, transform .6s;
}
[data-animate="fade"].animated {
  opacity:1;
  transform:none;
}

/* ====================================================================== */
/* RESPONSIVE FLEXBOX ADJUSTMENTS
/* ====================================================================== */
@media (max-width: 1200px) {
  .card-container, .services-grid {
    gap: 18px;
  }
}
@media (max-width: 1024px) {
  .content-grid, .card-container, .services-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .project-item, .service-item {min-width:0;}
}
@media (max-width: 600px) {
  h1 {font-size: 1.48rem;}
  h2 {font-size: 1.13rem;}
  section {margin-bottom:28px;}
  .hero {padding:20px 0 22px 0;}
}

/* ====================================================================== */
/* MISCELLANEOUS
/* ====================================================================== */
.text-section {margin-top:10px;margin-bottom:10px;}
.trust-badges {
  margin-top: 11px;
  color: #8cc63e;
  font-size: .99rem;
}
.next-steps {
  font-size: .99rem;
  color: #3b4e66;
  margin: 12px 0 11px 0;
}
section {
  padding: 10px 0;
}
/* END OF ShineVolt Minimalist Responsive Design CSS */