/* --- CSS 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup,
menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F7FA;
  color: #153742;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #24647A;
  text-decoration: none;
  transition: color .2s linear;
}
a:hover, a:focus {
  color: #88B04B;
}
ul, ol {
  list-style: none;
}
:focus {
  outline: 2px solid #24647A;
  outline-offset: 2px;
}

/* --- COLORS & FONT VARIABLES (fallbacks for custom properties) --- */
:root {
  --color-primary: #24647A;
  --color-secondary: #88B04B;
  --color-accent: #F5F7FA;
  --color-accent-strong: #E4F0E2;
  --color-electric-1: #03C0FA;
  --color-electric-2: #FECD1A;
  --color-electric-3: #FF358B;
  --color-dark: #153742;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 36px 0 rgba(36,100,122,0.08), 0 1.5px 6px 0 rgba(3,192,250,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: #24647A;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  color: #FF358B;
  margin-bottom: 22px;
}
h2 {
  font-size: 2rem;
  color: #24647A;
  background: linear-gradient(90deg, #03C0FA 0%, #FECD1A 48%, #24647A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h3 {
  font-size: 1.4rem;
  color: #03C0FA;
}
p, ul li, ol li, blockquote {
  font-size: 1rem;
  color: #153742;
  line-height: 1.75;
  font-family: var(--font-body);
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: #24647A;
}
blockquote {
  font-family: var(--font-body);
  font-style: italic;
  color: #FF358B;
  background: #F5F7FA;
  padding: 12px 28px;
  border-left: 7px solid #03C0FA;
  margin: 28px 0;
}

/* --- HEADER & DESKTOP NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 3px 20px rgba(36,100,122,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
header img { height: 46px; }
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: #24647A;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .18s, color .18s, box-shadow .17s;
}
header nav a:hover,
header nav a:focus {
  background: #E4F0E2;
  color: #03C0FA;
  box-shadow: 0 2px 10px #03C0FA16;
}
.cta-primary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 11px 32px;
  border-radius: 36px;
  color: #fff;
  background: linear-gradient(90deg,#03C0FA 0%, #FF358B 80%);
  box-shadow: 0 4px 18px #FF358B18;
  border: none;
  outline: none;
  cursor: pointer;
  margin-left: 18px;
  transition: background .18s, transform .15s, box-shadow .25s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: linear-gradient(90deg,#FECD1A 0%, #03C0FA 100%);
  color: #24647A;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px #FECD1A33;
}
.cta-secondary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 28px;
  color: #24647A;
  background: #F5F7FA;
  border: 2px solid #03C0FA;
  transition: background .17s, color .18s, border .19s, transform .14s;
  margin-top: 27px;
  display: inline-block;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #88B04B;
  color: #fff;
  border: 2px solid #24647A;
  transform: translateY(-2px) scale(1.03);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 20px;
  z-index: 60;
  font-size: 2.5rem;
  background: transparent;
  border: none;
  color: #24647A;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-toggle:focus { color: #FECD1A; }

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.7,.03,.15,1);
  box-shadow: 0 8px 48px #03C0FA19;
  padding: 0;
}
.mobile-menu.active { transform: translateX(0%); }
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.25rem;
  color: #24647A;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 110;
  transition: color .15s;
}
.mobile-menu-close:focus { color: #FECD1A; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  padding: 76px 42px 28px 44px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #24647A;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .17s, border .17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FF358B;
  border-bottom: 2px solid #03C0FA;
  background: #F5F7FA;
  border-radius: 8px;
}

@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 540px) {
  .mobile-nav {
    padding: 68px 16px 18px 20px;
    gap: 18px;
  }
}

/* --- MAIN STRUCTURE & SECTION SPACING --- */
main {
  margin-top: 0;
  min-height: 76vh;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
@media (max-width: 540px) {
  .content-wrapper {padding: 6px 1px;}
}

/* --- FEATURE GRIDS & SERVICE LISTS --- */
.feature-grid, .value-grid, .service-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 18px;
}
.feature-grid li,
.value-grid li {
  flex: 1 1 210px;
  min-width: 195px;
  background: #F5F7FA;
  border-radius: 18px;
  box-shadow: 0 1.5px 6px #03C0FA16;
  padding: 24px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform .13s, box-shadow .17s;
  border: 2px solid #fff;
}
.feature-grid li:hover,
.value-grid li:hover {
  background: #FF358B11;
  border: 2px solid #03C0FA;
  transform: scale(1.027);
  box-shadow: 0 6px 22px #FECD1A2c;
}
.value-grid {
  gap: 22px;
}
.service-list {
  gap: 18px;
  padding-bottom: 16px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #E4F0E2;
  color: #24647A;
  border-radius: 24px;
  padding: 12px 22px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.09rem;
  box-shadow: 0 1px 6px #88B04B22;
  transition: background .18s, color .13s;
}
.service-list li:hover {
  background: #FECD1A;
  color: #153742;
}
ul.faq-list li {
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 1.5px 12px #03C0FA13;
  margin-bottom: 10px;
  color: #153742;
  transition: background .10s;
}
ul.faq-list li strong { color: #24647A; }

@media (max-width: 960px) {
  .feature-grid, .value-grid, .service-list, .faq-list {
    gap: 16px;
  }
  .feature-grid li, .value-grid li {
    min-width: 120px;
    padding: 16px 10px 10px 12px;
  }
}
@media (max-width: 760px) {
  .feature-grid, .value-grid, .service-list, .faq-list {
    flex-direction: column;
    gap: 12px;
  }
  .feature-grid li, .value-grid li {width: 100%;}
}

/* --- SERVICE CATEGORY TABS --- */
.service-categories-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.service-categories-tabs li {
  background: #FECD1A;
  color: #24647A;
  border-radius: 22px;
  padding: 10px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid #03C0FA;
  transition: background .13s, color .13s;
}
.service-categories-tabs li:hover,
.service-categories-tabs li:focus {
  background: #FF358B;
  color: #fff;
}
@media (max-width: 700px) {
  .service-categories-tabs {
    flex-direction: column;
    gap: 10px;
  }
  .service-categories-tabs li {
    width: 100%;
  }
}

/* --- ICONS GRID --- */
.service-icons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  align-items: center;
  justify-content: flex-start;
}
.service-icons-grid img {
  height: 48px;
  width: 48px;
  border-radius: 13px;
  background: #F5F7FA;
  box-shadow: 0 2px 8px #24647A0a;
  transition: box-shadow .13s, transform .13s;
}
.service-icons-grid img:hover {
  box-shadow: 0 5px 22px #FECD1A2a;
  transform: scale(1.10) rotate(-6deg);
}

/* --- TEXT AND IMAGE SECTION ALIGNMENTS --- */
.text-section,
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-section, .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.trust-badges img {
  height: 30px;
  width: 30px;
}

/* --- PRICING TABLES --- */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 22px;
}
.pricing-tables div {
  background: #fff;
  border: 2px solid #03C0FA;
  border-radius: 18px;
  padding: 22px 24px 15px 24px;
  min-width: 210px;
  flex: 1 1 230px;
  box-shadow: 0 3.5px 18px #03C0FA13;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border .11s, transform .13s, box-shadow .19s;
}
.pricing-tables div:hover {
  border: 2px solid #FF358B;
  background: #F5F7FA;
  box-shadow: 0 8px 36px #FF358B14;
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .pricing-tables {
    flex-direction: column;
    gap: 16px;
  }
  .pricing-tables div {
    min-width: 140px;
    width: 100%;
  }
}

.value-guarantee-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #24647A;
  font-weight: 800;
  font-size: 1.07rem;
  margin-top: 14px;
  background: #E4F0E2;
  padding: 12px 26px;
  border-radius: 22px;
  box-shadow: 0 1.5px 10px #88B04B13;
}
.value-guarantee-badge img { height: 34px; }

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F5F7FA;
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 4px 24px #03C0FA1a;
  min-width: 250px;
  max-width: 420px;
  border: 2px solid #03C0FA;
  margin-bottom: 20px;
  transition: border .18s, box-shadow .18s, background .14s, transform .18s;
}
.testimonial-card:hover {
  border: 2px solid #FECD1A;
  background: #fff;
  transform: scale(1.02);
  box-shadow: 0 12px 48px #FECD1A23;
}
.testimonial-card p {
  color: #153742;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card strong {
  color: #24647A;
  font-size: 1rem;
  font-family: var(--font-display);
}
.star-rating {
  color: #FECD1A;
  font-size: 1.3rem;
  letter-spacing: 3px;
}
@media (max-width: 800px) {
  .testimonial-slider,
  .testimonial-cards {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* --- FOOTER --- */
footer {
  background: #24647A;
  color: #fff;
  padding: 0 0 20px 0;
  font-size: 1rem;
}
footer section {
  margin-bottom: 0;
  padding: 32px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 180px;
  flex: 1 1 250px;
  margin-bottom: 0;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
}
footer nav a {
  color: #fff;
  opacity: 0.91;
  font-size: 0.96rem;
  font-weight: 600;
  margin-bottom: 4px;
  border-radius: 7px;
  padding: 5px 7px;
  transition: background .15s, color .15s;
}
footer nav a:hover,
footer nav a:focus {
  background: #FECD1A;
  color: #24647A;
}
footer .cta-primary {
  display: inline-block;
  margin-left: 0;
  margin-top: 10px;
  font-size: 1rem;
  padding: 10px 18px;
}
footer img {
  height: 36px;
  margin-bottom: 12px;
}
footer ul li {
  color: #fff;
  opacity: 0.7;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}
footer ul img { height: 18px; }
footer .content-wrapper:last-child a {
  color: #FECD1A;
  opacity:1;
  margin-right: 0px;
}
footer .content-wrapper:last-child a:hover { color:#03C0FA; text-decoration: underline;}

@media (max-width: 950px) {
  footer .container {
    gap: 22px;
  }
  footer .content-wrapper { min-width: 120px; }
}
@media (max-width: 780px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  footer .content-wrapper { width: 100%; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #24647A;
  box-shadow: 0px -5px 35px #24647A15;
  padding: 18px 16px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  border-radius: 22px 22px 0 0;
  animation: cookieSlideIn .45s cubic-bezier(.87,-0.12,.36,1.1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(50px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #153742;
  font-size: 1.04rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
}
.cookie-banner button {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  padding: 10px 22px;
  transition: background .18s, color .15s, box-shadow .17s;
  margin-right: 2px;
}
.cookie-banner .accept-all {
  background: #88B04B;
  color: #fff;
  box-shadow: 0 2px 12px #88B04B24;
}
.cookie-banner .accept-all:hover {
  background: #24647A;
  color: #fff;
}
.cookie-banner .reject-all {
  background: #FF358B;
  color: #fff;
  box-shadow: 0 2px 6px #FF358B22;
}
.cookie-banner .reject-all:hover {
  background: #24647A;
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: #24647A;
  border: 2px solid #24647A;
}
.cookie-banner .cookie-settings:hover {
  background: #FECD1A;
  color: #24647A;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,100,122,0.3);
  z-index: 1200;
  align-items: center;
  justify-content: center;

}
.cookie-modal.active {
  display: flex;
  animation: cookieModalFade .28s;
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 10px 60px #03C0FA2a;
  padding: 34px 24px 26px 24px;
  min-width: 310px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookieModalSlideIn .35s cubic-bezier(.7,.03,.15,1.1);
}
@keyframes cookieModalSlideIn {
  from { transform: translateY(80px); }
  to   { transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.36rem;
  color: #24647A;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal li {
  font-size: 1.06rem;
  color: #24647A;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #03C0FA;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
  padding: 9px 17px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
}
.cookie-modal .modal-actions .save-settings {
  background: #88B04B;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 2px 12px #88B04B24;
}
.cookie-modal .modal-actions .close-modal {
  background: #FF358B;
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-modal .modal-content {
    min-width: 99vw;
    padding: 22px 8px;
  }
}

/* --- CARD CONTAINERS & FLEX LAYOUTS --- */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 14px; box-shadow: 0 2.5px 14px #03C0FA16; padding: 24px; transition: box-shadow .14s, transform .14s; }
.card:hover { box-shadow: 0 12px 46px #03C0FA1e; transform: translateY(-2px) scale(1.03); }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- Animation for cards and sections --- */
.section, .card, .testimonial-card, .feature-item, .service-list li, .value-guarantee-badge {
  animation: fadeUpEnergy .78s cubic-bezier(.65,0,.3,1) both;
}
@keyframes fadeUpEnergy {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 950px) {
  .container { max-width: 99vw; }
}
@media (max-width: 760px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.34rem; }
  h3 { font-size: 1.1rem; }
  .container,
  .section,
  .card {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 660px) {
  header .container { flex-direction: column; height: auto; gap:13px; }
  .cta-primary { margin: 0; margin-bottom: 10px; padding: 9px 12px; font-size: 1rem; }
}

/* --- MISC DECORATIVE & INTERACTION EFFECTS --- */
html, body { scroll-behavior: smooth; }
::-webkit-scrollbar { background: #E4F0E2; width: 8px; }
::-webkit-scrollbar-thumb { background: #24647A; border-radius: 16px; }

/* --- ACCESSIBILITY --- */
@media (prefers-reduced-motion) {
  * { transition: none !important; animation: none !important; }
}

/* --- END OF THEME --- */