:root {
  /* Colors */
  --primary: #00524a;
  --primary-hover: #003d37;
  --primary-container: #256a62;
  --on-primary: #ffffff;
  --on-primary-container: #a4e7dd;
  
  --surface: #fef7ff;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f9f1fd;
  --surface-container-high: #ede6f1;
  --on-surface: #1d1a22;
  --on-surface-variant: #3f4947;
  
  --error: #ba1a1a;
  --outline-variant: #bfc9c6;
  --stone-200: #e5e7eb;
  --stone-300: #d1d5db;
  --stone-400: #9ca3af;
  --stone-500: #6b7280;

  /* Fonts */
  --font-headline: 'Noto Serif', serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Radii */
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  line-height: 1.5;
}

h1, h2, h3, h4, .glass-title, .logo {
  font-family: var(--font-headline);
  color: var(--primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Utilities */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.icon-fill {
  font-variation-settings: 'FILL' 1;
}

.bg-stone-200 { background-color: var(--stone-200); }
.bg-stone-300 { background-color: var(--stone-300); }
.bg-stone-400 { background-color: var(--stone-400); }

/* Urgency Bar */
.urgency-bar {
  background-color: var(--primary);
  color: var(--on-primary);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 60;
}
.urgent-number {
  background: white;
  color: var(--primary);
  padding: 0 0.5rem;
  border-radius: var(--radius-md);
  display: inline-block;
}
.urgent-pulse {
  animation: pulse-down 2s infinite ease-in-out;
}
@keyframes pulse-down {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(2px); opacity: 0.8; }
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img{
  max-width: 100px;
}
.nav-links {
  display: none;
  gap: 2rem;
}
@media (min-width: 769px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-weight: 500;
  color: var(--stone-500);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}
.nav-cta-main{
  display: flex;
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--primary-hover);
  opacity: 0.9;
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
}
.badge {
  display: inline-block;
  background: rgba(37, 106, 98, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .hero h1 { font-size: 4rem; }
}
.hero-desc {
  font-size: 1.125rem;
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
  max-width: 500px;
}
.trust-chips {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.trust-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-chip-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-headline);
}
.trust-chip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-500);
  font-weight: 700;
}
.hero-actions {
  margin-bottom: 1.5rem;
}
.micro-trust {
  font-size: 0.75rem;
  color: var(--stone-500);
  margin-top: 0.5rem;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  font-weight: 500;
}
.avatars {
  display: flex;
}
.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--surface);
  margin-left: -0.5rem;
  overflow: hidden;
}
.avatar:first-child { margin-left: 0; }
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider-wrap {
  position: relative;
}
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.slider-container img {
  -webkit-user-drag: none;
  pointer-events: none;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* The container now acts as the single background shell */
.floating-badges {
  position: absolute;
  top: 90%;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 99;
  background: rgba(255, 255, 255, 0.5); 
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  padding: 1rem;
  border-radius: 1.25rem;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.badge-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
}

.badge-item::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
}
.glass-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.4);
  max-width: 250px;
  display: none;
}
@media (min-width: 640px) {
  .glass-card { display: block; }
}
.glass-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.glass-desc {
  font-size: 0.875rem;
  color: var(--stone-500);
  font-style: italic;
}

/* Stats */
.stats {
  background-color: var(--surface-container-low);
  padding: 4rem 1.5rem;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone-500);
  font-weight: 700;
}

/* Results section */
.results-section {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.results-header {
  text-align: center;
  margin: 0 auto 4rem;
}
.pre-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.results-header h2 {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.results-header p {
  color: var(--on-surface-variant);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.patient-slider {
  aspect-ratio: 4/3;
}
.before-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 10;
  clip-path: inset(0 50% 0 0);
}
.after-image {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  z-index: 20;
  transform: translateX(-50%);
  pointer-events: none;
}
.slider-handle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.tag {
  position: absolute;
  top: 0.5rem;
  z-index: 30;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.tag-before { left: 0.5rem; }
.tag-after { right: 0.5rem; background: rgba(0,82,74,0.6); }

.card-content {
  padding: 1.5rem;
  flex-grow: 1;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.card-header h3 {
  font-size: 1.125rem;
}
.micro-text {
  font-size: 0.625rem;
  color: var(--stone-500);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.icon-primary { color: var(--primary); }
.case-desc {
  font-size: 0.75rem;
  color: var(--on-surface-variant);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.testimonial {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
}

.results-cta {
  text-align: center;
  margin-top: 4rem;
}

/* Trust Pillars */
.trust-pillars {
  padding: 5rem 1.5rem 8rem 1.5rem;
}
.trust-pillars .pre-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.trust-pillars .pre-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.trust-container {
  max-width: 1200px;
  margin: 0 auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 860px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
.trust-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .trust-cards { grid-template-columns: 1fr 1fr; }
  .mt-offset { margin-top: 3rem; margin-bottom: -3rem; }
}
.trust-card {
  background: var(--surface-container-low);
  padding: 2rem;
  border-radius: var(--radius-lg);
}
.icon-lg {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.trust-card h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.trust-card p {
  font-size: 0.875rem;
  color: var(--stone-500);
}
.trust-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.trust-desc {
  font-size: 1.125rem;
  color: var(--on-surface-variant);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.support-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(37, 106, 98, 0.05);
  border: 1px solid rgba(37, 106, 98, 0.1);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}
.support-box .icon-fill {
  color: var(--primary);
  font-size: 2.5rem;
}
.support-box strong {
  display: block;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.support-box span {
  font-size: 0.875rem;
  color: var(--stone-500);
}

/* Testimonials */
.testimonials {
  padding: 6rem 1.5rem;
  background-color: var(--primary);
  color: var(--on-primary);
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--on-primary);
}
.testimonials-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
}
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.test-card {
  background: var(--surface-container-lowest);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.test-quote {
  font-style: italic;
  color: var(--on-surface-variant);
  margin-bottom: 2rem;
}
.test-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.test-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.test-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--on-surface);
}
.test-info span {
  font-size: 0.75rem;
  color: var(--stone-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Timeline */
.timeline-section {
  padding: 6rem 1.5rem;
  background: rgba(237, 230, 241, 0.3);
  text-align: center;
}
.timeline-section .pre-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.timeline-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.timeline-section .sub-title {
  font-size: 1.125rem;
  color: var(--on-surface-variant);
  font-style: italic;
  margin-bottom: 3rem;
}
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .timeline-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
}
.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .step-down { padding-top: 8rem; }
}
.timeline-path {
  position: absolute;
  top: 1rem;
  left: 0;
  width: 100%;
  height: calc(100% - 2rem);
  z-index: 0;
  display: none;
}
@media (min-width: 768px) {
  .timeline-path { display: block; }
}
.flowing-path {
  animation: flow-dash 1s linear infinite;
}
@keyframes flow-dash {
  from { stroke-dashoffset: 20; }
  to { stroke-dashoffset: 0; }
}
.step-circle {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: var(--on-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), inset 0 0 0 4px white;
  transition: transform 0.3s;
}
.timeline-step:hover .step-circle {
  transform: scale(1.1);
}
.timeline-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.timeline-step p {
  font-size: 0.8rem;
  color: var(--on-surface-variant);
}

/* FAQ */
.faq {
  padding: 6rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--surface-container-low);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item summary {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h4 { font-size: 1rem; margin: 0; }
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--on-surface-variant);
}
details[open] summary span {
  transform: rotate(180deg);
}
details summary span {
  transition: transform 0.3s;
}

/* Final CTA */
.final-cta {
  padding: 6rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-box {
  background: var(--primary-container);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--on-primary-container);
}
.cta-box h2 {
  color: inherit;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .cta-box h2 { font-size: 3rem; }
}
.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-inline: auto;
}
.btn-white {
  background: white;
  color: var(--primary);
  display: inline-flex;
}
.btn-white:hover {
  background: var(--surface-container-low);
  transform: scale(1.05);
}
.slots-alert {
  margin-top: 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0.8;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* Footer */
.footer {
  background: #fdfbf9;
  padding: 4rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1.5fr; }
}
.footer-col .footer-logo img{
  max-width: 120px;
  margin-bottom: 20px;
}
.social-icons a {
  width: 2.5rem; height: 2.5rem;
  background: var(--on-primary);
  border: 1px solid var(--primary-hover);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-surface);
  cursor: pointer;
  transition: all 0.3s;
}
.social-icons a:hover {
  background: var(--primary);
  color: white;
}
.footer-col .social-icons i{
  font-size: 20px;
  color: var(--primary);
  transition: all 0.3s ease;
}
.footer-col .social-icons a:hover i{
  color: var(--on-primary);
}
.footer-col h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  color: var(--stone-500);
}
.footer-col p {
  font-size: 0.875rem;
  color: var(--stone-500);
  margin-bottom: 1rem;
}
.footer .social-icons {
  display: flex;
  gap: 1rem;
}
.footer .social-icons a{
  color: var(--primary);
}
.footer .social-icons a:hover{
  color: var(--on-primary);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--stone-200);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--stone-400);
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Mobile Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem 1.5rem 0 0;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
  z-index: 50;
}
@media (min-width: 768px) {
  .bottom-nav { display: none; }
}
@media (max-width: 768px) {
  .footer{
    padding-bottom: 7rem;
  }
}
.bottom-nav-item {
   flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
  color: var(--stone-500);
  font-size: 0.625rem;
  font-weight: 700;
  gap: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.bottom-nav-item.prime {
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
}
.bottom-nav-item span.material-symbols-outlined {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.bottom-nav-item.prime span.material-symbols-outlined {
  margin-bottom: 0;
}

/* Animations and Review Overrides */
@keyframes btn-pop-anim {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 82, 74, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(0, 82, 74, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 82, 74, 0); }
}

.btn-pop {
  animation: btn-pop-anim 2.5s infinite ease-in-out;
}

.testimonials-cta {
  text-align: center;
  margin-top: 3.5rem;
  width: 100%;
}
