/* ============================================================
   ALL AMERICAN CHC — Home Page Styles
   Loaded only on the front page.

   Excluded from this file (handled by global.css):
   - .cta-section / .cta-banner / .cta-deco-*
   - Form inputs (.form-input, .form-select, .form-textarea, .form-checkbox, .form-label)
   ============================================================ */


/* === HERO SECTION (rotating slider) ===
   Scoped under .aachc-hero — uses theme global.css tokens where possible,
   with local fallbacks so the block is portable. */
.aachc-hero,
.aachc-hero *,
.aachc-hero *::before,
.aachc-hero *::after { box-sizing: border-box; }

.aachc-hero {
  --aachc-blue:   var(--color-primary-blue);
  --aachc-green:  var(--color-primary-green);
  --aachc-bg:     #F3F6FB;
  --aachc-white:  var(--color-grey-0, #FFFFFF);
  --aachc-grey-2: var(--color-grey-2, #E9ECEF);
  --aachc-grey-6: var(--color-grey-6);
  --aachc-grey-7: var(--color-grey-7);

  --aachc-card-h:     680px;
  --aachc-card-max-w: 1240px;

  font-family: var(--font-primary, "Sofia Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
  background: var(--aachc-bg);
  padding: 0 100px;
  display: flex;
  justify-content: center;
}

.aachc-hero__container {
  width: 100%;
  max-width: var(--aachc-card-max-w);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ===== Card ===== */
.aachc-hero__card {
  position: relative;
  width: 100%;
  height: var(--aachc-card-h);
  border-radius: var(--radius-xl, 32px);
  overflow: hidden;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

/* ===== Slides (background images) ===== */
.aachc-hero__slides { position: absolute; inset: 0; z-index: 0; }
.aachc-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  background: var(--color-blue-1);
}
.aachc-hero__slide.is-active { opacity: 1; }
.aachc-hero__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.aachc-hero__slide.is-active .aachc-hero__slide-img { transform: scale(1.04); }
.aachc-hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0) 82%);
}

/* ===== Bottom row: info column + circle slider ===== */
.aachc-hero__row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 32px;
  width: 100%;
}
.aachc-hero__info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* ===== Pill ===== */
.aachc-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 8px;
  border-radius: 100px;
  background: rgba(250, 252, 254, 0.14);
  border: 1px solid rgba(250, 252, 254, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--aachc-white);
  font-size: 16px;
  line-height: 22px;
  width: fit-content;
}
.aachc-hero__pill-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--aachc-green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.aachc-hero__pill-icon svg { width: 12px; height: 12px; }

/* ===== Headline group ===== */
.aachc-hero__headline { display: flex; flex-direction: column; gap: 12px; max-width: 700px; }
.aachc-hero__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  color: var(--aachc-white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.12);
  font-weight: var(--fw-regular, 400);
}
.aachc-hero__heading {
  margin: 0;
  font-size: 72px;
  line-height: 80px;
  font-weight: var(--fw-semibold, 600);
  color: var(--aachc-white);
  text-shadow: 0 4px 12px rgba(0,0,0,0.12);
  letter-spacing: -0.5px;
}
.aachc-hero__heading-script {
  font-family: var(--font-script, "Italianno", cursive);
  font-size: 94px;
  font-weight: var(--fw-regular, 400);
  font-style: normal;
  margin: 0 2px;
  letter-spacing: 0;
}

/* ===== Buttons ===== */
.aachc-hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.aachc-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-xl, 32px);
  font-family: inherit;
  font-size: 17px;
  font-weight: var(--fw-semibold, 600);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.aachc-hero__btn:focus-visible { outline: 2px solid var(--aachc-green); outline-offset: 3px; }
.aachc-hero__btn--primary { background: var(--aachc-white); color: var(--aachc-blue); }
.aachc-hero__btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.aachc-hero__btn--secondary { background: transparent; color: var(--aachc-white); border-color: var(--aachc-white); }
.aachc-hero__btn--secondary:hover { background: var(--aachc-white); color: var(--aachc-blue); }
.aachc-hero__btn-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ===== Rating card (glassmorphism) ===== */
.aachc-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-lg, 24px);
  background: rgba(255,255,255,0.20);
  border: 0.5px solid var(--aachc-grey-6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
}
.aachc-hero__avatars { display: flex; padding-right: 8px; }
.aachc-hero__avatar {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.35);
  margin-right: -8px;
  background: #ddd;
}
.aachc-hero__avatars .aachc-hero__avatar:last-child { margin-right: 0; }
.aachc-hero__rating-text { display: flex; flex-direction: column; }
.aachc-hero__rating-top {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--aachc-white);
  font-size: 16px;
  line-height: 22px;
}
.aachc-hero__rating-top svg { width: 18px; height: 18px; }
.aachc-hero__rating-sub {
  font-style: italic;
  font-weight: 300;
  color: var(--aachc-grey-2);
  font-size: 16px;
  line-height: 22px;
}

/* ===== Circle slider thumbnails ===== */
.aachc-hero__nav { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.aachc-hero__thumb {
  --thumb-size: 44px;
  --photo-size: 37px;
  --photo-opacity: 0.7;

  position: relative;
  width: var(--thumb-size);
  height: var(--thumb-size);
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: width .5s cubic-bezier(.4, 0, .2, 1), height .5s cubic-bezier(.4, 0, .2, 1);
  flex-shrink: 0;
}

/* Subtle ring for inactive thumbs only — hidden on active (SVG takes over) */
.aachc-hero__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.30);
  transition: border-color .4s ease, opacity .4s ease;
  pointer-events: none;
}
.aachc-hero__thumb:not(.is-active):hover::before {
  border-color: rgba(255, 255, 255, 0.55);
}
.aachc-hero__thumb.is-active::before {
  opacity: 0;   /* hide CSS ring — SVG track takes over */
}

/* Photo */
.aachc-hero__thumb-photo {
  width: var(--photo-size);
  height: var(--photo-size);
  border-radius: 999px;
  object-fit: cover;
  opacity: var(--photo-opacity);
  transition: width .5s cubic-bezier(.4, 0, .2, 1), height .5s cubic-bezier(.4, 0, .2, 1), opacity .4s ease;
  display: block;
  background: var(--color-grey-6);
}
.aachc-hero__thumb:not(.is-active):hover .aachc-hero__thumb-photo { opacity: 1; }
.aachc-hero__thumb:focus-visible { outline: none; }
.aachc-hero__thumb:focus-visible::before { box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25); }

/* Active state */
.aachc-hero__thumb.is-active {
  --thumb-size: 60px;
  --photo-size: 50px;
  --photo-opacity: 1;
}

/* SVG ring container — always present, visible only on active */
.aachc-hero__thumb-progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: rotate(-90deg);
  opacity: 0;
  transition: opacity .35s ease;
}
.aachc-hero__thumb.is-active .aachc-hero__thumb-progress { opacity: 1; }

/* Track circle — faint white ring, always visible on active */
.aachc-hero__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2.5;
}

/* Progress arc — bright white, sweeps clockwise over the track */
.aachc-hero__arc {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 2.5;
  stroke-linecap: round;
  /* dasharray + dashoffset set by JS */
}

/* ===== Trust badges (features bar) ===== */
.aachc-hero__badges {
  overflow: hidden;
  padding: 0 8px;
}
.aachc-hero__badges-track {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.aachc-hero__badge.aachc-hero__badge--clone {
  display: none;
}
.aachc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--fw-medium, 500);
  color: var(--aachc-grey-7);
  white-space: nowrap;
}
.aachc-hero__badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--aachc-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--aachc-blue);
  box-shadow: 0 1px 2px rgba(11, 69, 128, 0.06);
  flex-shrink: 0;
}
.aachc-hero__badge-icon svg { width: 16px; height: 16px; }


/* === SERVICES SECTION === */
.services-section {
  padding: 60px 100px 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.services-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
  max-width: 958px;
}

.services-intro-line {
  width: 1px;
  height: 80px;
  background: var(--color-primary-green);
}

.services-intro-text {
  font-size: 20px;
  line-height: 26px;
  font-weight: var(--fw-regular);
  color: var(--color-grey-9);
  text-align: center;
}

.services-block {
  width: 100%;
  max-width: 1240px;
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.services-header-text {
  max-width: 600px;
}

.services-header-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: var(--fw-semibold);
  color: var(--color-blue-4);
}

.services-header-sub {
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--fw-regular);
  color: var(--color-grey-9);
  margin-top: 16px;
}

.services-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-primary-blue);
  color: var(--color-grey-0);
  font-size: 17px;
  line-height: 1;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.services-header-cta:hover {
  background: var(--color-blue-n3);
}

.services-header-cta svg {
  width: 20px;
  height: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.svc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 69, 128, 0.10);
}

.svc-card:focus-visible {
  outline: 3px solid rgba(11, 69, 128, 0.35);
  outline-offset: 3px;
}

.svc-card--white {
  background: var(--color-grey-0);
}

.svc-card--blue {
  background: var(--color-blue-1);
}

.svc-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-grey-5);
  flex-shrink: 0;
}

.svc-card--blue .svc-card-icon {
  border-color: var(--color-grey-0);
}

.svc-card-icon svg {
  width: 20px;
  height: 20px;
}

.svc-card-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: var(--fw-semibold);
  color: var(--color-primary-blue);
  margin-top: 12px;
}

.svc-card--blue .svc-card-title {
  color: var(--color-grey-0);
}

.svc-card-desc {
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--fw-regular);
  color: var(--color-grey-7);
  margin-top: 8px;
}

.svc-card--blue .svc-card-desc {
  color: var(--color-grey-2);
}

.svc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-grey-5);
  background: transparent;
  color: var(--color-primary-blue);
  font-size: 17px;
  line-height: 1;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: auto;
  align-self: flex-start;
}

.svc-card:hover .svc-card-btn {
  border-color: var(--color-blue-n3);
  color: var(--color-blue-n3);
}

.svc-card--blue .svc-card-btn {
  border-color: var(--color-grey-0);
  color: var(--color-grey-0);
}

.svc-card.svc-card--blue:hover .svc-card-btn {
  border-color: var(--color-grey-0);
  color: var(--color-grey-0);
}

.svc-card-btn svg {
  width: 20px;
  height: 20px;
}

.services-mobile-cta {
  display: none;
}


/* === ABOUT SLIDER SECTION === */
.about-section {
  padding: 0 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.about-card {
  background: var(--color-grey-2);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.about-inner {
  display: flex;
  align-items: center;
  min-height: 432px;
  position: relative;
}

.about-text {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: var(--fw-semibold);
  color: var(--color-blue-4);
}

.about-desc {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
  margin-top: 16px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-primary-blue);
  color: var(--color-grey-0);
  font-size: 17px;
  line-height: 1;
  font-weight: var(--fw-semibold);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  align-self: flex-start;
}

.about-cta:hover {
  background: var(--color-blue-n3);
}

.about-cta svg {
  width: 20px;
  height: 20px;
}

.about-visual {
  flex: 1;
  position: relative;
  min-height: 432px;
  margin-left: 30px;
}

.about-imgs {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 332px;
  height: 412px;
}

.about-img-back {
  width: 300px;
  height: 380px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center center;
  opacity: 0.5;
  position: absolute;
  top: 32px;
  left: 0;
}

.about-img-front {
  width: 300px;
  height: 380px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center center;
  position: absolute;
  top: 0;
  left: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.about-slide-card {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  background: var(--color-grey-0);
  border-radius: var(--radius-xl);
  padding: 40px 32px 32px 82px;
}

.about-slide {
  display: none;
  flex-direction: column;
  gap: 24px;
}

.about-slide.active {
  display: flex;
}

.about-slide-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: var(--fw-medium);
  color: var(--color-blue-1);
}

.about-slide-desc {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
  margin-top: 16px;
}

.slider-controls {
  display: flex;
  align-items: center;
  gap: 32px;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.slider-btn--prev {
  background: var(--color-grey-5);
}

.slider-btn--prev:hover {
  background: var(--color-grey-6);
}

.slider-btn--next {
  background: var(--color-primary-blue);
}

.slider-btn--next:hover {
  background: var(--color-blue-n3);
}

.slider-btn svg {
  width: 20px;
  height: 20px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-grey-5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast);
}

.slider-dot.active {
  background: var(--color-primary-blue);
}

.about-mobile-cta {
  display: none;
}


/* === FAQ SECTION === */
.faq-section {
  padding: 0 100px;
  max-width: 1440px;
  margin: 160px auto 0;
}

.faq-layout {
  display: flex;
  align-items: center;
  gap: 48px;
}

.faq-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: var(--fw-semibold);
  color: var(--color-blue-4);
}

.faq-subtitle {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
  margin-top: 16px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-grey-0);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  /* Padding lives on .faq-question (header) + .faq-answer so the entire
     header row — including the padding around the text/icon — is clickable. */
}

.faq-item.is-open {
  border-color: #71ACE8;
  box-shadow: 0 4px 12px rgba(9, 59, 110, 0.03);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 28px 24px;
  text-align: left;
  transition: padding 0.35s ease;
}

.faq-item.is-open .faq-question {
  padding-bottom: 16px;
}

.faq-question-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: var(--fw-medium);
  color: var(--color-grey-9);
  transition: color var(--transition-fast);
}

.faq-item.is-open .faq-question-text {
  color: var(--color-blue-n2);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon-plus,
.faq-icon-minus {
  position: absolute;
  transition: opacity var(--transition-fast);
}

.faq-icon-minus {
  opacity: 0;
}

.faq-item.is-open .faq-icon-plus {
  opacity: 0;
}

.faq-item.is-open .faq-icon-minus {
  opacity: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 28px;
}

.faq-answer-text {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
  padding-right: 36px;
}

.faq-image {
  width: 498px;
  height: 648px;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* === TESTIMONIALS SECTION === */
.testimonials-section {
  padding: 0 100px;
  max-width: 1440px;
  margin: 160px auto 0;
}

.testimonials-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-header-text {
  max-width: 600px;
}

.testimonials-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: var(--fw-semibold);
  color: var(--color-blue-4);
}

.testimonials-subtitle {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
  margin-top: 16px;
}

.testimonials-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-primary-blue);
  color: var(--color-grey-0);
  font-size: 17px;
  line-height: 1;
  font-weight: var(--fw-semibold);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.testimonials-header-cta:hover {
  background: var(--color-blue-n3);
}

.testimonials-header-cta svg {
  width: 20px;
  height: 20px;
}

.testimonials-track-wrapper {
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 397px;
  width: 397px;
  background: var(--color-grey-0);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  flex-shrink: 0;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-star {
  width: 24px;
  height: 24px;
}

.testimonial-date {
  font-size: 14px;
  line-height: 18px;
  font-weight: var(--fw-medium);
  color: var(--color-grey-6);
}

.testimonial-quote {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
}

.testimonial-author {
  font-size: 16px;
  line-height: 22px;
  font-weight: var(--fw-medium);
  color: var(--color-grey-9);
  margin-top: 16px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
}

.test-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.test-btn--prev {
  background: var(--color-grey-5);
}

.test-btn--prev:hover {
  background: var(--color-grey-6);
}

.test-btn--next {
  background: var(--color-primary-blue);
}

.test-btn--next:hover {
  background: var(--color-blue-n3);
}

.test-btn svg {
  width: 20px;
  height: 20px;
}

.test-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.test-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-grey-5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast);
}

.test-dot.active {
  background: var(--color-primary-blue);
}

.testimonials-mobile-cta {
  display: none;
}


/* === BLOG SECTION === */
.blog-section {
  max-width: 1440px;
  margin: 160px auto 0;
  padding: 0 100px;
  position: relative;
}

.blog-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Text-only variant: no posts exist, left column spans full width */
.blog-layout--text-only {
  gap: 0;
}

.blog-layout--text-only .blog-text {
  width: 100%;
  max-width: 900px;
  padding-top: 0;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.blog-text {
  width: 600px;
  flex-shrink: 0;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: var(--fw-semibold);
  color: var(--color-blue-4);
}

.blog-desc {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
  margin-top: 16px;
}

.blog-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-primary-blue);
  color: var(--color-grey-0);
  font-size: 17px;
  line-height: 1;
  font-weight: var(--fw-semibold);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  align-self: flex-start;
}

.blog-cta:hover {
  background: var(--color-blue-n3);
}

.blog-cta svg {
  width: 20px;
  height: 20px;
}

.blog-carousel-area {
  flex: 1;
  position: relative;
  min-width: 0;
  height: 585px;
  clip-path: inset(-20px -100vw -20px 0);
}

.blog-carousel-bg {
  position: absolute;
  top: 0;
  left: 197px;
  right: -100vw;
  height: 585px;
  background: var(--color-grey-2);
  border-radius: 44px 0 0 44px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.blog-track-wrapper {
  position: relative;
  z-index: 1;
  padding-top: 69px;
  overflow: visible;
}

.blog-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
}

.blog-card {
  min-width: 644px;
  width: 644px;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.blog-card-img {
  position: absolute;
  inset: 0;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.54));
}

.blog-card-info {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-grey-1);
  margin-bottom: 12px;
}

.blog-card-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: var(--fw-semibold);
  color: var(--color-grey-0);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.blog-card-excerpt {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-1);
  margin-top: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 28px;
}

.blog-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background var(--transition-fast);
}

.blog-btn--prev {
  background: var(--color-grey-5);
}

.blog-btn--prev:hover {
  background: var(--color-grey-6);
}

.blog-btn--next {
  background: var(--color-primary-blue);
}

.blog-btn--next:hover {
  background: var(--color-blue-n3);
}

.blog-btn svg {
  width: 20px;
  height: 20px;
}

.blog-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-grey-5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast);
}

.blog-dot.active {
  background: var(--color-primary-blue);
}

.blog-mobile-cta {
  display: none;
}


/* === BOOKING FORM SECTION === */
/* Uses shared .form-input / .form-select / .form-textarea / .form-checkbox / .form-label from global.css */

.booking-section {
  max-width: 1440px;
  margin: 160px auto 0;
  padding: 0 100px;
}

.booking-header {
  text-align: center;
  margin-bottom: 36px;
}

.booking-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: var(--fw-semibold);
  color: var(--color-blue-4);
}

.booking-subtitle {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-grey-9);
  margin-top: 16px;
}

.booking-layout {
  display: flex;
  gap: 48px;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}

.booking-image {
  width: 498px;
  height: auto;
  flex-shrink: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.booking-form-card {
  flex: 1;
  background: var(--color-grey-0);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-row {
  display: flex;
  gap: 24px;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-field--full {
  width: 100%;
}

.booking-terms {
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-terms label {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-grey-9);
}

.booking-terms a {
  font-weight: var(--fw-medium);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 16px 24px;
  border-radius: var(--radius-xl);
  background: var(--color-primary-blue);
  color: var(--color-grey-0);
  font-size: 17px;
  line-height: 1;
  font-weight: var(--fw-semibold);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  margin-top: 8px;
  align-self: flex-start;
}

.booking-submit:hover {
  background: var(--color-blue-n3);
}

/* === BOOKING FORM STATES === */
.booking-actions {
  margin-top: 8px;
}

.booking-submit {
  position: relative;
  min-width: 140px;
}

.booking-submit.is-loading {
  cursor: wait;
  opacity: 0.85;
}

.booking-submit.is-loading .booking-submit-label {
  visibility: hidden;
}

.booking-submit-loading {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: aachc-spin 0.7s linear infinite;
}

.booking-submit.is-loading .booking-submit-loading {
  display: block;
}

@keyframes aachc-spin {
  to { transform: rotate(360deg); }
}

.form-input.has-error,
.form-select.has-error,
.form-textarea.has-error {
  border-color: #DC3545 !important;
}

.field-error {
  margin-top: 6px;
  font-size: 14px;
  color: #DC3545;
  line-height: 1.4;
}

.booking-feedback {
  margin-top: 16px;
  padding: 0;
  font-size: 16px;
  line-height: 1.5;
  border-radius: var(--radius-lg);
}

.booking-feedback:empty {
  display: none;
}

.booking-feedback--success {
  background: rgba(0, 176, 161, 0.1);
  color: #006D63;
  border: 1px solid rgba(0, 176, 161, 0.3);
  padding: 20px 24px;
  text-align: center;
  font-weight: 500;
}

.booking-feedback--error {
  background: rgba(220, 53, 69, 0.06);
  color: #A02334;
  border: 1px solid rgba(220, 53, 69, 0.2);
  padding: 12px 16px;
}


/* ============================================================
   HOME RESPONSIVE
   ============================================================ */

@media (max-width: 1279px) {
  .aachc-hero { padding: 0 32px; }

  .services-section {
    padding: 60px 32px 160px;
  }

  .about-section,
  .faq-section,
  .testimonials-section,
  .blog-section,
  .booking-section {
    padding: 0 32px;
  }

  .blog-text {
    width: 400px;
  }
}

@media (max-width: 1280px) {
  .aachc-hero__heading        { font-size: 60px; line-height: 68px; }
  .aachc-hero__heading-script { font-size: 78px; line-height: 68px; }
}

@media (max-width: 991px) {

  /* === HERO (tablet) === */
  .aachc-hero { padding: 0 16px; }

  .aachc-hero__card {
    height: auto;
    min-height: 620px;
    padding: 32px;
    border-radius: var(--radius-lg, 24px);
  }

  .aachc-hero__heading        { font-size: 48px; line-height: 56px; }
  .aachc-hero__heading-script { font-size: 64px; line-height: 56px; }
  .aachc-hero__subtitle       { font-size: 16px; line-height: 22px; }

  .aachc-hero__info { gap: 32px; }
  .aachc-hero__row  { flex-direction: column; align-items: stretch; gap: 24px; }
  .aachc-hero__nav  { justify-content: center; order: 2; }

  .aachc-hero__rating-sub { font-size: 14px; }

  /* === TRUST BADGES (tablet) === */
  .aachc-hero__badges { gap: 18px 24px; padding: 0 4px; }

  /* === SERVICES === */
  .services-section {
    padding: 40px 16px 116px;
    gap: 72px;
  }

  .services-intro-text {
    font-size: 18px;
    line-height: 24px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .services-header-title {
    font-size: 24px;
    line-height: 30px;
  }

  .services-header-sub {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  .services-header-cta {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .svc-card {
    padding: 20px;
    border-radius: var(--radius-lg);
    gap: 24px;
  }

  .svc-card-icon {
    width: 48px;
    height: 48px;
  }

  .svc-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .svc-card-title {
    font-size: 20px;
    line-height: 26px;
  }

  .svc-card-desc {
    font-size: 16px;
    line-height: 22px;
  }

  .svc-card-btn {
    height: 48px;
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }

  .svc-card-btn svg {
    width: 18px;
    height: 18px;
  }

  .services-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: var(--radius-xl);
    background: var(--color-primary-blue);
    color: var(--color-grey-0);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--fw-semibold);
    border: none;
    cursor: pointer;
    margin-top: 32px;
  }

  .services-mobile-cta svg {
    width: 18px;
    height: 18px;
  }

  /* === ABOUT === */
  .about-section {
    padding: 0 16px;
  }

  .about-card {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
  }

  .about-inner {
    flex-direction: column;
    min-height: auto;
    gap: 24px;
  }

  .about-text {
    width: 100%;
    gap: 12px;
  }

  .about-title {
    font-size: 24px;
    line-height: 30px;
  }

  .about-desc {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  .about-cta {
    display: none;
  }

  .about-visual {
    flex: none;
    width: 100%;
    min-height: auto;
    margin-left: 0;
    position: relative;
    height: 483px;
  }

  .about-imgs {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    height: 240px;
    margin: 0 auto;
  }

  .about-img-back {
    width: calc(100% - 40px);
    height: 224px;
    top: 0;
    left: 0;
    border-radius: 20px;
  }

  .about-img-front {
    width: 100%;
    height: 220px;
    top: 20px;
    left: 0;
    border-radius: 20px;
    object-position: top;
  }

  .about-slide-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    padding: 24px;
    margin-top: -20px;
  }

  .about-slide-title {
    font-size: 20px;
    line-height: 26px;
  }

  .about-slide-desc {
    font-size: 16px;
    line-height: 22px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
  }

  .slider-btn svg {
    width: 18px;
    height: 18px;
  }

  .slider-controls {
    gap: 24px;
  }

  .slider-dots {
    gap: 6px;
  }

  .slider-dot {
    position: relative;
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .slider-dot.active {
    background: transparent;
  }

  .slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-grey-5);
    transform: translate(-50%, -50%);
    transition: background var(--transition-fast);
  }

  .slider-dot.active::before {
    background: var(--color-primary-blue);
  }

  .about-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: var(--radius-xl);
    background: var(--color-primary-blue);
    color: var(--color-grey-0);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--fw-semibold);
    border: none;
    cursor: pointer;
    margin-top: 20px;
  }

  .about-mobile-cta svg {
    width: 18px;
    height: 18px;
  }

  /* === FAQ === */
  .faq-section {
    padding: 0 16px;
    margin-top: 116px;
  }

  .faq-layout {
    flex-direction: column;
    gap: 32px;
  }

  .faq-content {
    width: 100%;
  }

  .faq-title {
    font-size: 24px;
    line-height: 30px;
  }

  .faq-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  .faq-item {
    border-radius: var(--radius-lg);
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-answer {
    padding-bottom: 20px;
  }

  .faq-answer-text {
    font-size: 16px;
    line-height: 22px;
    padding-right: 0;
  }

  .faq-image {
    width: 100%;
    height: 480px;
  }

  /* === TESTIMONIALS === */
  .testimonials-section {
    padding: 0 16px;
    margin-top: 116px;
  }

  .testimonials-header {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
  }

  .testimonials-title {
    font-size: 24px;
    line-height: 30px;
  }

  .testimonials-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  .testimonials-header-cta {
    display: none;
  }

  .testimonial-card {
    min-width: 100%;
    width: 100%;
  }

  .testimonial-quote {
    font-size: 16px;
    line-height: 22px;
  }

  .testimonial-author {
    font-size: 16px;
    line-height: 22px;
  }

  .testimonials-nav {
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .test-btn {
    width: 48px;
    height: 48px;
  }

  .test-btn svg {
    width: 18px;
    height: 18px;
  }

  .test-dots {
    order: -1;
    width: 100%;
    justify-content: center;
    margin-bottom: 0;
  }

  .testimonials-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 48px;
    border-radius: var(--radius-xl);
    background: var(--color-primary-blue);
    color: var(--color-grey-0);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--fw-semibold);
    border: none;
    cursor: pointer;
    margin-top: 32px;
  }

  .testimonials-mobile-cta svg {
    width: 18px;
    height: 18px;
  }

  /* === BLOG === */
  .blog-section {
    margin-top: 116px;
    padding: 0 16px;
  }

  .blog-layout {
    flex-direction: column;
    gap: 32px;
  }

  .blog-text {
    width: 100%;
    padding-top: 0;
    gap: 12px;
  }

  .blog-title {
    font-size: 24px;
    line-height: 30px;
  }

  .blog-desc {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  .blog-cta {
    display: none;
  }

  .blog-carousel-area {
    width: 100%;
    height: auto;
    clip-path: none;
    overflow: hidden;
  }

  .blog-carousel-bg {
    display: none;
  }

  .blog-track-wrapper {
    padding: 0;
    overflow: hidden;
  }

  .blog-card {
    min-width: 100%;
    width: 100%;
    height: 440px;
    border-radius: var(--radius-xl);
    padding: 16px;
  }

  .blog-card-title {
    font-size: 20px;
    line-height: 26px;
  }

  .blog-card-excerpt {
    font-size: 16px;
    line-height: 22px;
  }

  .blog-nav {
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
    gap: 32px;
  }

  .blog-btn {
    width: 48px;
    height: 48px;
  }

  .blog-btn svg {
    width: 18px;
    height: 18px;
  }

  .blog-dots {
    order: -1;
    width: 100%;
    justify-content: center;
    gap: 6px;
  }

  .blog-dot {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .blog-dot.active {
    background: transparent;
  }

  .blog-dot::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-grey-5);
    transition: background var(--transition-fast);
  }

  .blog-dot.active::before {
    background: var(--color-primary-blue);
  }

  .blog-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 358px;
    margin: 32px auto 0;
    height: 48px;
    border-radius: var(--radius-xl);
    background: var(--color-primary-blue);
    color: var(--color-grey-0);
    font-size: 16px;
    line-height: 1;
    font-weight: var(--fw-semibold);
    border: none;
    cursor: pointer;
  }

  .blog-mobile-cta svg {
    width: 18px;
    height: 18px;
  }

  /* === BOOKING === */
  .booking-section {
    padding: 0 16px;
    margin-top: 116px;
  }

  .booking-header {
    margin-bottom: 32px;
  }

  .booking-title {
    font-size: 24px;
    line-height: 30px;
  }

  .booking-subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-top: 12px;
  }

  .booking-layout {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .booking-image {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-lg);
  }

  .booking-form-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
  }

  .booking-row {
    flex-direction: column;
    gap: 16px;
  }

  .booking-field {
    gap: 4px;
  }

  .booking-submit {
    height: 48px;
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .aachc-hero { padding: 24px 12px; }
  .aachc-hero__card {
    min-height: 580px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .aachc-hero__slide-img {
    object-position: 50% 50% !important;
  }
  .aachc-hero__slide[data-slide="0"] .aachc-hero__slide-img {
    object-position: 78% 50% !important;
  }
  .aachc-hero__slide[data-slide="1"] .aachc-hero__slide-img {
    object-position: 82% 50% !important;
  }
  .aachc-hero__slide[data-slide="2"] .aachc-hero__slide-img {
    object-position: 80% 50% !important;
  }
  .aachc-hero__slide::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,0.85) 100%);
  }
  .aachc-hero__pill { font-size: 14px; padding: 6px 12px 6px 6px; }
  .aachc-hero__pill-icon { width: 24px; height: 24px; }

  .aachc-hero__subtitle       { font-size: 16px; line-height: 22px; }
  .aachc-hero__heading        { font-size: 38px; line-height: 44px; letter-spacing: -0.3px; }
  .aachc-hero__heading-script { font-size: 52px; line-height: 44px; margin: 0 2px; }

  .aachc-hero__info    { gap: 24px; }
  .aachc-hero__buttons { gap: 10px; }
  .aachc-hero__btn     { height: 48px; padding: 12px 20px; font-size: 15px; flex: 1 1 auto; justify-content: center; }

  .aachc-hero__rating     { padding: 12px; gap: 10px; width: 100%; }
  .aachc-hero__avatar     { width: 34px; height: 34px; }
  .aachc-hero__rating-top,
  .aachc-hero__rating-sub { font-size: 14px; line-height: 20px; }

  .aachc-hero__nav             { gap: 10px; }
  .aachc-hero__thumb           { --thumb-size: 38px; --photo-size: 32px; }
  .aachc-hero__thumb.is-active { --thumb-size: 48px; --photo-size: 40px; }

  .aachc-hero__badges {
    overflow: hidden;
    padding: 4px 0 8px;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
  }
  .aachc-hero__badges-track {
    width: max-content;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    animation: aachc-badges-marquee 28s linear infinite;
    will-change: transform;
  }
  .aachc-hero__badges::-webkit-scrollbar { display: none; }
  .aachc-hero__badge--clone {
    display: inline-flex;
  }
  .aachc-hero__badge {
    background: var(--aachc-white);
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(11, 69, 128, 0.08);
    font-size: 14px;
  }
  .aachc-hero__badge-icon { width: 26px; height: 26px; box-shadow: none; background: var(--aachc-bg); }
  .aachc-hero__badge-icon svg { width: 13px; height: 13px; }
}

@keyframes aachc-badges-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-50% - 6px), 0, 0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aachc-hero__slide,
  .aachc-hero__slide-img,
  .aachc-hero__thumb,
  .aachc-hero__thumb-photo,
  .aachc-hero__arc,
  .aachc-hero__btn { transition: none !important; }
  .aachc-hero__slide.is-active .aachc-hero__slide-img { transform: none; }
  .aachc-hero__badges-track { animation: none !important; }
}

@media (max-width: 575px) {
  .aachc-hero { padding: 0 12px; }

  .services-section {
    padding: 40px 12px 116px;
  }

  .about-section,
  .faq-section,
  .testimonials-section,
  .blog-section,
  .booking-section {
    padding: 0 12px;
  }

  .faq-image {
    height: 360px;
  }

  .booking-image {
    height: 280px;
  }
}
