.anna-hero-section {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  margin-top: var(--header-height);
  background-color: var(--color-bg-soft);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.anna-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 43, 37, 0.58) 0%, rgba(22, 43, 37, 0.42) 35%, rgba(22, 43, 37, 0.08) 72%, rgba(22, 43, 37, 0.02) 100%);
  background-size: 120% 120%;
  animation: annaHeroOverlayShift 14s ease-in-out infinite alternate;
}

.anna-hero-section::after {
  content: "";
  position: absolute;
  right: clamp(1rem, 8vw, 7rem);
  top: clamp(4rem, 16vh, 9rem);
  width: clamp(16rem, 26vw, 24rem);
  height: clamp(16rem, 26vw, 24rem);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 196, 180, 0.22) 0%, rgba(125, 196, 180, 0.08) 34%, rgba(125, 196, 180, 0) 72%);
  filter: blur(12px);
  opacity: 0.8;
  pointer-events: none;
  animation: annaHeroGlow 9s ease-in-out infinite alternate;
}

.anna-hero-section>* {
  position: relative;
  z-index: 1;
}

.anna-hero__inner {
  width: 100%;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.anna-hero__content {
  max-width: 55rem;
  display: grid;
  gap: 1.5rem;
  color: var(--color-white);
}

.anna-hero__overline {
  color: rgba(255, 255, 255);
  letter-spacing: 0.12em;
  animation: annaHeroOverlineDrift 7s ease-in-out infinite;
  font-family: 'Lexend Giga', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3.2px;
  color: white;
}

.anna-hero__heading {
  margin: 0;
  font-size: var(--heading-section);

  line-height: 1.4;
  font-weight: 700;
  color: var(--color-white);
}

.anna-hero__heading em {
  font-style: normal;
}

.anna-hero__word {
  display: inline-flex;
  overflow: hidden;
  padding-top: 0.04em;
  padding-bottom: 0.12em;
  margin-top: -0.04em;
  margin-bottom: -0.12em;
}

.anna-hero__word-inner {
  display: inline-block;
}

.anna-hero__description {
  max-width: 48rem;
  margin: 0;
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.anna-hero__ctas {
  display: flex;
  /*   flex-wrap: wrap; */
  gap: 1rem;
  align-items: center;
  margin: 1.5rem 0;
}

.anna-hero-section .anna-btn--hero-primary {
  min-width: 17.5rem;
  transform: none !important;
  font-weight: 700;
}

.anna-hero-section .anna-btn--hero-link {
  /*   max-width: 16rem; */
  font-size: var(--text-md);
  padding: 0 1.25rem;
  line-height: 1.35;
  transform: none !important;
}

/* ── Stats overlay (inside hero, desktop only) ───────────────────────────── */
.anna-hero__stats--overlay {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  max-width: 34rem;
}

.anna-hero__stats--overlay .anna-hero__stat {
  animation: annaHeroStatFloat 6.5s ease-in-out infinite;
}

.anna-hero__stats--overlay .anna-hero__stat:nth-child(2) {
  animation-delay: 1.2s;
}

.anna-hero__stats--overlay .anna-hero__stat:nth-child(3) {
  animation-delay: 2.4s;
}

.anna-hero__stat {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 0.9rem;
  padding: 1rem;
}

.anna-hero__stat-value {
  display: block;
  color: var(--color-white);
  font-size: var(--heading-card);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.anna-hero__stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-sm);
  line-height: 1.4;
}

/* ── Stats strip (below hero, mobile only) ───────────────────────────────── */
.anna-hero__stats-strip {
  display: none;
  /* shown only on mobile via media query */
  background: #fff;
  padding: 1.5rem 0;
}

.anna-hero__stats-strip__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* .anna-hero__stats-strip__list {
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
} */

.anna-hero__stats-strip__item {
  background: #F2F6F2;
  border-radius: 0.9rem;
  padding: 1rem;
  text-align: left;
}

.anna-hero__stats-strip__value {
  display: block;
  color: #007063;
  font-size: var(--heading-card);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.anna-hero__stats-strip__label {
  display: block;
  color: #59656f;
  font-size: 0.875rem;
  line-height: 1.4;
}

.anna-hero__stats-strip__description {
  display: none;
  /* shown on mobile only */
  margin: 1.25rem 0 0;
  color: #59656f;
  font-size: var(--text-md);
  line-height: 1.7;
}

.anna-hero__trust {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@keyframes annaHeroGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.56;
  }

  100% {
    transform: translate3d(-1rem, 1.1rem, 0) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes annaHeroOverlayShift {
  0% {
    background-position: 0% 50%;
    opacity: 0.92;
  }

  100% {
    background-position: 100% 50%;
    opacity: 1;
  }
}

@keyframes annaHeroOverlineDrift {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.72;
  }

  50% {
    transform: translate3d(0, -3px, 0);
    opacity: 1;
  }
}

@keyframes annaHeroStatFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 900px) {
  .anna-hero-section {
    min-height: auto;
    background-position: 90% center;
  }

  .anna-hero__ctas {
    margin: 0 0;
  }

  .anna-hero__stat-value {
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  }

  .anna-hero-section .anna-btn--hero-primary {
    min-width: 0;
    width: fit-content;
    font-size: 0.9rem;
  }

  .anna-hero-section .anna-btn--hero-link {
    max-width: none;
  }

  .anna-hero__overline {
    max-width: 55vw;
  }
}

@media (prefers-reduced-motion: reduce) {

  .anna-hero-section::before,
  .anna-hero-section::after,
  .anna-hero__overline,
  .anna-hero__stats--overlay .anna-hero__stat {
    animation: none !important;
  }
}


.anna-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.anna-intro__inner--single {
  grid-template-columns: 1fr;
}

.anna-intro__body {
  display: grid;
  gap: 1.25rem;
}

.anna-intro__heading {
  margin: 0;
  color: var(--color-primary);
  font-size: var(--heading-section);
  line-height: 1.2;
}

.anna-intro__copy {
  margin-top: var(--space-5);
  font-size: var(--text-md);
}

.anna-intro__copy p {
  color: #59656f;
  line-height: 1.9;
}

.anna-intro__quote {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  border-left: 4px solid #4CA591;
	
}

.anna-intro__quote p{font-size: clamp( 1.6875rem, 1.20rem + 0.90vw, 1.875rem) !important;}
.anna-intro__quote {
  color: #4CA591 !important;
}

.anna-intro__quote p,
.anna-intro__quote cite {
  margin: 0;
  color: #6aa99a;
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.45;
}

.anna-intro__quote cite {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.9rem;
}

.anna-recognition__card {
  background: #F2F6F2;
  border-radius: 1.4rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 12px 30px rgba(15, 31, 27, 0.05);
}

.anna-recognition__heading {
  margin: 0 0 1.25rem;
  color: var(--color-primary);
  font-size: clamp( 1.6875rem, 1.36rem + 0.45vw, 1.75rem);
  line-height: 1.2;
}

.anna-recognition__description {
  margin: 0 0 1rem;
}

.anna-recognition__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.anna-recognition__item {
  display: grid;
  grid-template-columns: 0.85rem 1fr;
  gap: 0.85rem;
  align-items: start;
}

.anna-recognition__item-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #4CA591;
  margin-top: 0.45rem;
}

.anna-recognition__item-text {
  color: rgba(26, 43, 37, 0.72);
  line-height: 1.8;
	    font-size: var(--text-md);
}

@media (max-width: 1500px) {
  .anna-hero__inner {
    padding: 0;
  }

  .anna-hero__content {
    max-width: 55vw;
    gap: .8rem;
  }

  .anna-hero__ctas {
    margin: 10px 0;
  }

  h2 {
    font-size: var(--heading-section);
  }
}

@media (max-width: 900px) {
  .anna-intro__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .anna-hero__content {
    max-width: none;
  }
}

/**
 * Recognition Section CSS
 *
 * @package Anna_Baylis
 * @since   1.0.0
 */

/* Styles inlined into intro.css for file efficiency.
 * This file is a valid placeholder kept for the enqueue system.
 * All recognition styles live in sections/intro.css.
 */
.anna-services {
  background: #FBFAF5;
}

.anna-services__header {
  max-width: 42rem;
  margin: 0 0 3rem;
}

.anna-services__heading {
  margin: 0.5rem 0 0;
  color: var(--color-primary);
  font-size: var(--heading-section);
  line-height: 1.02;
}

.anna-services__description {
  margin-top: 1rem;
  color: rgba(26, 43, 37, 0.74);
}

.anna-services__grid {
  /*   display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0; */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch;
}

.anna-services__grid>li {
  /*   min-width: 0; */
  display: flex;
  height: 100%;
  min-width: 0;
}

.anna-services__grid>li .anna-service-card--feature {
  height: 100%;
  border-radius: 24px;
}

.anna-service-card--feature {
  width: 100%;
  min-height: 24rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 50px;
  border-radius: 1.25rem;
  gap: 14px;
  /*     border: 1px solid rgba(0,112,99,0.08); */
  /*     box-shadow: 0 18px 40px rgba(15,31,27,0.05); */

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

/* .anna-service-card--feature:hover {
  border-color: rgba(0, 112, 99, 0.18);
  box-shadow: 0 24px 54px rgba(15, 31, 27, 0.09);
} */

.anna-service-card__number {

  display: block;
  color: #87B4AE;
  font-size: clamp(2.9375rem, 2.28rem + 1.15vw, 3.75rem);
  line-height: 1;
  font-family: var(--font-heading);
  font-weight: 700;
}

.anna-service-card__title {
  margin: 1rem 0 0.75rem;
  color: #007063;
  font-size: clamp(1.4375rem, 1.36rem + 0.45vw, 1.25rem);
  line-height: 1.1;

  font-family: 'Lexend';
}

.anna-service-card__excerpt {
  color: #4A5568;
  line-height: 1.8;
  flex: none;
  font-size: var(--text-md);
}

.anna-service-card__link {
  color: #0F695D;
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  width: fit-content;
  font-size: 16px;

}

.anna-service-card__link::after {
  content: "→";
  font-size: var(--text-md);
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.anna-service-card__link:hover::after {
  transform: translateX(4px);
}

.anna-service-card__link:hover {
  color: var(--color-primary-dark);
}

.anna-services__footer {
  margin-top: 2rem;
}

.anna-services__grid li:nth-child(1) .anna-service-card {
  background-image: url('https://mediumseagreen-barracuda-518910.hostingersite.com/wp-content/uploads/2026/06/Background-3-1.png');
}

.anna-services__grid li:nth-child(2) .anna-service-card {
  background-image: url('https://mediumseagreen-barracuda-518910.hostingersite.com/wp-content/uploads/2026/06/Background-4-1.png');
}

.anna-services__grid li:nth-child(3) .anna-service-card {
  background-image: url('https://mediumseagreen-barracuda-518910.hostingersite.com/wp-content/uploads/2026/06/Background-2-1.png');
}

.anna-service-card {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  .anna-services__grid {
    grid-template-columns: 1fr;
  }

/*   html {
    font-size: 18px;
  } */
}

/**
 * About Section Styles
 *
 * @package Anna_Baylis
 * @since   1.0.0
 */

.anna-about {
  background: #fff;
  overflow: hidden;
}

.anna-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--grid-gap-lg);
  align-items: center;
}

/* ── About image side ─────────────────────────────────────────────────────── */
.anna-about__visual {
  position: relative;
  max-width: 550px;
  /*     max-height: 640px; */
  padding: 16px;
  background: #F0F5F3;
  border-radius: 24px;
}

.anna-about__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 18px 48px rgba(120, 182, 173, 0.16);
}

.anna-about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.9s var(--ease-smooth);
  will-change: transform;
}

.anna-about__visual:hover .anna-about__image-wrap img {
  transform: scale(1.04);
}

/* Floating accent shape behind image */
.anna-about__shape {
  position: absolute;
  bottom: -var(--space-8);
  left: -var(--space-8);
  width: 60%;
  aspect-ratio: 1;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: rgba(0, 112, 99, 0.07);
  z-index: var(--z-below);
  animation: anna-float-slow 10s ease-in-out infinite;
}

/* Experience badge overlaid on image */
.anna-about__badge {
  position: absolute;
  bottom: var(--space-6);
  right: calc(-1 * var(--space-8));
  background: rgba(247, 250, 248, 0.96);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  box-shadow: 0 18px 38px rgba(120, 182, 173, 0.18);
  text-align: center;
  z-index: var(--z-raised);
  min-width: 110px;
}

.anna-about__badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-bold);
  color: #0b7f74;
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}

.anna-about__badge-text {
  display: block;
  font-size: var(--text-xs);
  color: #6d827f;
  font-weight: var(--font-weight-medium);
  margin-top: var(--space-1);
  line-height: var(--leading-snug);
}

/* ── About content side ───────────────────────────────────────────────────── */
.anna-about__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.anna-about__heading {
  font-size: var(--heading-section);
  font-weight: var(--font-weight-semibold);
  line-height: var(--leading-tight);
  color: #007063;
  letter-spacing: var(--tracking-snug);
  margin: 0;
}

.anna-about__body {
  font-size: var(--text-md);
  line-height: 1.95;
  color: #59656f;
}

.anna-about__quote {
  border-left-width: thick;
}

.anna-about__quote p {
  /*   font-family:  var(--font-heading); */
  font-size: var(--text-md);
  font-style: italic;
  font-weight: var(--font-weight-regular);
  color: #5EAD9E;
  margin: 0;
  line-height: var(--leading-snug);
}

/* ── Expertise tags ───────────────────────────────────────────────────────── */
.anna-about__expertise-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: #7aa69f;
  margin-bottom: var(--space-3);
}

.anna-tag-list__item .anna-badge {
  padding: 1rem 0.625rem;
}

.anna-tag-list__item {
  display: none;
}

.anna-reveal .anna-btn--secondary {
  border: none;
  padding: 0;
}

.anna-reveal .anna-btn--secondary:hover {
  background: transparent;
  color: #007063;
  box-shadow: none;
  text-decoration: underline;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1201px) {
  .anna-service-card--feature {
    padding: 20px 20px;

    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;

  }

  .anna-service-card__excerpt {
    margin: 0;
  }

  .anna-service-card__title {
    margin: .5rem 0 0;
  }

  .anna-cta {
    margin: 4.5rem 0;
    padding: 0;
  }

}

@media (max-width: 1024px) {
  .anna-service-card--feature {
    padding: 20px 20px;
  }

  .anna-about__inner {
    grid-template-columns: 1fr;
  }

  .anna-about__visual {
    display: none;
  }

  .anna-about__heading {
/*     font-size: var(--text-3xl); */
	  font-size: var(--heading-section);
  }
}

.anna-testimonials-section {
  background: #007063;
  color: var(--color-white);
}

.anna-testimonials-section .grw-slider-header {
  display: none;
}

.anna-testimonials-section .rplg .grw-slider .grw-slider-reviews {
  padding: 0 !important;
  margin: 0 !important;
}

.anna-testimonials-section .rplg .grw-row-m .grw-slider-header+.grw-slider-content {
  max-width: 100% !important;
}

.anna-testimonials-section .rplg .rplg-stars svg use {
  fill: rgb(161, 200, 66);
}

.anna-testimonials-section .rplg .grw-slider:not(.wp-dark) .grw-slider-review-inner.grw-slider-review-border {
  padding: 1.55rem 1.45rem 1.35rem !important;
  border-radius: 0.7rem !important;
  background: #197E73 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.anna-testimonials-section .rplg .rplg-review-avatar {
  width: 40px !important;
  height: 40px !important;
}

.anna-testimonials-section .rplg .rplg-stars {
  margin: 0.45rem 0 !important;
}

.anna-testimonials-section .rplg .rplg-review-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.85 !important;
  font-size: var(--text-md) !important;
  font-family: var(--font-heading) !important;
}

.anna-testimonials-section .rplg .rplg-review-name {
  color: var(--color-white) !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  margin-right: 0.45rem !important;
}

.anna-testimonials-section .rplg .rplg-review-time {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.72rem !important;
  text-shadow: none !important;
}

.anna-testimonials-section__header {
  margin-bottom: 2rem;
}

.anna-testimonials-section .anna-eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.anna-testimonials-section__heading {
  margin: 0.4rem 0 0;
  line-height: 0.95;
}

.anna-testimonials-section__heading-main {
  display: block;
  color: var(--color-white);
  font-size: clamp(2.625rem, 2.28rem + 1.15vw, 3rem);
  font-weight: 700;
}

.anna-testimonials-section__heading-sub {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: clamp(2.625rem, 2.28rem + 1.15vw, 3rem);
  font-weight: 400;
}

.anna-testimonials-section__summary {
  margin: 1.5rem 0 4rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.rplg .rplg-more-toggle {
  color: #FBFAF5 !important;
  cursor: pointer !important;
}

.anna-testimonials-section .rplg .grw-slider .rplg-box-content {
  height: 200px !important;
}

.anna-testimonials-section__footer {
  margin-top: 2rem;
  text-align: center;
}

.anna-testimonials-section__link {
  min-width: 13.5rem;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.anna-testimonials-section__link:hover {
  color: var(--color-white);
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
}

@media (max-width: 1024px) {
  .anna-testimonials-inner--static {
    margin-top:2rem;
  }

  .anna-testimonial {
    min-height: auto;
  }

  .anna-testimonials-section__footer {
    margin-top: 2rem;
  }
}

.anna-cta {
  background: #FFFEFA;
  color: var(--color-heading);
  text-align: center;
  margin: 80px 0;
  padding: 80px 0;
}

.anna-cta .anna-container {
  max-width: 1100px;
}

.anna-cta__inner {
  /*   max-width: 980px; */
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
}

.anna-cta .anna-eyebrow {
  color: #0F695D;
  letter-spacing: 3.2px;
  line-height: 1;
  justify-content: center;
  font-weight: 500;
  margin: 0;
  text-transform: capitalize;
}

.anna-cta__heading {
  /*   max-width: 980px; */
  margin: 0 auto;
  color: var(--color-primary);
  font-size: var(--heading-section);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  margin-bottom: 30px;
  margin-bottom: 20px;
}

.anna-cta__description {
  max-width: 760px;
  margin: 1.25rem auto 0;
  color: #0a7a6f;
  font-size: clamp(1.5rem, 1.36rem + 0.45vw, 1.75rem);
  font-weight: 500;
  line-height: 1.25;
}

.anna-cta__trust {
  max-width: 720px;
  margin: 0.95rem auto 0;
  color: #0a7a6f;
  line-height: 1.7;
  font-size: 0.98rem;
}

.anna-cta__actions {
  margin-top: 1rem;
}

.anna-testimonials-section .anna-testimonials-section__footer .anna-btn {
  border: none !important;
}

.anna-cta__actions .anna-btn {
  min-width: 234px;
  min-height: 58px;
  padding: 0.95rem 1.8rem;
  border-radius: 0.45rem;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: none;
}

@media (max-width: 1024px) {
  .anna-hero__stats--overlay {
    grid-template-columns: 1fr;
  }

  .anna-service-card--feature {
    min-height: none;
  }
	.anna-testimonials-section .rplg .grw-slider:not(.wp-dark) .grw-slider-review-inner.grw-slider-review-border{
		margin:0 !important;
	}
}

@media (max-width: 767px) {

  /* Swap: hide overlay stats, show strip stats */
  .anna-hero__stats--overlay {
    display: none;
  }

  .anna-hero__stats-strip {
    display: block;
  }

  /* Hide description inside hero on mobile — rendered below cards instead */
  .anna-hero__description--overlay {
    display: none;
  }

  /* Show description in the strip below cards */
  .anna-hero__stats-strip__description {
    display: block;
  }

  /* Hide secondary CTA on mobile */
  .anna-hero__cta-secondary {
    display: none;
  }

  /* Hero trust line not needed when stats are below */
  .anna-hero__trust {
    display: none;
  }
}


@media (max-width: 768px) {
  .anna-cta__inner {
    max-width: 100%;
  }

  .anna-cta__heading {
/*     font-size: clamp(2.25rem, 2rem + 0.95vw, 2.75rem); */
	          font-size: var(--heading-section);
  }

  .anna-cta__description {
    font-size: clamp(1.25rem, 1.18rem + 0.28vw, 1.375rem);
  }

  .anna-cta__trust {
    font-size: 0.92rem;
  }

  .anna-cta__actions .anna-btn {
    min-width: 210px;
    min-height: 52px;
  }
}


.about-read-more {
  color: #0F695D;
  font-weight: 700;
  border-bottom: 2px solid var(--color-primary);
  width: fit-content;
  font-size: 1rem;
  display: block;
  transition: all 0.3s ease;
}

.about-read-more:hover {
  text-decoration: none !important;
}

.about-read-more:after {
  content: "→";
  font-size: var(--text-md);
  transition: all 0.3s ease;
  margin-left: 5px;
}

.about-read-more:hover::after {
  margin-left: 8px;
}



.anna-about-page-coach__copy{
	    font-size: var(--text-md) !important;
}