/* === 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,
main, 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: var(--color-secondary, #ffffff);
}
body {
  min-height: 100vh;
  background: var(--color-secondary, #ffffff);
  color: var(--color-text, #232B35);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: background 0.25s;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul,
ol {
  list-style: none;
}

strong {
  font-weight: 700;
}

/* === COLOR VARIABLE OVERRIDES for vibrant energetic === */
:root {
  --color-primary: #24587A;
  --color-secondary: #ffffff;
  --color-accent: #36D688;
  --color-highlight: #FF4455;
  --color-info: #1774AB;
  --color-surface: #F6F8FA;
  --color-dark: #232B35;
  --color-link: #24587A;
  --color-btn-text: #fff;
  --color-btn-hover: #22734B;
}

/* === TYPOGRAPHY (Bold, loud, punchy where relevant) === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.04em;
  /* Dynamic, energetic style */
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  text-shadow: 0 2px 16px rgba(54,214,136,0.08),0 1px 0 #fff4;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol, li {
  font-family: 'Roboto', Arial,sans-serif;
  font-size: 1rem;
  color: #232B35;
  margin-bottom: 12px;
}
.subheadline {
  color: var(--color-dark);
  font-size: 1.22rem;
  font-weight: 500;
  margin-bottom: 26px;
}

/* === LINK AND BUTTON STYLES === */
a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: var(--color-highlight);
  text-decoration: underline;
}

.btn {
  border: none;
  outline: none;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 36px;
  cursor: pointer;
  letter-spacing: 0.05em;
  background: var(--color-primary);
  color: var(--color-btn-text);
  box-shadow: 0 2px 10px 0 rgba(54,214,136,0.17);
  margin-top: 12px;
  transition: background 0.18s, box-shadow 0.23s, color 0.16s, transform 0.11s;
  position: relative;
}
.btn.primary {
  background: var(--color-primary);
  color: var(--color-btn-text);
}
.btn.accent {
  background: var(--color-accent);
  color: var(--color-dark, #232B35);
}
.btn:hover, .btn:focus {
  background: var(--color-highlight);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(36,88,122,0.13), 0 0 0 4px rgba(36,88,122,0.07);
  transform: translateY(-2px) scale(1.04);
}
.btn:active {
  background: var(--color-btn-hover);
  transform: scale(0.97);
}

/* === FLEX & LAYOUT HELPERS === */
.flex {
  display: flex !important;
}
.align-center {
  align-items: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.justify-center {
  justify-content: center !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-surface);
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(36,88,122,0.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 6px 16px 0 rgba(36,88,122,0.09);
  border-radius: 14px;
  transition: box-shadow 0.22s, transform 0.18s;
  padding: 28px 22px 22px;
  min-width: 280px;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 12px 32px 0 rgba(36,88,122,0.16),0 2px 10px 0 rgba(54,214,136,0.09);
  transform: translateY(-2px) scale(1.018);
}
.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;
  background: #fff;
  border-left: 5px solid var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(36,88,122,0.07);
  margin-bottom: 20px;
  min-width: 280px;
  color: #222;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== MAIN NAVIGATION ========== */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 3px 20px 0 rgba(36,88,122,0.03);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  min-height: 68px;
  padding: 12px 20px;
}
header img {
  height: 41px;
  width: auto;
}
nav.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial,sans-serif;
  color: var(--color-primary);
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

/* ========== HERO / BANNERS ========== */
.hero {
  background: linear-gradient(90deg, #24587A 62%, #22734B 100%);
  color: #fff;
  padding: 70px 0 50px 0;
  min-height: 400px;
  box-shadow: 0 2px 16px 0 rgba(36,88,122,0.09);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero h1, .hero .subheadline, .hero p { color: #fff; }

/* ========== SECTION/GRID/FEATURES CARDS ========== */
.features {
  background: var(--color-surface);
  border-radius: 0 0 24px 24px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px 0 rgba(36,88,122,0.045);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 36px;
}
.feature-grid li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(36,88,122,0.07);
  padding: 20px 18px;
  min-width: 225px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.45;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-primary);
  transition: box-shadow 0.19s, background 0.15s;
}
.feature-grid li:hover {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 6px 15px 0 rgba(36,88,122,0.14);
}
.feature-grid img {
  height: 40px;
  width: 40px;
}

/* === SERVICES === */
.service-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.service-grid > div, .services-list > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(36,88,122,0.07);
  min-width: 230px;
  flex: 1 1 270px;
  padding: 24px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.14s;
}
.service-grid > div:hover, .services-list > div:hover {
  box-shadow: 0 8px 26px 0 rgba(36,88,122,0.14);
  background: var(--color-accent);
  color: #fff;
}
.service-grid h3,
.services-list h2 {
  margin-bottom: 10px;
}
.service-grid .price, .services-list .price {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-highlight);
  font-weight: 700;
  margin-top: 16px;
  font-size: 1.09rem;
}

/* ========== ABOUT / TEAM / VALUES ========== */
.values-list, .team-list, .technology-list, .case-studies, .article-teasers, .testimonial-list, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.values-list > div, .technology-list > div, .team-member, .case-list > div, .testimonial-list > .testimonial-card, .article-teasers > article {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(36,88,122,0.06);
  padding: 20px 18px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.values-list > div:hover, .technology-list > div:hover, .team-member:hover, .case-list > div:hover, .testimonial-list > .testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(36,88,122,0.13);
  background: var(--color-accent);
  color: #fff;
}
.values-list img, .technology-list img {
  height: 36px;
  width: 36px;
  margin-bottom: 10px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
}
.testimonial-card {
  min-width: 240px;
  max-width: 400px;
  font-size: 1.1rem;
  background: #fff!important;
  color: #18242c!important;
  border-left: 5px solid var(--color-accent);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(36,88,122,0.09);
}
.testimonial-card p {
  font-size: 1.09rem;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--color-dark);
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #6e7e93;
}

/* ========== BLOG LIST & TAGS ========== */
.article-teasers > article {
  min-width: 220px;
  flex: 1 1 270px;
  border-left: 4px solid var(--color-highlight);
}
.article-teasers h3 {
  font-size: 1.04rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
.article-teasers p { font-size: 0.98rem; }
.article-tags {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--color-accent);
  font-style: italic;
}
.categories-filter, .tags-list {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 16px 0 8px 0;
  flex-wrap: wrap;
}
.categories-filter a, .tags-list a {
  color: var(--color-accent);
  font-weight: 700;
  text-transform: lowercase;
  padding: 3px 10px;
  border-radius: 8px;
  background: var(--color-surface);
  transition: background 0.15s, color 0.15s;
}
.categories-filter a:hover, .tags-list a:hover {
  background: var(--color-accent);
  color: #fff;
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-primary);
  color: #fff;
  font-size: 0.98rem;
  padding: 33px 0 23px 0;
  margin-top: 70px;
}
footer .container {
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #f5fffb;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: .95;
  font-weight: 500;
  transition: color 0.17s;
  text-decoration: none;
}
.footer-nav a:hover {
  color: var(--color-accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .96rem;
  max-width: 250px;
}
.footer-contact img {
  width: 15px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-contact a {
  color: var(--color-accent);
  text-decoration: none;
}

/* ========== PRICING TABLE ========== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 34px 0 20px 0;
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #f2fffa;
}
.pricing-table tbody tr {
  border-bottom: 2px solid #e8f6f2;
}

/* ========== LEGAL TEXT SECTIONS ========== */
.legal {
  background: var(--color-surface);
  border-radius: 16px;
  padding: 40px 20px;
}
.legal ul {
  margin: 18px 0 24px 24px;
  list-style: disc inside;
}

/* ========== THANK-YOU / CTA FINAL SECTIONS ========== */
.cta-final, .thank-you, .cta {
  background: linear-gradient(90deg, #24587A 52%, #36D688 100%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 28px 0 rgba(36,88,122,0.12);
  padding: 42px 20px 45px 20px;
  margin: 0 0 36px 0;
}
.cta-final h2, .cta h2, .thank-you h1 { color: #fff; }

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: #fff;
  color: var(--color-dark);
  padding: 22px 16px 18px 16px;
  box-shadow: 0 -2px 20px 0 rgba(36,88,122,0.11);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  transition: transform 0.44s cubic-bezier(0.66,0,0.08,1);
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner .banner-text {
  flex: 2 1 250px;
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 7px;
}
.cookie-consent-banner .btn {
  font-size: 0.97rem;
  padding: 9px 22px;
  margin: 0 5px 0 0;
  border-radius: 22px;
}
.cookie-consent-banner .btn.primary {
  background: var(--color-accent);
  color: #fff;
}
.cookie-consent-banner .btn.secondary {
  background: var(--color-highlight);
  color: #fff;
}
.cookie-consent-banner .btn.settings {
  background: var(--color-primary);
  color: #fff;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1250;
  background: rgba(36,88,122,0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s;
}

.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}

.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 6px 32px 0 rgba(36,88,122,0.17);
  padding: 38px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  font-size: 1.02rem;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transform: translateY(0);
  transition: transform 0.33s cubic-bezier(0.54,0,0.34,1);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.6em;
  cursor: pointer;
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 3px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 9px 0 6px 0;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-accent);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1102;
  transition: background 0.16s;
  box-shadow: 0 2px 8px 0 rgba(36,88,122,0.10);
}
.mobile-menu-toggle:active {
  background: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  transform: translateX(105%);
  transition: transform 0.38s cubic-bezier(0.7,0.2,0.25,1);
  z-index: 1101;
  box-shadow: 0 0 32px 0 rgba(36,88,122,0.19);
  display: flex;
  flex-direction: column;
  padding: 40px 34px 18px 22px;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 17px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--color-highlight);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1203;
  cursor: pointer;
  transition: background 0.19s;
}
.mobile-menu-close:hover {
  background: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 60px;
  padding-bottom: 24px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  padding: 12px 0;
  text-transform: uppercase;
  background: transparent;
  transition: background .17s, color .16s;
  min-width: 80vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* Hide nav & show burger on small screens */
@media (max-width: 1100px) {
  nav.main-nav {
    gap: 15px;
  }
}
@media (max-width: 800px) {
  nav.main-nav, a.btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    padding-right: 60px;
  }
}
@media (max-width: 600px) {
  .mobile-menu {
    padding: 40px 8px 18px 8px;
  }
  .mobile-menu-close {
    right: 12px;
  }
  .mobile-nav a {
    font-size: 1.11rem;
    min-width: 96vw;
  }
}
@media (hover: hover) {
  .btn:hover { filter: brightness(1.07); }
  .categories-filter a:hover,
  .tags-list a:hover {
    filter: brightness(1.12);
  }
}

/* 
=============== RESPONSIVE DESIGN/MOBILE-FIRST =============== 
All flex containers: direction: column on mobile
*/
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .content-grid, .card-container, .service-grid, .services-list, .values-list, .technology-list,
  .team-list, .case-list, .blog-list, .testimonial-list, .blog-list .article-teasers {
    flex-direction: column;
    gap: 20px;
  }
  .features .feature-grid { flex-direction: column; gap: 16px; }
  .testimonial-slider { flex-direction: column !important; gap: 20px; }
}
@media (max-width: 768px) {
  .section,
  .legal,
  .cta-final, .cta {
    padding: 27px 8px;
  }
  .content-wrapper {
    padding: 0;
  }
  .hero {
    padding: 40px 0 34px 0;
    min-height: 210px;
  }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  .about-short ul, .contact-information ul {
    margin-left: 0;
  }
  footer .container { flex-direction: column; gap: 22px; align-items: flex-start!important; }
  .footer-contact { max-width: 100%; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.23rem; }
  .btn, .btn.primary, .btn.accent {
    font-size: 1rem;
    padding: 9px 12px;
  }
  .service-grid > div, .services-list > div, .values-list > div, .team-member, .article-teasers > article {
    padding: 14px 7px;
    min-width: 95vw;
  }
  .card, .testimonial-card {
    min-width: 90vw;
    padding: 14px 8px;
  }
}

/* ========== ACCESSIBILITY/HIGH CONTRAST ========== */
.testimonial-card, .testimonial-list .testimonial-card {
  color: #232B35!important;
  background: #fff!important;
}
.testimonial-card strong { color: var(--color-primary); }

/* ========== FORM ELEMENTS (for contacts, modals, etc.) ========== */
input, textarea, select {
  font-family: 'Roboto', Arial,sans-serif;
  font-size: 1rem;
  padding: 8px 12px;
  border: 1.5px solid #ced4da;
  border-radius: 7px;
  background: #fafcff;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.1s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(36,88,122,0.09);
}

label {
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 4px;
  display: block;
}

/* ========== MISC. ========== */
.price { color: var(--color-accent); font-weight: bold; font-size: 1.13rem; }
mark, .highlight { background: var(--color-accent); color: #fff; border-radius: 6px; padding: 1px 7px; font-weight: bold; }

::-webkit-scrollbar {
  width: 8px;  background: #f6f8fa;  }
::-webkit-scrollbar-thumb {
  background: var(--color-accent); border-radius: 8px;
}

/* ========== UTILITIES ========== */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.text-center { text-align: center; }

/* ========== DECORATIVE SHADOWS & ENERGY ========== */
.section, .card, .cta-final, .hero, .card-container > *, .service-grid > div, .testimonial-card {
  box-shadow: 0 4px 16px 0 rgba(36,88,122,0.06), 0 2.9px 11px 0 rgba(54,214,136,0.07);
}

/* --- Z-index for overlays and menus --- */
header { z-index: 30; }
.mobile-menu { z-index: 1101; }
.mobile-menu-toggle { z-index: 1102; }
.mobile-menu-close { z-index: 1203; }
.cookie-consent-banner { z-index: 1200; }
.cookie-modal-backdrop { z-index: 1250; }

/* ========== VIBRANT ENERGY EFFECTS ========== */
.btn, .hero, .cta-final, .cta, .section {
  animation: vibrate-flicker 0.7s cubic-bezier(0.7,0.07,0.17,1) both alternate-reverse 0;
  will-change: box-shadow, transform;
}
@keyframes vibrate-flicker {
  0% { filter: brightness(1) drop-shadow(0 0 0 #4EAA7A44); }
  20% { filter: brightness(1.04) drop-shadow(0 0 4px #36D68899); }
  40% { filter: brightness(1.02) drop-shadow(0 0 7px #FF445555); }
  80% { filter: brightness(1.06) drop-shadow(0 0 10px #36D68888); }
  100% { filter: brightness(1) drop-shadow(0 0 0 #24587A00); }
}

/* --- ENERGIZE pseudo-decor: accent color bar on h2 --- */
h2::before {
  content: '';
  display: inline-block;
  width: 28px; height: 6px;
  background: var(--color-accent);
  border-radius: 3.5px;
  margin: 0 18px 0 0;
  vertical-align: middle;
}

/* --- FAKE CARD-OUTLINES (VIBRANT CONTRAST) --- */
.card, .service-grid > div, .team-member, .case-list > div, .testimonial-card {
  border: 2.5px solid #f2faff;
}
.card:hover, .service-grid > div:hover, .team-member:hover, .testimonial-card:hover {
  border-color: var(--color-accent);
}

/* ============ END ============ */
