:root {
  --color-primary: #095F38;
  --color-hover: #BFCD42;
  --color-text: #000000;
  --color-hero-bg: #F6F4EF;
  --color-price-bg: #BFCD42;
  --color-whatsapp-bg: #EB9F25;
  --color-caption-gray: #9E9E9E;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--color-text);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  overflow-x: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

.specialties-section {
  order: 2;
}

.exams-section {
  order: 3;
}

.trust-section {
  order: 4;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 991.98px) {
  .show-desktop-only {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hide-on-desktop-only {
    display: none !important;
  }
}

.container {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Header */
.site-header {
  padding-block: 1.25rem;
  background: #fff;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand-logo {
  width: 8.5rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: 0.375rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}

.nav-link:hover {
  background-color: var(--color-hover);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Hero */
.hero-section {
  background: var(--color-hero-bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "media"
    "price"
    "heading"
    "text"
    "actions"
    "stats";
  padding-block: 0 2.5rem;
}

.hero-media {
  grid-area: media;
  margin: 0 -1.25rem;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-price-tag {
  grid-area: price;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.5rem;
  background: var(--color-price-bg);
  border-radius: 0;
  padding: 0.75rem 1.25rem;
  margin: 0 -1.25rem 1rem;
}

.hero-price-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.hero-price-icon {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.hero-price-text {
  margin: 0;
  color: var(--color-primary);
  font-size: 0.9rem;
  line-height: 1.3;
}

.hero-price-label {
  font-weight: 500;
}

.hero-price-value {
  font-weight: 700;
  font-size: 1.2rem;
}

.hero-price-divider {
  align-self: stretch;
  width: 1px;
  background: rgba(9, 95, 56, 0.35);
  flex-shrink: 0;
}

.hero-price-caption {
  margin: 0;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1.3;
  text-align: left;
}

.hero-heading {
  grid-area: heading;
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.1;
  text-align: center;
}

.hero-text {
  grid-area: text;
  margin: 0 0 1.5rem;
  color: var(--color-text);
  font-weight: 300;
  font-size: 1rem;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.btn-whatsapp-hero,
.btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.5rem;
  padding-inline: 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
}

.btn-whatsapp-hero img,
.btn-call img {
  width: 1.35rem;
  height: 1.35rem;
}

.btn-whatsapp-hero {
  background: var(--color-whatsapp-bg);
  color: #FFFFFF;
}

.btn-call {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.hero-caption {
  grid-area: caption;
  margin: 0 0 1.5rem;
  color: var(--color-caption-gray);
  font-weight: 400;
  font-size: 0.85rem;
  text-align: center;
}

.hero-stats {
  grid-area: stats;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  padding-inline: 0.5rem;
  border-left: 1px solid var(--color-primary);
  text-align: center;
}

.hero-stat:first-child {
  border-left: none;
}

.hero-stat img {
  width: auto;
  height: 2.5rem;
}

.hero-stat span {
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.3;
}

/* Specialties */
.specialties-section {
  background: #fff;
  padding-block: 2.5rem;
}

.specialties-inner {
  display: grid;
  grid-template-columns: 7.25rem 1fr;
  grid-template-areas:
    "media heading"
    "media rule"
    "media text"
    "badges badges";
  column-gap: 1.25rem;
  row-gap: 0;
}

.specialties-media {
  grid-area: media;
  position: relative;
}

.specialties-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.specialties-heading {
  grid-area: heading;
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
}

.specialties-text {
  grid-area: text;
  margin: 0;
  color: var(--color-text);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.4;
}

.specialties-rule {
  grid-area: rule;
  width: 100%;
  margin: 0.75rem 0;
  border: none;
  border-top: 1px solid #A8C836;
}

.specialties-badges {
  grid-area: badges;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.specialty-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  border: none;
  border-radius: 0.6rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0.9rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
}

.specialty-badge img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.specialty-badge-more {
  grid-column: 1 / -1;
  justify-self: center;
}

/* Exams */
.exams-section {
  background: var(--color-hero-bg);
  padding-block: 0 2.5rem;
}

.exams-photo {
  width: 100%;
  margin: 0 0 1.5rem;
}

.exams-heading {
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
  text-align: center;
}

.exams-rule {
  width: 50%;
  margin: 0.75rem auto;
  border: none;
  border-top: 1px solid #A8C836;
}

.exams-text {
  margin: 0 0 1.5rem;
  color: var(--color-text);
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
}

.exams-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.exam-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  padding: 1rem;
  text-align: left;
}

.exam-item-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.25rem;
  height: 3.25rem;
  background: #EDF2DD;
  border-radius: 0.6rem;
}

.exam-item-icon-wrap img {
  width: 1.9rem;
  height: 1.9rem;
}

.exam-item-divider {
  width: 1px;
  align-self: stretch;
  background: #D9D9D9;
  flex-shrink: 0;
}

.exam-item-body {
  display: flex;
  flex-direction: column;
}

.exam-item-title {
  margin: 0 0 0.15rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.exam-item-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.35;
}

.exams-seal-mobile {
  display: block;
  width: 100%;
  aspect-ratio: 990 / 249;
  object-fit: cover;
  object-position: left;
}

/* Trust */
.trust-section {
  background: var(--color-hero-bg);
  padding-block: 0 2.5rem;
}

.trust-photo {
  width: 100%;
  margin: 0 0 1.5rem;
}

.trust-heading {
  margin: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
  text-align: center;
}

.trust-rule-top {
  width: 50%;
  margin: 0.75rem auto;
  border: none;
  border-top: 1px solid #A8C836;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #FFFFFF;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
  padding: 1rem;
  text-align: left;
}

.trust-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
}

.trust-card-divider-vertical {
  width: 1px;
  align-self: stretch;
  background: #D9D9D9;
  flex-shrink: 0;
}

.trust-card-body {
  display: flex;
  flex-direction: column;
}

.trust-card-title {
  margin: 0 0 0.15rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.trust-card-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.35;
}

.trust-stats {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: #457A2C;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  text-align: center;
}

.trust-stat img {
  width: 2.5rem;
  height: 2.5rem;
}

.trust-stat p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: #FFFFFF;
  line-height: 1.3;
}

.trust-stat strong {
  font-weight: 700;
  font-size: 0.9rem;
}

.trust-stat span {
  font-weight: 400;
  font-size: 0.7rem;
}

/* How to schedule */
.how-section {
  order: 5;
  background: var(--color-hero-bg);
  padding-block: 0 2.5rem;
}

.how-mobile-heading {
  margin: 0 0 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
  text-align: center;
}

.how-mobile-timeline {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.how-mobile-index {
  width: 8.5rem;
  height: auto;
  flex-shrink: 0;
}

.how-mobile-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.5rem;
}

.how-mobile-step {
  display: flex;
  flex-direction: column;
}

.how-mobile-step-title {
  margin: 0 0 0.15rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}

.how-mobile-step-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.35;
}

.how-mobile-rule {
  width: 100%;
  margin: 1.75rem 0 0;
  border: none;
  border-top: 1px solid #A8C836;
}

/* Testimonials */
.testimonials-section {
  order: 6;
  background: var(--color-hero-bg);
  padding-block: 0 2.5rem;
}

.testimonials-mobile-heading {
  margin: 0 0 1.75rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
}

.testimonials-mobile-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-mobile {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.testimonial-avatar {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
}

.testimonial-divider-vertical {
  width: 1px;
  align-self: stretch;
  background: #D9D9D9;
  flex-shrink: 0;
}

.testimonial-mobile-body {
  flex: 1;
  min-width: 0;
}

.testimonial-stars {
  display: block;
  height: 1rem;
  width: auto;
  margin-bottom: 0.5rem;
}

.testimonial-quote {
  margin: 0 0 0.5rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
}

.testimonial-name {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.85rem;
}

.testimonial-name strong {
  color: var(--color-primary);
  font-weight: 700;
}

.testimonials-mobile-rule {
  width: 100%;
  margin: 2rem 0 0;
  border: none;
  border-top: 1px solid #A8C836;
}

/* Google Reviews widget */
.google-reviews-section {
  order: 6;
  background: var(--color-hero-bg);
  padding-block: 2.5rem;
}

.google-reviews-heading {
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.25;
  text-align: center;
}

.google-reviews-text {
  margin: 0 0 1.5rem;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.9rem;
  text-align: center;
}

.google-reviews-widget {
  max-width: 62rem;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
  overflow: hidden;
}

/* Gallery */
.gallery-section {
  order: 7;
  background: var(--color-hero-bg);
  padding-block: 2.5rem;
  overflow: hidden;
}

.gallery-intro {
  margin-bottom: 1.5rem;
  text-align: center;
}

.gallery-heading {
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.25;
}

.gallery-text {
  margin: 0;
  color: var(--color-text);
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.4;
}

.gallery-carousel {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.gallery-slide {
  display: block;
  flex: none;
  border: 0;
  padding: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: grab;
  opacity: 0.6;
  transition: opacity 0.35s;
}

.gallery-slide.active {
  opacity: 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.gallery-outro {
  margin-top: 1.75rem;
  text-align: center;
}

.gallery-icons-mobile {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.gallery-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  padding-inline: 0.5rem;
  border-left: 1px solid #D9D9D9;
  text-align: center;
}

.gallery-icon-item:first-child {
  border-left: none;
  padding-left: 0;
}

.gallery-icon-item:last-child {
  padding-right: 0;
}

.gallery-icon-item img {
  width: 3rem;
  height: 3rem;
}

.gallery-icon-item span {
  color: var(--color-text);
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.3;
}

.btn-whatsapp-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: fit-content;
  min-height: 3.5rem;
  margin: 0 auto;
  padding-inline: 2rem;
  border-radius: 0.75rem;
  background: var(--color-whatsapp-bg);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1rem;
}

.btn-whatsapp-gallery img {
  width: 1.35rem;
  height: 1.35rem;
}

.gallery-mobile-rule {
  width: 100%;
  margin: 1.75rem 0 0;
  border: none;
  border-top: 1px solid #A8C836;
}

@media (min-width: 992px) {
  .specialties-section,
  .exams-section,
  .trust-section,
  .how-section,
  .testimonials-section,
  .google-reviews-section,
  .gallery-section {
    order: 0;
  }

  .hero-inner {
    grid-template-columns: 5fr 6fr;
    grid-template-areas:
      "heading media"
      "text media"
      "price media"
      "actions media"
      "caption media"
      "stats media";
    align-items: start;
    column-gap: 2rem;
    padding-block: 2.5rem;
  }

  .hero-media {
    margin: 0;
    align-self: stretch;
  }

  .hero-photo {
    border-radius: 1.25rem;
  }

  .hero-price-tag {
    border-radius: 0.75rem;
    margin: 0 0 1rem;
  }

  .hero-heading {
    font-size: 2.25rem;
    text-align: left;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-stats {
    justify-content: flex-start;
    gap: 0;
  }

  .hero-stat {
    flex: none;
    padding-inline: 1.25rem;
  }

  .hero-stat:first-child {
    padding-left: 0;
  }

  .hero-stat img {
    height: 2.75rem;
  }

  .hero-stat span {
    font-size: 0.85rem;
  }

  /* Trust */
  .trust-section {
    background: var(--color-hero-bg);
    padding-block: 2.5rem 2rem;
  }

  .trust-heading {
    margin: 0 0 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    text-align: center;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .trust-card {
    display: block;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .trust-card-icon {
    width: 6.5rem;
    height: 6.5rem;
    margin: 0 auto;
  }

  .trust-card-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 1.25rem 0 1.25rem;
    background: #D9D9D9;
  }

  .trust-card-title {
    margin: 0 0 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .trust-card-text {
    margin: 0;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .trust-rule {
    width: 70%;
    margin: 2.5rem auto 0;
    border: none;
    border-top: 1px solid #C8CAA6;
  }

  /* Specialties */
  .specialties-section {
    background: var(--color-hero-bg);
    padding-block: 2.5rem 2rem;
  }

  .specialties-inner {
    grid-template-columns: minmax(0, 24rem) 1fr;
    grid-template-areas:
      "media heading"
      "media text"
      "media badges";
    column-gap: 3rem;
  }

  .specialties-photo {
    border-radius: 1rem;
  }

  .specialties-heading {
    margin: 0 0 0.75rem;
    font-size: 2.25rem;
  }

  .specialties-text {
    font-size: 1.05rem;
  }

  .specialties-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .specialty-badge {
    color: #5A5A5A;
    border: 1px solid #D4DAD1;
    box-shadow: none;
  }

  .specialties-callout {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    background: #F3EEE2;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
  }

  .specialties-callout-icon {
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
  }

  .specialties-callout-text {
    flex: 1;
  }

  .specialties-callout-title {
    margin: 0 0 0.25rem;
    color: var(--color-text);
    font-weight: 600;
    font-size: 1.1rem;
  }

  .specialties-callout-subtitle {
    margin: 0;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.9rem;
  }

  .btn-whatsapp-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-shrink: 0;
    min-height: 3.5rem;
    padding-inline: 1.5rem;
    border-radius: 0.75rem;
    background: var(--color-whatsapp-bg);
    border: 1px solid var(--color-whatsapp-bg);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
  }

  .btn-whatsapp-callout img {
    width: 1.35rem;
    height: 1.35rem;
  }

  /* Exams */
  .exams-section {
    padding-block: 2rem;
  }

  .exams-heading {
    margin: 0 0 1.25rem;
    font-size: 2.25rem;
    text-align: center;
  }

  .exams-rule {
    display: none;
  }

  .exams-text {
    max-width: 34rem;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    text-align: center;
  }

  .exams-panel {
    flex-direction: row;
    gap: 2rem;
    max-width: 56rem;
    margin: 3rem auto 0;
    background: transparent;
    box-shadow: none;
    padding: 2.5rem 0 0;
  }

  .exam-item {
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: #FFFFFF;
    border-radius: 1.25rem;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.06);
    padding: 2.75rem 2rem 2.5rem;
    text-align: center;
  }

  .exam-item-icon-wrap {
    width: auto;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin-bottom: 0.75rem;
  }

  .exam-item-icon-wrap img {
    width: 4rem;
    height: 4rem;
  }

  .exam-item-title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
  }

  .exam-item-text {
    max-width: 16rem;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .exam-item-seal {
    display: none;
  }

  .exams-seal {
    display: block;
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 11rem;
    height: 11rem;
    z-index: 1;
  }

  .exams-caption {
    display: block;
    margin: 2rem 0 0;
    color: var(--color-text);
    font-weight: 300;
    font-size: 0.95rem;
    text-align: center;
  }

  .btn-whatsapp-exams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: fit-content;
    min-height: 3.5rem;
    margin: 1.5rem auto 0;
    padding-inline: 2rem;
    border-radius: 0.75rem;
    background: var(--color-whatsapp-bg);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
  }

  .btn-whatsapp-exams img {
    width: 1.35rem;
    height: 1.35rem;
  }

  /* How to schedule */
  .how-section {
    background: var(--color-hero-bg);
    padding-block: 2.5rem;
  }

  .how-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .how-step {
    position: relative;
    flex: 1;
    max-width: 20rem;
    background: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.06);
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
  }

  .how-step-number {
    display: block;
    margin-bottom: 0.75rem;
    text-align: left;
  }

  .how-step-number img {
    height: 1.75rem;
    width: auto;
  }

  .how-step-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.25rem;
  }

  .how-step-title {
    margin: 0 0 0.5rem;
    color: #9CB934;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
  }

  .how-step-text {
    margin: 0;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .how-step-arrow {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    width: 5rem;
    height: auto;
    align-self: center;
    margin-inline: -2.5rem;
  }

  .btn-whatsapp-how {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: fit-content;
    min-height: 3.5rem;
    margin: 0 auto;
    padding-inline: 2rem;
    border-radius: 0.75rem;
    background: var(--color-whatsapp-bg);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
  }

  .btn-whatsapp-how img {
    width: 1.35rem;
    height: 1.35rem;
  }

  .how-caption {
    margin: 1rem 0 0;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.9rem;
    text-align: center;
  }

  /* Testimonials */
  .testimonials-section {
    padding-block: 2.5rem;
  }

  .testimonials-heading {
    margin: 0 0 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.2;
    text-align: center;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .testimonial-card {
    background: #FFFFFF;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 1.75rem rgba(0, 0, 0, 0.08);
    padding: 1.75rem 1.5rem;
  }

  .testimonial-card-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
  }

  .testimonial-card .testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
  }

  .testimonial-card-head-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .testimonial-card .testimonial-name {
    font-size: 1rem;
  }

  .testimonial-divider {
    margin: 0 0 1.25rem;
    border: none;
    border-top: 1px solid #D9D9D9;
  }

  .testimonial-card .testimonial-quote {
    margin: 0;
    font-size: 0.95rem;
  }

  .btn-whatsapp-testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: fit-content;
    min-height: 3.5rem;
    margin: 0 auto;
    padding-inline: 2rem;
    border-radius: 0.75rem;
    background: var(--color-whatsapp-bg);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
  }

  .btn-whatsapp-testimonials img {
    width: 1.35rem;
    height: 1.35rem;
  }

  /* Google Reviews widget */
  .google-reviews-section {
    padding-block: 2.5rem;
  }

  .google-reviews-heading {
    font-size: 2.25rem;
  }

  .google-reviews-text {
    font-size: 1.05rem;
  }

  .google-reviews-widget {
    padding: 2rem;
  }

  /* Gallery */
  .gallery-heading {
    font-size: 2.25rem;
  }

  .gallery-text {
    font-size: 1.05rem;
  }

  .gallery-track {
    gap: 0.75rem;
  }

  .gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-primary);
    font-size: 1.6rem;
    line-height: 1;
    box-shadow: 0 0.35rem 0.9rem rgba(0, 0, 0, 0.18);
    cursor: pointer;
  }

  .gallery-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
  }

  .gallery-btn-prev {
    left: 1.25rem;
  }

  .gallery-btn-next {
    right: 1.25rem;
  }

  .gallery-icons-desktop {
    display: block;
    height: 3.5rem;
    width: auto;
    margin: 0 auto 2rem;
  }
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.92);
}

.gallery-lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  max-width: min(90vw, 60rem);
  max-height: 80vh;
}

.lightbox-img-wrap img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  border: 0;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

/* Footer */
.site-footer {
  background: #FFFFFF;
  padding-bottom: 9rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1.25rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
}

.footer-bar {
  height: 1.75rem;
  background: var(--color-primary);
}

/* FAQ */
@media (min-width: 992px) {
  .faq-section {
    background: var(--color-hero-bg);
    padding-block: 2.5rem;
  }

  .faq-eyebrow {
    margin: 0 0 0.5rem;
    color: #9CB934;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-align: center;
    text-transform: uppercase;
  }

  .faq-heading {
    margin: 0 0 2.5rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.25;
    text-align: center;
  }

  .faq-list {
    max-width: 50rem;
    margin: 0 auto;
    border-top: 1px solid #D9D9D9;
  }

  .faq-item {
    border-bottom: 1px solid #D9D9D9;
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1.5rem 0;
    border: 0;
    background: none;
    color: var(--color-primary);
    font-family: inherit;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
  }

  .faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
  }

  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-primary);
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease;
  }

  .faq-icon::before {
    width: 100%;
    height: 2px;
  }

  .faq-icon::after {
    width: 2px;
    height: 100%;
  }

  .faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .faq-answer p {
    margin: 0 0 1.5rem;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .btn-whatsapp-faq {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: fit-content;
    min-height: 3.5rem;
    margin: 2.5rem auto 0;
    padding-inline: 2rem;
    border-radius: 0.75rem;
    background: var(--color-whatsapp-bg);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1rem;
  }

  .btn-whatsapp-faq img {
    width: 1.35rem;
    height: 1.35rem;
  }
}

/* Final CTA */
@media (min-width: 992px) {
  .cta-final-section {
    background: var(--color-primary);
    padding-block: 2.5rem;
  }

  .cta-final-heading {
    margin: 0 0 0.75rem;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.25;
    text-align: center;
  }

  .cta-final-text {
    max-width: 40rem;
    margin: 0 auto 2rem;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .cta-final-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .btn-cta-final-whatsapp,
  .btn-cta-final-call {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding-inline: 1.75rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
  }

  .btn-cta-final-whatsapp {
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    color: var(--color-primary);
  }

  .btn-cta-final-call {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
  }

  .cta-final-caption {
    margin: 0;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 0.85rem;
    text-align: center;
  }
}

/* Contact */
@media (min-width: 992px) {
  .contact-section {
    background: var(--color-hero-bg);
    border-top: 2px solid var(--color-primary);
    padding-block: 2.5rem;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
  }

  .contact-block + .contact-block {
    margin-top: 1.5rem;
  }

  .contact-col {
    padding-left: 2rem;
    border-left: 1px solid #D9D9D9;
  }

  .contact-col:first-child {
    padding-left: 0;
    border-left: none;
  }

  .contact-heading {
    margin: 0 0 1rem;
    font-weight: 700;
    font-size: 1.1rem;
  }

  .contact-heading-dark {
    color: #000000;
  }

  .contact-heading-primary {
    color: var(--color-primary);
  }

  .contact-heading-gray {
    color: #6B6B6B;
  }

  .contact-address {
    margin: 0 0 1rem;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .contact-map {
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  .contact-map iframe {
    display: block;
    width: 100%;
    height: 10rem;
  }

  .contact-map-link {
    color: #000000;
    font-weight: 700;
    font-size: 0.8rem;
  }

  .contact-phone {
    display: block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.3rem;
  }

  .contact-phone-label {
    display: block;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.85rem;
  }

  .contact-divider {
    margin: 0 0 1.25rem;
    border: none;
    border-top: 1px solid #D9D9D9;
  }

  .contact-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
  }
}

/* Footer desktop */
@media (min-width: 992px) {
  .site-footer-desktop {
    background: var(--color-primary);
  }

  .footer-desktop-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-block: 1.5rem;
  }

  .footer-desktop-logo {
    height: 2.75rem;
    width: auto;
    flex-shrink: 0;
  }

  .footer-desktop-text {
    margin: 0;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: center;
  }

  .footer-desktop-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
  }

  .footer-desktop-cta-text {
    margin: 0;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.35;
    text-align: right;
  }

  .footer-desktop-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid #FFFFFF;
    border-radius: 50%;
  }

  .footer-desktop-whatsapp img {
    width: 1.4rem;
    height: 1.4rem;
  }
}

/* Floating hero CTA (mobile) */
.floating-cta-mobile {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #FFFFFF;
  box-shadow: 0 -0.5rem 1.5rem rgba(0, 0, 0, 0.12);
  padding: 0.75rem 1.25rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.floating-cta-mobile.is-visible {
  transform: translateY(0);
}
