/* ========================
  Pulse Frost - style.css
  Futuristic Tech Inspired CSS (Flexbox Only)
  ========================= */

/* ---- CSS RESET & BASE ---- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #0d1a2f;
  color: #f1f5fa;
  line-height: 1.6;
  background-image: linear-gradient(130deg, #11294d 60%, #15b8ef 100%);
  min-width: 320px;
}
a {
  color: #15b8ef;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
ul, ol {
  list-style: none;
}
main {
  flex: 1 0 auto;
  padding-top: 16px;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #f1f5fa;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .01em;
}
h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 28px #11294d66;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}
p, li, span {
  font-size: 1rem;
  color: #e2e9f7;
}
strong {
  color: #15b8ef;
}

/* ---- LAYOUT HELPERS ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background-color: #14284e;
  border-radius: 16px;
  box-shadow: 0 6px 36px #0b162b38;
  transition: transform .17s, box-shadow .25s;
  padding: 32px 24px;
}
.card:hover, .card:focus {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 40px #15b8ef33, 0 2px 10px #11294d44;
  z-index: 1;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f1f5fa;
  color: #182c43;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px #15b8ef22;
  border-left: 4px solid #15b8ef;
  min-width: 0;
}
.testimonial-card p {
  color: #182c43;
  font-size: 1.08rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- HEADER & NAVIGATION ---- */
header {
  background-color: rgba(17, 41, 77, 0.97);
  box-shadow: 0 2px 12px #11294d40;
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  color: #c3e8ff;
  background: none;
  transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #fff;
  background: #15b8ef;
  text-shadow: 0 1px 12px #15b8ef99;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #15b8ef;
  color: #14284e;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 28px;
  padding: 11px 32px;
  box-shadow: 0 4px 26px #15b8ef33;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  outline: none;
  position: relative;
  margin-left: 18px;
  margin-right: 0;
  text-shadow: 0 1px 2px #b6f1ff77;
}
.cta-btn:hover, .cta-btn:focus {
  background: #11d9f1;
  color: #0d1a2f;
  box-shadow: 0 6px 34px #15b8ef44, 0 2px 10px #11d9f180;
  outline: none;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: transparent;
  color: #15b8ef;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  transition: background .15s;
  margin-left: 6px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #184278;
  color: #fff;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 33, 56, 0.99);
  z-index: 999;
  transform: translateX(100vw);
  transition: transform .37s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 40px 24px 30px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #f1f5fa;
  font-size: 2.7rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 30px;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #15b8ef;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #aaeeff;
  padding: 14px 0 10px 7px;
  background: none;
  border-radius: 6px;
  margin: 2px 0;
  transition: color .14s, background .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #15b8ef11;
  color: #fff;
}
@media (min-width: 1000px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 999px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* ---------------------------
  HERO & CTA SECTIONS
---------------------------- */
.hero {
  background: linear-gradient(120deg, #11294d 70%, #184278 97%);
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 0 36px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 600px;
  z-index: 2;
}
.hero h1 {
  color: #15b8ef;
  text-shadow: 0 4px 30px #11294dcc;
}
.hero p {
  color: #c1d7ea;
  font-size: 1.15rem;
}
@media (max-width: 968px) {
  .hero {
    min-height: unset;
    padding: 30px 0 22px 0;
  }
  .hero .content-wrapper {
    max-width: 100%;
  }
}

.cta {
  background: #14284e;
  border-radius: 18px;
  padding: 36px 18px;
  margin-bottom: 60px;
  box-shadow: 0 3px 26px #11294d22;
  text-align: center;
}
.cta h2 {
  color: #15b8ef;
  margin-bottom: 10px;
}
.cta p {
  color: #b9e6fb;
  margin-bottom: 14px;
}

/* ---------------------------
  FEATURES & SERVICE SECTIONS
---------------------------- */
.features {
  background: #192e54;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 44px 10px;
  box-shadow: 0 3px 18px #04709413;
}
.features h2 {
  color: #15b8ef;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #14284e;
  border-radius: 14px;
  box-shadow: 0 2px 14px #15b8ef22;
  flex: 1 1 200px;
  min-width: 190px;
  max-width: 263px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 18px;
  transition: box-shadow .16s, transform .15s;
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 8px 36px #15b8ef44;
  transform: translateY(-4px) scale(1.02);
}
.feature-grid h3 {
  color: #7eeeff;
  font-size: 1.13rem;
}
.feature-grid p {
  color: #b9e6fb;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px #15b8ef44);
}

.services {
  background: #0d1a2f;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 3px 26px #06497810;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  margin-top: 18px;
}
.service-list li {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 310px;
  background: #192e54;
  border-radius: 13px;
  box-shadow: 0 2px 16px #15b8ef22;
  padding: 26px 20px 26px 20px;
  transition: box-shadow .14s, transform .15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list li:hover, .service-list li:focus {
  box-shadow: 0 9px 38px #15b8ef55;
  transform: translateY(-2px) scale(1.015);
}
.service-price {
  color: #15b8ef;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  margin-top: 4px;
}

/* ---------------------------
  TESTIMONIALS (OPINIONS)
---------------------------- */
.testimonials {
  background: #192e54;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 44px 18px 38px 18px;
  box-shadow: 0 4px 19px #15b8ef12;
}
.testimonials h2 {
  color: #15b8ef;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #182c43;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
}
.star-rating img {
  width: 18px;
  height: 18px;
}

/* ---------------------------
  CONTACT SECTIONS
---------------------------- */
.contact-summary {
  background: #14284e;
  border-radius: 16px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px #15b8ef11;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 20px;
  margin-top: 8px;
}
.contact-list li, .contact-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #b6e1ff;
  font-size: 1.06rem;
}
.contact-list a, .contact-info a {
  color: #15b8ef;
  text-decoration: underline;
  font-weight: 500;
}
.contact-list img, .contact-info img {
  width: 22px;
  height: 22px;
}

/* ---------------------------
  GENERIC TEXT SECTIONS
---------------------------- */
.text-section {
  margin-bottom: 60px;
  background: #14284e;
  border-radius: 18px;
  padding: 40px 24px;
  box-shadow: 0 4px 22px #15b8ef17;
}
.text-section h1, .text-section h2 {
  color: #15b8ef;
}
.text-section ul {
  margin: 12px 0 18px 22px;
  list-style-type: disc;
}
.text-section li {
  margin-bottom: 7px;
}

/* ---------------------------
  FOOTER STYLES
---------------------------- */
footer {
  background: #10203d;
  color: #b6e1ff;
  border-top: 1.5px solid #184278;
  padding: 26px 0 16px 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #f1f5fa;
}
.footer-brand img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 2px 10px #15b8ef44);
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.footer-nav a {
  color: #15b8ef;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s, text-shadow .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #7eeeff;
  text-shadow: 0 2px 8px #11d9f1aa;
}
.footer-contact {
  color: #b6e1ff;
  font-size: 0.98rem;
  margin-top: 6px;
}
.footer-contact a {
  color: #15b8ef;
  text-decoration: underline;
  font-weight: 500;
}
@media (min-width: 800px) {
  footer .container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
  }
  .footer-contact {
    align-self: flex-end;
  }
}

/* ---------------------------
  LISTS, TABLES, MISC ELEMENTS
---------------------------- */
.review-list, .trust-facts, .team-bios, .trend-highlights, .test-type-list, .future-predictions ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 23px;
}
.review-list li, .trust-facts li, .team-bios li, .trend-highlights li, .test-type-list li, .future-predictions ul li {
  background: #192e54;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 14px #15b8ef11;
  flex: 1 1 200px;
  min-width: 180px;
}
.review-category {
  display: inline-block;
  background: #15b8ef;
  color: #14284e;
  font-size: 0.96rem;
  padding: 4px 13px 3.5px 13px;
  border-radius: 22px;
  font-weight: 600;
  margin-top: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.review-filters {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.review-filters ul {
  display: flex;
  gap: 13px;
}
.review-filters li {
  background: #184278;
  color: #f1f5fa;
  font-size: 0.99rem;
  padding: 5px 18px;
  border-radius: 22px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.review-filters li:hover, .review-filters li.selected {
  background: #15b8ef;
  color: #14284e;
}
.comparison-grid {
  background: #14284e;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px #15b8ef0a;
  padding: 20px 10px 34px 10px;
}
.comparison-table {
  overflow-x: auto;
  background: #192e54;
  border-radius: 14px;
  margin-bottom: 26px;
  box-shadow: 0 2px 16px #15b8ef19;
  padding: 8px 10px 10px 10px;
}
.comparison-table table {
  border-collapse: collapse;
  width: 100%;
  color: #f1f5fa;
  min-width: 520px;
}
.comparison-table th, .comparison-table td {
  border-bottom: 1px solid #184278;
  padding: 12px 9px;
  text-align: left;
}
.comparison-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #15b8ef;
  background: #14284e;
}
.comparison-table .editor-choice {
  color: #15b8ef;
  font-weight: bold;
}
.side-by-side-features ul {
  margin-top: 8px;
  gap: 13px;
  display: flex;
  flex-direction: column;
}
.side-by-side-features li strong {
  color: #15b8ef;
}
.editor-choice-desc {
  background: #0d1a2f;
  color: #b1e7ff;
  font-size: 0.99rem;
  padding: 13px 20px;
  border-radius: 12px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.advice-label {
  color: #15b8ef;
  font-weight: bold;
  margin-right: 4px;
}

/* TRENDY-IT Highlight Sections */
.trend-guides, .trend-highlights, .expert-opinions, .future-predictions {
  margin-bottom: 30px;
}
.trend-highlights li, .future-predictions ul li {
  flex: 1 1 200px;
  min-width: 170px;
  background: #184278;
  color: #f1f5fa;
}
.expert-opinions {
  background: #14284e;
  border-radius: 12px;
  padding: 18px 14px;
  margin-bottom: 30px;
}
.expert-opinions h3 {
  color: #7eeeff;
  margin-bottom: 11px;
}
.expert-opinions blockquote {
  color: #f1f5fa;
  font-style: italic;
  border-left: 3px solid #15b8ef;
  margin: 0 0 18px 0;
  padding-left: 13px;
}
.expert-opinions blockquote span {
  color: #15b8ef;
  font-weight: 700;
  font-size: .95rem;
}

.future-predictions h3 {
  color: #15b8ef;
}
.future-predictions ul {
  gap: 9px;
}

/* ---------------------------
  UTILITY CLASSES & ANIMATIONS
---------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: #11294d;
}
::-webkit-scrollbar-thumb {
  background: #184278;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #15b8ef;
}

/* Fade-in animation for sections */
.section, .hero, .features, .services, .testimonials, .contact-summary, .cta, .comparison-grid, .newsletter-signup, .text-section {
  animation: fadeInUp .82s cubic-bezier(.22,.65,.56,1.13) both;
}
@keyframes fadeInUp {
  0% { opacity:0; transform: translateY(24px) scale(.97); }
  100% { opacity:1; transform: translateY(0) scale(1); }
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width: 1000px) {
  .footer-brand {
    margin-bottom: 13px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .review-list, .trust-facts, .team-bios, .trend-highlights, .test-type-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid li,.service-list li, .review-list li, .trust-facts li, .team-bios li, .trend-highlights li, .test-type-list li {
    min-width: unset;
    max-width: unset;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    padding: 16px;
  }
  header .container {
    flex-direction: row;
    gap: 9px;
    min-height: 58px;
    padding-left: 6px;
    padding-right: 6px;
  }
  .hero, .features, .services, .testimonials, .contact-summary, .cta, .comparison-grid, .newsletter-signup, .text-section {
    margin-bottom: 30px;
    padding: 25px 8px;
    border-radius: 13px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.23rem !important; }
  h2 { font-size: 1.04rem !important; }
  .cta-btn {
    font-size: 0.97rem;
    padding: 9px 16px;
  }
  .testimonial-card {
    font-size: 0.97rem;
    border-radius: 12px;
  }
}

/* ---------------------------
  COOKIE BANNER & MODAL
---------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #182c43;
  color: #f1f5fa;
  padding: 23px 22px 23px 22px;
  box-shadow: 0 -2px 16px #15b8ef22;
  z-index: 1100;
  flex-wrap: wrap;
  gap: 18px;
  animation: fadeInUp .6s .14s both;
}
.cookie-banner p {
  color: #f1f5fa;
  font-size: 1.02rem;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  padding: 8px 24px;
  margin: 0 3px;
  background: #14284e;
  color: #15b8ef;
  transition: background 0.16s, color 0.14s, box-shadow .19s;
}
.cookie-btn.accept {
  background: #15b8ef;
  color: #182c43;
  box-shadow: 0 2px 12px #15b8ef44;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #11d9f1;
  color: #11294d;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 98vw;
  max-width: 420px;
  transform: translate(-50%,-60%) scale(.96);
  background: #14284e;
  color: #f1f5fa;
  padding: 40px 24px 32px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 36px #15b8ef44;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp .77s cubic-bezier(.20,.86,.11,.93) both;
}
.cookie-modal h3 {
  color: #15b8ef;
  margin-bottom: 10px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-modal .switch {
  width: 42px;
  height: 24px;
  border-radius: 16px;
  background: #184278;
  position: relative;
  transition: background .2s;
  cursor: pointer;
  flex-shrink:0;
}
.cookie-modal .switch input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #f1f5fa;
  transition: left .21s cubic-bezier(.41,.81,.91,.60);
}
.cookie-modal .switch input:checked + .slider {
  left: 20px;
  background: #15b8ef;
}
.cookie-modal .category .essential {
  color: #18f4d8;
  font-size: 0.93rem;
  font-weight: 600;
  margin-left: 6px;
  font-style: italic;
}
.cookie-modal .actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal .close-btn {
  background: transparent;
  color: #15b8ef;
  font-size: 1.5rem;
  border: none;
  align-self: flex-end;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #fff;
}

@media (max-width: 540px) {
  .cookie-modal {
    padding: 20px 8px 18px 8px;
    max-width: 99vw;
    font-size: 0.97rem;
  }
}

/* ---------------------------
  NEON/TECH INSPIRED ACCENT DECOR
---------------------------- */
.cta-btn, .main-nav a, .mobile-nav a, .review-category, .editor-choice, .feature-grid li, .service-list li, .testimonial-card, .footer-nav a {
  box-shadow: 0 0 0 0 transparent;
}
.cta-btn, .review-category {
  border: 1.5px solid #7eeeff44;
  filter: drop-shadow(0 2px 12px #15b8ef55);
}
.card::before, .testimonial-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 16px;
  z-index: 0;
  pointer-events: none;
  transition: box-shadow .21s, border .11s;
}
.card:hover::before, .testimonial-card:hover::before {
  box-shadow: 0 0 30px 5px #15b8ef33, 0 2px 28px #7eeeff22;
  border: 2px solid #7defff;
}

/* ----- END ----- */
