:root {
  --navy: #042C53;
  --blue: #185FA5;
  --accent: #378ADD;
  --light: #E6F1FB;
  --bg: #F0F5FB;
  --white: #ffffff;
  --text: #1E293B;
  --text-mid: #64748B;
  --text-soft: #94A3B8;
  --whatsapp: #25D366;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

main {
  flex: 1 0 auto;
  padding-top: 118px;
}

main:has(.ao-hero-video:first-child) {
  padding-top: 0;
}

img, video, iframe {
  max-width: 100%;
}

img {
  display: block;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--navy);
}

button, input, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  line-height: 1.12;
}

.ao-container {
  width: min(100% - 32px, 1160px);
  margin: 0 auto;
}

.ao-narrow {
  width: min(100% - 32px, 860px);
}

.ao-section {
  position: relative;
  padding: 64px 0;
}

.ao-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.ao-section-heading h2 {
  font-size: 32px;
}

.ao-section-heading a {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ao-centered {
  justify-content: center;
  text-align: center;
}

.ao-eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ao-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.25s ease;
}

.ao-btn-primary {
  background: var(--blue);
  color: var(--white);
}

.ao-btn-primary:hover {
  background: var(--navy);
  color: var(--white);
}

.ao-btn-outline {
  border-color: var(--blue);
  color: var(--blue);
}

.ao-btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.ao-btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.ao-btn-whatsapp:hover {
  background: var(--navy);
  color: var(--white);
}

.ao-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ao-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.ao-section-cta .ao-btn {
  min-width: 220px;
}

.ao-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: none;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.ao-nav-container {
  width: 100%;
  max-width: 1440px;
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  margin: 0 auto;
  padding: 0 clamp(18px, 2.4vw, 34px);
}

.ao-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  color: var(--white);
}

.ao-brand img {
  width: 118px;
  height: 108px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.ao-brand strong {
  display: block;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}

.ao-brand small {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.2;
}

.ao-menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid var(--light);
  border-radius: 8px;
  background: var(--white);
}

.ao-menu-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 0 auto;
  background: var(--navy);
}

.ao-nav-menu {
  align-items: center;
  justify-content: flex-start;
  gap: clamp(16px, 2vw, 34px);
  flex: 1 1 auto;
  min-width: 0;
}

.ao-nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0 clamp(14px, 2vw, 28px);
  list-style: none;
}

.ao-nav-left {
  display: flex;
  gap: clamp(16px, 1.8vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ao-nav-right {
  display: flex;
  gap: clamp(14px, 1.5vw, 20px);
  margin: 0 clamp(10px, 1.6vw, 22px) 0 auto;
  padding: 0;
  list-style: none;
}

.ao-nav-link {
  display: inline-flex;
  padding: 12px 4px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ao-nav-link:hover,
.ao-nav-link[aria-current="page"] {
  color: var(--white);
}

.ao-nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.ao-dropdown-toggle {
  width: 24px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.ao-dropdown-toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: all 0.25s ease;
}

.ao-has-dropdown:hover .ao-dropdown-toggle,
.ao-has-dropdown:focus-within .ao-dropdown-toggle {
  color: var(--blue);
}

.ao-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 120;
  min-width: 240px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--light);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(4, 44, 83, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.ao-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}

.ao-has-dropdown:hover .ao-dropdown-menu,
.ao-has-dropdown:focus-within .ao-dropdown-menu,
.ao-has-dropdown.ao-open .ao-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ao-has-dropdown.ao-open .ao-dropdown-toggle::before,
.ao-has-dropdown:hover .ao-dropdown-toggle::before,
.ao-has-dropdown:focus-within .ao-dropdown-toggle::before {
  transform: rotate(225deg) translate(-2px, -1px);
}

.ao-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 400;
}

.ao-dropdown-menu a:hover {
  background: var(--light);
  color: var(--blue);
}

.ao-nav-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.ao-login-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
}

.ao-login-link::before {
  content: "\F4D7";
  font-family: "bootstrap-icons";
  font-size: 14px;
  line-height: 1;
}

.ao-login-link:hover {
  background: var(--blue);
  color: var(--white);
}

.ao-whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
}

.ao-whatsapp-link:hover {
  background: var(--navy);
  color: var(--white);
}

.ao-hero-video {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  height: 100vh;
  overflow: hidden;
  background: #061423;
}

.ao-hero-video::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 3;
  height: clamp(70px, 8vw, 128px);
  background-color: var(--bg);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath d='M0,72 C90,92 150,105 240,82 C330,58 390,44 480,72 C570,100 630,112 720,84 C810,56 870,48 960,76 C1050,104 1110,112 1200,84 C1290,56 1350,48 1440,72 L1440,160 L0,160 Z' fill='black'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 160' preserveAspectRatio='none'%3E%3Cpath d='M0,72 C90,92 150,105 240,82 C330,58 390,44 480,72 C570,100 630,112 720,84 C810,56 870,48 960,76 C1050,104 1110,112 1200,84 C1290,56 1350,48 1440,72 L1440,160 L0,160 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.ao-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #061423;
}

.ao-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ao-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4, 44, 83, 0.52) 0%,
    rgba(4, 44, 83, 0.38) 50%,
    rgba(4, 44, 83, 0.62) 100%
  );
}

.ao-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.ao-hero-tag {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ao-hero-script {
  margin-bottom: 16px;
  color: var(--white);
  font-family: "Caveat", cursive;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 600;
  line-height: 0.98;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.ao-hero-name {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(24px, 3.5vw, 44px);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.ao-hero-loc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.ao-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  padding: 12px 24px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.ao-hero-cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.ao-hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: ao-bounce 2s infinite;
}

.ao-hero-scroll span {
  display: block;
  width: 22px;
  height: 22px;
  border-right: 1.5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
}

@keyframes ao-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

.ao-hero-intro {
  display: flex;
  min-height: 90vh;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.ao-hero-intro-copy {
  position: relative;
  flex: 0 0 42%;
  min-height: 90vh;
  overflow: hidden;
  background-image: url("/images/therapy_office.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.ao-hero-intro-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(240, 246, 255, 0.86), rgba(240, 246, 255, 0.56));
}

.ao-intro-text {
  position: absolute;
  left: clamp(28px, 4vw, 72px);
  top: 46%;
  z-index: 3;
  width: min(100% - 56px, 440px);
  margin: 0;
  transform: translateY(-50%);
}

.ao-script-title {
  margin: 0;
  color: #173d5f;
  font-family: "Caveat", cursive;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.05;
  text-shadow: none;
}

.ao-intro-lead {
  max-width: 340px;
  margin: 24px 0 0;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.75;
}

.ao-intro-body {
  max-width: 390px;
  margin: 14px 0 0;
  color: #36516b;
  font-size: 14px;
  line-height: 1.8;
}

.ao-intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ao-intro-whatsapp,
.ao-intro-outline {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
}

.ao-intro-whatsapp {
  background: #25D366;
  color: var(--white);
}

.ao-intro-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
}

.ao-hero-intro-photo {
  position: relative;
  flex: 0 0 58%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--white);
}

.ao-hero-intro-photo img {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  z-index: 2;
  width: auto;
  height: 90vh;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

.ao-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ao-service-card {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 14px;
  background: var(--white);
  transition: all 0.25s ease;
}

.ao-service-card a {
  display: block;
  height: 100%;
  color: inherit;
}

.ao-service-media {
  position: relative;
  overflow: hidden;
}

.ao-service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.25s ease;
}

.ao-service-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #042C53;
}

.ao-service-card span {
  display: block;
  padding: 20px;
}

.ao-service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.ao-service-card p {
  margin-bottom: 14px;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.7;
}

.ao-service-card em {
  color: var(--blue);
  font-size: 12px;
  font-style: normal;
}

.ao-service-card:hover {
  border-color: #042C53;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(24, 95, 165, 0.1);
}

.ao-service-card:hover img {
  transform: scale(1.04);
}

.ao-education-section {
  overflow: hidden;
  background: var(--bg);
}

.ao-watermark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  color: rgba(24, 95, 165, 0.04);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 12vw, 140px);
  line-height: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.ao-education-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ao-education-card,
.ao-panel,
.ao-review-form {
  border-radius: 12px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 14px 36px rgba(24, 95, 165, 0.07);
}

.ao-education-card h3,
.ao-panel h2,
.ao-review-form h3 {
  margin-bottom: 18px;
  font-size: 25px;
}

.ao-education-section .ao-reveal,
.ao-education-section .ao-reveal-left,
.ao-education-section .ao-reveal-right {
  opacity: 1;
  transform: none;
}

.ao-timeline,
.ao-check-list,
.ao-footer ul,
.ao-contact-info ul {
  list-style: none;
}

.ao-timeline li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 13px;
}

.ao-timeline span {
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.ao-timeline small {
  display: block;
  margin-top: 2px;
  color: var(--accent);
  font-size: 11px;
}

.ao-timeline em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--light);
  color: var(--blue);
  font-style: normal;
}

.ao-check-list {
  display: grid;
  gap: 10px;
}

.ao-check-list li {
  position: relative;
  border-radius: 8px;
  background: var(--bg);
  padding: 8px 12px 8px 34px;
  color: var(--text-mid);
  font-size: 13px;
}

.ao-check-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--accent);
}

.ao-blog-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ao-blog-preview-card {
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  transition: all 0.25s ease;
}

.ao-blog-preview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.25s ease;
}

.ao-blog-preview-card div {
  padding: 18px;
}

.ao-blog-preview-card span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
}

.ao-blog-preview-card small,
.ao-announcement-card small,
.ao-article-header small {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 11px;
}

.ao-blog-preview-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

.ao-blog-preview-card p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ao-blog-preview-card:hover {
  transform: translateY(-4px);
}

.ao-blog-preview-card:hover img {
  transform: scale(1.04);
}

.ao-announcement-list {
  display: grid;
  gap: 16px;
}

.ao-announcement-card {
  position: relative;
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: var(--white);
  padding: 22px;
}

.ao-announcement-card small {
  margin-bottom: 10px;
}

.ao-announcement-card h2,
.ao-announcement-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.ao-announcement-card p {
  color: var(--text-mid);
  font-size: 13px;
}

@media (min-width: 992px) {
  .ao-home-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
  }

  .ao-home-posts-section .ao-blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .ao-home-posts-section,
  .ao-home-announcement-section {
    min-width: 0;
  }
}

.ao-faq-heading {
  align-items: center;
}

.ao-faq-controls {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.ao-faq-control {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 95, 165, 0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
}

.ao-faq-control:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.ao-faq-list {
  display: grid;
  grid-auto-columns: minmax(380px, 520px);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 8px 4px 22px;
  scroll-padding-inline: 18px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) rgba(24, 95, 165, 0.1);
}

.ao-faq-list::-webkit-scrollbar {
  height: 8px;
}

.ao-faq-list::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(24, 95, 165, 0.1);
}

.ao-faq-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--accent);
}

.ao-faq-list details {
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  min-height: 190px;
  scroll-snap-align: start;
  box-shadow: 0 14px 34px rgba(24, 95, 165, 0.08);
}

.ao-faq-card:nth-child(1),
.ao-faq-card:nth-child(7) { background-image: url('/images/faq-bg-1.jpg'); }

.ao-faq-card:nth-child(2),
.ao-faq-card:nth-child(8) { background-image: url('/images/faq-bg-2.jpg'); }

.ao-faq-card:nth-child(3),
.ao-faq-card:nth-child(9) { background-image: url('/images/faq-bg-3.jpg'); }

.ao-faq-card:nth-child(4),
.ao-faq-card:nth-child(10) { background-image: url('/images/faq-bg-4.jpg'); }

.ao-faq-card:nth-child(5),
.ao-faq-card:nth-child(11) { background-image: url('/images/faq-bg-5.jpg'); }

.ao-faq-card:nth-child(6),
.ao-faq-card:nth-child(12) { background-image: url('/images/faq-bg-6.jpg'); }

.ao-faq-card {
  background-size: cover;
  background-position: center;
  position: relative;
}

.ao-faq-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240,245,251,0.78), rgba(240,245,251,0.52));
  border-radius: inherit;
  z-index: 0;
}

.ao-faq-card * {
  position: relative;
  z-index: 1;
}

.ao-faq-list details[open] {
  border-left: 3px solid var(--blue);
  min-height: 360px;
}

.ao-faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 18px 46px 18px 18px;
  color: #032646;
  font-family: "Caveat", cursive;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.ao-faq-list summary::-webkit-details-marker {
  display: none;
}

.ao-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  color: var(--blue);
}

.ao-faq-list details[open] summary::after {
  content: "-";
}

.ao-faq-list p {
  padding: 0 24px 26px;
  color: #042C53;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.ao-reviews-section {
  background: var(--white);
}

.ao-reviews-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
}

.ao-reviews-layout h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.ao-reviews-layout p {
  color: var(--text-mid);
  font-size: 14px;
}

.ao-review-proof {
  width: min(100%, 420px);
  margin-top: 28px;
  border-radius: 22px;
  background: var(--white);
  padding: 28px 34px;
  box-shadow: 0 18px 46px rgba(4, 44, 83, 0.08);
}

.ao-review-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
  color: #9a9b82;
  font-size: 18px;
}

.ao-review-proof p {
  margin-bottom: 22px;
  color: var(--text-mid);
  font-size: 18px;
}

.ao-review-proof p strong {
  color: var(--navy);
  font-size: 23px;
  font-weight: 500;
}

.ao-review-avatars {
  display: flex;
  align-items: center;
}

.ao-review-avatars span,
.ao-review-avatars strong {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--light);
  color: var(--navy);
  font-weight: 500;
}

.ao-review-avatars span:first-child {
  margin-left: 0;
}

.ao-review-avatars span:nth-child(1) { background: #E6F1FB; }
.ao-review-avatars span:nth-child(2) { background: #D7E8F5; }
.ao-review-avatars span:nth-child(3) { background: #F1E7DC; }
.ao-review-avatars span:nth-child(4) { background: #E8EDF4; }

.ao-review-avatars strong {
  background: #9a9b82;
  color: var(--white);
}

.ao-review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.ao-review-card {
  border-radius: 12px;
  background: var(--bg);
  padding: 20px;
}

.ao-review-card i {
  color: var(--accent);
}

.ao-review-card p {
  margin: 10px 0;
  color: var(--text-mid);
  font-size: 13px;
}

.ao-review-card strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
}

.ao-about-hero {
  padding: 74px 0 64px;
  background:
    linear-gradient(90deg, rgba(240, 245, 251, 0.96), rgba(255, 255, 255, 0.92)),
    url("/images/therapy_office.jpg") center / cover;
}

.ao-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.ao-about-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(44px, 6vw, 82px);
}

.ao-about-hero-copy p:not(.ao-eyebrow) {
  max-width: 620px;
  color: var(--text-mid);
  font-size: 16px;
}

.ao-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ao-about-portrait {
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--white);
}

.ao-about-portrait img {
  width: min(100%, 560px);
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: center;
}

.ao-about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.ao-about-story h2,
.ao-about-cert-panel h2 {
  max-width: 520px;
  font-size: clamp(36px, 5vw, 62px);
}

.ao-about-story-copy {
  display: grid;
  gap: 16px;
}

.ao-about-story-copy p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
}

.ao-about-method-section {
  background: var(--white);
}

.ao-about-method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.ao-about-method-grid article {
  border-top: 1px solid rgba(24, 95, 165, 0.18);
  padding-top: 20px;
}

.ao-about-method-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.ao-about-method-grid h3 {
  margin-bottom: 10px;
  font-size: 30px;
}

.ao-about-method-grid p {
  color: var(--text-mid);
  font-size: 14px;
}

.ao-about-cert-panel {
  border-radius: 14px;
  background: var(--white);
  padding: clamp(24px, 4vw, 46px);
}

.ao-page-hero {
  background: var(--white);
  text-align: center;
}

.ao-page-hero h1 {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: clamp(38px, 7vw, 76px);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.ao-page-hero p:not(.ao-eyebrow) {
  max-width: 660px;
  margin: 0 auto 22px;
  color: var(--text-mid);
  font-size: 15px;
}

.ao-contact-hero,
.ao-announcements-hero {
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ao-contact-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76)),
    url("/images/index.png");
}

.ao-announcements-hero {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    url("/images/therapy_office.jpg");
}

.ao-page-hero h1,
.ao-section-heading h2,
.ao-service-card h3,
.ao-blog-preview-card h3,
.ao-announcement-card h2,
.ao-announcement-card h3,
.blog-hero-strip h1,
.article-magazine-header h1 {
  overflow-wrap: anywhere;
}

.ao-clickable-card {
  cursor: pointer;
}

.ao-clickable-card:focus-within,
.ao-clickable-card:hover {
  outline: 0;
}

.ao-two-column,
.ao-contact-grid,
.ao-detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.ao-copy-panel p,
.ao-rich-content p,
.ao-service-article p {
  margin-bottom: 14px;
  color: var(--text-mid);
  font-size: 14px;
}

.ao-image-panel {
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
}

.ao-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.ao-cert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ao-cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.ao-cta-band h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 34px;
}

.ao-cta-band p {
  margin-bottom: 22px;
  color: var(--light);
}

.ao-side-nav {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
  align-self: start;
  border-radius: 12px;
  background: var(--white);
  padding: 18px;
}

.ao-side-nav h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.ao-side-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text-mid);
  font-size: 13px;
}

.ao-side-nav a.active,
.ao-side-nav a:hover {
  background: var(--light);
  color: var(--blue);
}

.ao-service-cover {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 12px;
}

.ao-service-cover img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.ao-lead {
  color: var(--text);
  font-size: 16px;
}

.ao-service-sections {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.ao-service-sections h2 {
  margin-bottom: 10px;
  font-size: 26px;
}

.ao-service-footer {
  margin-top: 24px;
  color: var(--navy);
}

.ao-service-detail-page {
  background: var(--white);
}

.ao-service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 96px) 0 clamp(44px, 6vw, 82px);
  background:
    linear-gradient(120deg, rgba(240, 245, 251, 0.96) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(230, 241, 251, 0.84) 100%),
    url("/images/therapy_office.jpg") center / cover;
}

.ao-service-detail-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -14vw;
  width: 36vw;
  height: 36vw;
  border: 1px solid rgba(24, 95, 165, 0.16);
  border-radius: 50%;
}

.ao-service-detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: end;
}

.ao-service-detail-copy {
  max-width: 760px;
}

.ao-service-detail-copy h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(46px, 7vw, 86px);
}

.ao-service-detail-copy p:not(.ao-eyebrow) {
  max-width: 620px;
  margin-bottom: 26px;
  color: #36556f;
  font-size: 17px;
  line-height: 1.8;
}

.ao-service-detail-nav {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(24, 95, 165, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  box-shadow: 0 22px 60px rgba(4, 44, 83, 0.1);
  backdrop-filter: blur(16px);
}

.ao-service-detail-nav > span {
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ao-service-detail-nav a {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px;
  color: var(--navy);
}

.ao-service-detail-nav a i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--light);
  color: var(--blue);
}

.ao-service-detail-nav a strong {
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.ao-service-detail-nav a.active,
.ao-service-detail-nav a:hover {
  border-color: rgba(24, 95, 165, 0.18);
  background: var(--navy);
  color: var(--white);
}

.ao-service-detail-nav a.active i,
.ao-service-detail-nav a:hover i {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.ao-service-detail-main {
  padding: clamp(46px, 7vw, 88px) 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(55, 138, 221, 0.12), transparent 30%),
    var(--bg);
}

.ao-service-detail-cover {
  overflow: hidden;
  margin: 0 0 clamp(28px, 5vw, 52px);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(4, 44, 83, 0.12);
}

.ao-service-detail-cover img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
}

.ao-service-detail-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.ao-service-detail-intro p {
  border-left: 3px solid var(--blue);
  background: rgba(255, 255, 255, 0.72);
  padding: 20px 22px;
  color: #23415f;
  font-size: 17px;
  line-height: 1.85;
}

.ao-service-detail-sections {
  display: grid;
  gap: 18px;
}

.ao-service-detail-section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border: 1px solid rgba(24, 95, 165, 0.1);
  border-radius: 22px;
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: 0 18px 52px rgba(4, 44, 83, 0.07);
}

.ao-service-detail-index {
  position: sticky;
  top: 138px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--navy);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
}

.ao-service-detail-section h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.ao-service-detail-section p {
  margin-bottom: 16px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
}

.ao-service-detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: clamp(28px, 5vw, 54px);
  border-radius: 24px;
  background: var(--navy);
  padding: clamp(24px, 4vw, 38px);
}

.ao-service-detail-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
}

.ao-service-detail-cta .ao-btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.ao-service-detail-cta .ao-btn-outline:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy);
}

.admin-page {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding-top: 152px !important;
  padding-bottom: 64px !important;
}

.admin-page h1,
.admin-page h2,
.admin-page h3 {
  overflow-wrap: anywhere;
}

.admin-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-heading h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
}

.admin-actions,
.admin-heading .admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-side-menu {
  position: sticky;
  top: 138px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(24, 95, 165, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  box-shadow: 0 18px 48px rgba(4, 44, 83, 0.08);
}

.admin-side-menu a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  padding: 10px;
  color: var(--navy);
  font-size: 13px;
}

.admin-side-menu a i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--light);
  color: var(--blue);
}

.admin-side-menu a:hover {
  background: var(--navy);
  color: var(--white);
}

.admin-side-menu a:hover i {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.admin-section,
.info-panel,
.admin-table {
  border: 1px solid rgba(24, 95, 165, 0.12);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(4, 44, 83, 0.07);
}

.admin-section,
.info-panel {
  padding: 22px;
}

.admin-section + .admin-section {
  margin-top: 24px;
}

.admin-section h2,
.admin-section h3 {
  margin-bottom: 16px;
  font-size: clamp(25px, 3vw, 34px);
}

.admin-table {
  overflow: hidden;
}

.admin-table.table-responsive,
.table-responsive.admin-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table table,
.admin-page table {
  width: 100%;
  min-width: 860px;
  margin: 0;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td,
.admin-page table th,
.admin-page table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--light);
  color: var(--text);
  font-size: 13px;
  vertical-align: middle;
}

.admin-table th,
.admin-page table th {
  background: #F7FBFF;
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}

.admin-table tr:last-child td,
.admin-page table tr:last-child td {
  border-bottom: 0;
}

.admin-table td code,
.admin-page table td code {
  display: inline-block;
  max-width: min(42vw, 420px);
  white-space: normal;
  overflow-wrap: anywhere;
}

.admin-table .table-actions,
.admin-page .table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  min-width: 120px;
}

.admin-table .table-actions form,
.admin-page .table-actions form {
  display: inline-flex;
  margin: 0;
}

.admin-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
}

.admin-page .btn-accent,
.admin-page .btn-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.admin-page .btn-accent:hover,
.admin-page .btn-primary:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.admin-page .btn-outline-accent,
.admin-page .btn-outline-primary {
  border: 1px solid var(--blue);
  color: var(--blue);
}

.admin-page .btn-outline-accent:hover,
.admin-page .btn-outline-primary:hover {
  background: var(--blue);
  color: var(--white);
}

.admin-page .btn-danger,
.admin-page .btn-outline-danger:hover {
  color: var(--white);
}

.admin-page .form-control,
.admin-page .form-select,
.admin-page input,
.admin-page textarea,
.admin-page select {
  border: 1px solid rgba(24, 95, 165, 0.14);
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 14px;
}

.admin-page textarea {
  min-height: 130px;
}

.admin-page label {
  margin-bottom: 6px;
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-preview {
  max-width: 260px;
  max-height: 180px;
  margin: 14px 0;
  border-radius: 12px;
  object-fit: cover;
}

.admin-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
}

.admin-gallery-item {
  overflow: hidden;
  border: 1px solid rgba(24, 95, 165, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(4, 44, 83, 0.07);
}

.admin-gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.admin-gallery-item .p-3,
.admin-gallery-item form {
  padding: 14px;
}

.role-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ao-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: 14px;
}

.ao-gallery-grid a {
  position: relative;
  overflow: hidden;
  min-height: 0;
  grid-column: span 4;
  grid-row: span 3;
  border: 1px solid rgba(24, 95, 165, 0.12);
  border-radius: 18px;
  background: var(--light);
  box-shadow: 0 20px 50px rgba(4, 44, 83, 0.08);
  transform: translateY(0);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ao-gallery-grid a:nth-child(1),
.ao-gallery-grid a:nth-child(8n) {
  grid-column: span 6;
  grid-row: span 5;
}

.ao-gallery-grid a:nth-child(4n) {
  grid-row: span 4;
}

.ao-gallery-grid a:nth-child(5n) {
  grid-column: span 5;
}

.ao-gallery-grid img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.ao-gallery-grid span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 44, 83, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ao-gallery-grid svg {
  width: 34px;
  height: 34px;
  fill: var(--white);
}

.ao-gallery-grid a:hover span {
  opacity: 1;
}

.ao-gallery-grid a:hover {
  border-color: rgba(24, 95, 165, 0.32);
  box-shadow: 0 28px 70px rgba(4, 44, 83, 0.14);
  transform: translateY(-6px);
}

.ao-gallery-grid a:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.05);
}

.ao-gallery-page .ao-page-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(240, 245, 251, 0.96), rgba(255, 255, 255, 0.86)),
    url("/images/therapy_office.jpg") center / cover;
  text-align: left;
}

.ao-gallery-page .ao-page-hero .ao-container {
  display: grid;
  justify-items: start;
  max-width: 1160px;
}

.ao-gallery-page .ao-page-hero h1,
.ao-gallery-page .ao-page-hero p:not(.ao-eyebrow) {
  margin-left: 0;
  margin-right: 0;
}

.ao-gallery-showcase {
  background:
    radial-gradient(circle at 12% 0%, rgba(55, 138, 221, 0.12), transparent 34%),
    var(--bg);
}

.ao-article-header {
  margin-bottom: 24px;
  text-align: center;
}

.ao-article-header h1 {
  font-size: clamp(34px, 6vw, 62px);
}

.ao-article-image {
  width: 100%;
  max-height: 320px;
  margin-bottom: 24px;
  border-radius: 12px;
  object-fit: cover;
}

.ao-contact-info {
  border-radius: 12px;
  background: var(--white);
  padding: 28px;
}

.ao-contact-info h2 {
  margin-bottom: 20px;
  font-size: 30px;
}

.ao-contact-info ul {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.ao-contact-info li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
}

.ao-contact-info i {
  color: var(--accent);
  font-size: 20px;
}

.ao-contact-info span {
  display: block;
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ao-contact-info p,
.ao-contact-info a {
  color: var(--text);
  font-size: 14px;
}

.ao-map-frame {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 12px;
}

.ao-contact-float-bot {
  position: fixed;
  top: auto;
  right: 22px;
  bottom: 108px;
  z-index: 140;
  display: block;
  pointer-events: none;
  transform: none;
}

.ao-contact-float-toggle {
  position: relative;
  pointer-events: auto;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 14px 34px rgba(4, 44, 83, 0.28);
}

.ao-contact-float-toggle::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin-top: -74px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(55, 138, 221, 0.12);
}

.ao-contact-float-panel {
  position: absolute;
  top: auto;
  right: 72px;
  bottom: 0;
  pointer-events: auto;
  width: min(360px, calc(100vw - 32px));
  max-height: min(70vh, 560px);
  display: grid;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(24, 95, 165, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  padding: 14px;
  box-shadow: 0 22px 58px rgba(4, 44, 83, 0.24);
  opacity: 0;
  transform: translateX(12px) scale(0.97);
  transform-origin: right bottom;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  visibility: hidden;
}

.ao-contact-float-bot.ao-open .ao-contact-float-panel {
  opacity: 1;
  transform: translateX(0) scale(1);
  visibility: visible;
}

.ao-contact-float-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  border-radius: 14px;
  background: var(--navy);
  padding: 12px;
  color: var(--white);
}

.ao-contact-float-head span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 22px;
}

.ao-contact-float-head small,
.ao-contact-float-head strong {
  display: block;
}

.ao-contact-float-head small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ao-contact-float-head strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.3;
}

.ao-contact-bot-options {
  display: grid;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 3px;
}

.ao-contact-bot-options button {
  border: 1px solid rgba(24, 95, 165, 0.12);
  border-radius: 12px;
  background: #F4F8FC;
  padding: 12px 13px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.35;
  text-align: left;
}

.ao-contact-bot-options button:hover,
.ao-contact-bot-options button.ao-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.ao-contact-bot-answer {
  min-height: 92px;
  max-height: 170px;
  overflow-y: auto;
  border-left: 3px solid var(--blue);
  border-radius: 12px;
  background: linear-gradient(180deg, #F7FBFF, #EAF2FB);
  padding: 14px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.65;
}

.ao-form {
  display: grid;
  gap: 18px;
  border-radius: 12px;
  background: var(--white);
  padding: 28px;
}

.ao-form label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ao-form input,
.ao-form textarea,
.auth-card input,
.auth-card textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--light);
  background: transparent;
  padding: 12px 0;
  color: var(--text);
  font-size: 14px;
  outline: 0;
  transition: all 0.25s ease;
}

.ao-form input:focus,
.ao-form textarea:focus,
.auth-card input:focus,
.auth-card textarea:focus {
  border-bottom-color: var(--blue);
}

.ao-honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.ao-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 44%, rgba(255, 255, 255, 0.045), transparent 24%),
    radial-gradient(circle at 18% 52%, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(135deg, #151010 0%, #1C1414 48%, #120E0E 100%);
  color: var(--white);
  padding: 72px 0 0;
}

.ao-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
  border-top: 0;
}

.ao-footer-grid > div {
  min-width: 0;
}

.ao-footer-brand {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--white);
}

.ao-footer-brand:hover {
  color: var(--accent);
}

.ao-footer-brand img {
  width: min(100%, 360px);
  height: auto;
  max-height: 230px;
  object-fit: contain;
  object-position: left center;
}

.ao-footer h2 {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 0;
  color: var(--white);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.05;
}

.ao-footer h2::after {
  display: none;
}

.ao-footer p,
.ao-footer li,
.ao-footer a,
.ao-footer small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.75;
}

.ao-footer a:hover {
  color: #68C8EF;
}

.ao-footer ul {
  display: grid;
  gap: 18px;
}

.ao-footer-contact li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
}

.ao-footer-contact i {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #68C8EF;
  font-size: 20px;
}

.ao-footer-contact small {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.2;
}

.ao-footer-contact span,
.ao-footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
}

.ao-footer-map {
  width: 100%;
  height: 190px;
  margin-top: 24px;
  border: 0;
  border-radius: 14px;
  filter: grayscale(0.1) saturate(0.85);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.ao-footer-map-primary {
  height: 250px;
  margin-top: 0;
  margin-bottom: 24px;
}

.ao-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.ao-footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.ao-footer-socials a:hover {
  border-color: #68C8EF;
  background: #68C8EF;
  color: #151010;
}

.ao-footer-bottom {
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: 20px 0;
}

.ao-footer-bottom small {
  color: var(--white);
  font-size: 11px;
}

.ao-floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 12px 30px rgba(24, 95, 165, 0.2);
}

.ao-floating-whatsapp:hover {
  background: var(--navy);
  color: var(--white);
}

#ao-cursor {
  width: 10px;
  height: 10px;
  background: rgba(55, 138, 221, 0.9);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

#ao-cursor-blur {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(55, 138, 221, 0.11) 0%, transparent 70%);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

body:has(a:hover) #ao-cursor,
body:has(button:hover) #ao-cursor {
  width: 20px;
  height: 20px;
  background: rgba(24, 95, 165, 0.6);
}

.ao-reveal,
.ao-reveal-left,
.ao-reveal-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ao-reveal-left {
  transform: translateX(-14px);
}

.ao-reveal-right {
  transform: translateX(14px);
}

.ao-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.ao-empty-state {
  border-radius: 12px;
  background: var(--white);
  padding: 24px;
  color: var(--text-mid);
  text-align: center;
}

.auth-page,
.error-page {
  width: min(100% - 32px, 480px);
  margin: 64px auto;
}

.auth-card,
.error-page {
  border-radius: 12px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 14px 36px rgba(24, 95, 165, 0.07);
}

.auth-card h1,
.error-page h1 {
  margin-bottom: 18px;
  font-size: 34px;
}

.auth-card .btn,
.btn-accent,
.btn-primary {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 400;
}

.btn-outline-accent {
  border: 1px solid var(--blue);
  border-radius: 8px;
  color: var(--blue);
  font-weight: 400;
}

.btn-accent:hover,
.btn-primary:hover,
.auth-card .btn:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline-accent:hover {
  background: var(--blue);
  color: var(--white);
}

.alert {
  border: 0;
  border-radius: 0;
  font-size: 14px;
}

.page-hero,
.info-panel,
.content-card,
.notice-card,
.featured-post,
.article-header,
.article-content {
  border-radius: 12px;
  background: var(--white);
  padding: 24px;
}

.page-hero h1,
.article-header h1 {
  font-size: clamp(34px, 6vw, 62px);
}

.content-card,
.notice-card {
  overflow: hidden;
}

.content-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.content-card .card-body,
.notice-card {
  color: var(--text-mid);
  font-size: 14px;
}

.map-frame {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 12px;
}

.blog-index-page {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.blog-topline {
  margin-bottom: 22px;
}

.blog-tabbar,
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tabbar a,
.category-btn {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--light);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-mid);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-tabbar a:hover,
.blog-tabbar a.active,
.category-btn:hover,
.category-btn.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.blog-hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}

.blog-mini-feature {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
}

.blog-mini-feature img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  opacity: 0.72;
  transition: all 0.25s ease;
}

.blog-mini-feature span {
  position: absolute;
  inset: auto 0 0;
  padding: 14px;
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.15;
  background: linear-gradient(to top, rgba(4, 44, 83, 0.82), transparent);
}

.blog-mini-feature:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.blog-magazine-layout,
.article-main-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.blog-section-title {
  margin-bottom: 22px;
}

.blog-section-title h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.blog-filter-select {
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--white);
  padding: 16px;
}

.blog-filter-select > span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}

.blog-feed {
  min-width: 0;
}

.blog-list-item {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: var(--white);
  padding: 16px;
  transition: all 0.25s ease;
}

.blog-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(24, 95, 165, 0.09);
}

.blog-list-image {
  overflow: hidden;
  border-radius: 10px;
  background: var(--light);
}

.blog-list-image img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  transition: all 0.25s ease;
}

.blog-list-item:hover .blog-list-image img {
  transform: scale(1.04);
}

.blog-list-copy {
  align-self: center;
}

.blog-list-copy h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.blog-list-copy h2 a {
  color: var(--navy);
}

.blog-list-copy p {
  margin: 12px 0;
  color: var(--text-mid);
  font-size: 14px;
}

.blog-meta-line,
.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--text-soft);
  font-size: 12px;
}

.blog-meta-line a,
.article-meta-line a {
  color: var(--blue);
}

.read-link {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-sidebar {
  display: grid;
  gap: 22px;
}

.blog-side-block {
  border-radius: 12px;
  background: var(--white);
  padding: 20px;
  box-shadow: 0 12px 30px rgba(24, 95, 165, 0.07);
}

.blog-side-block h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.blog-side-block img {
  width: 100%;
  max-height: 220px;
  margin-bottom: 14px;
  border-radius: 10px;
  object-fit: cover;
}

.blog-side-block p {
  margin-bottom: 14px;
  color: var(--text-mid);
  font-size: 13px;
}

.blog-online-box {
  background: var(--light);
}

.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.pagination-wrap span {
  color: var(--text-mid);
  font-size: 13px;
}

.empty-state {
  border-radius: 12px;
  background: var(--white);
  padding: 24px;
  color: var(--text-mid);
  text-align: center;
}

.article-background-page {
  background: var(--bg);
}

.article-hero-bg {
  min-height: 46vh;
  background-position: center;
  background-size: cover;
}

.article-shell {
  margin-top: -110px;
  position: relative;
  z-index: 2;
}

.article-title-panel,
.article-body-panel {
  border-radius: 12px;
  background: var(--white);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: 0 18px 44px rgba(4, 44, 83, 0.1);
}

.article-title-panel {
  margin-bottom: 28px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 12px;
}

.article-breadcrumb a,
.article-breadcrumb span {
  color: var(--text-soft);
}

.article-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.article-category {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--light);
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-magazine-header h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(42px, 7vw, 78px);
}

.article-subtitle {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--text-mid);
  font-size: 18px;
}

.article-body-panel {
  min-width: 0;
}

.article-content {
  padding: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
  margin-bottom: 18px;
}

.article-content h2,
.article-content h3 {
  margin: 30px 0 12px;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 12px;
}

.comments-section {
  margin-top: 36px;
  border-top: 1px solid var(--light);
  padding-top: 28px;
}

.comments-section h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.comment-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--bg);
  padding: 14px;
}

.comment-item img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-item strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
}

.comment-item small {
  color: var(--text-soft);
  font-size: 11px;
}

.comment-item p,
.comment-form p {
  color: var(--text-mid);
  font-size: 14px;
}

.comment-form {
  margin-top: 22px;
}

.comment-form textarea {
  width: 100%;
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 12px;
}

.article-sidebar {
  position: static;
}

@media (min-width: 768px) {
  .ao-section {
    padding: 86px 0;
  }

  .ao-menu-toggle {
    display: none;
  }

  .ao-nav-menu {
    display: flex;
  }

  .ao-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ao-blog-preview-grid,
  .ao-review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ao-education-grid,
  .ao-two-column,
  .ao-contact-grid,
  .ao-reviews-layout,
  .ao-about-hero-grid,
  .ao-about-story,
  .ao-cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ao-about-method-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ao-detail-layout {
    grid-template-columns: 280px 1fr;
  }

  .ao-service-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  }

  .ao-service-detail-intro {
    grid-template-columns: repeat(2, 1fr);
  }

  .ao-footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (min-width: 1100px) {
  .ao-service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .ao-footer-grid {
    grid-template-columns: minmax(280px, 1.25fr) minmax(260px, 1fr) minmax(180px, 0.72fr) minmax(220px, 0.92fr);
  }
}

@media (min-width: 768px) and (max-width: 1099.98px) {
  main {
    padding-top: 118px;
  }

  main:has(.ao-hero-video:first-child) {
    padding-top: 0;
  }

  .ao-container,
  .ao-narrow,
  .blog-index-page,
  .admin-page {
    width: min(100% - 40px, 100%);
  }

  .ao-section {
    padding: 72px 0;
  }

  .ao-section-heading {
    align-items: flex-start;
    gap: 18px;
  }

  .ao-blog-preview-grid,
  .ao-review-grid,
  .ao-about-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ao-home-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ao-home-news-section .ao-blog-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-magazine-layout,
  .article-main-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-list-item {
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  }

  .blog-list-copy h2 {
    font-size: 26px;
  }

  .article-shell {
    margin-top: -78px;
  }

  .article-hero-bg {
    min-height: 36vh;
  }

  .ao-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .ao-gallery-grid a,
  .ao-gallery-grid a:nth-child(1),
  .ao-gallery-grid a:nth-child(4n),
  .ao-gallery-grid a:nth-child(5n),
  .ao-gallery-grid a:nth-child(8n) {
    grid-column: span 3;
    grid-row: span 1;
    aspect-ratio: 4 / 3;
  }

  .ao-contact-grid {
    gap: 24px;
  }

  .ao-contact-info,
  .ao-form {
    min-width: 0;
  }

  .ao-service-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .ao-service-detail-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ao-service-detail-nav > span {
    grid-column: 1 / -1;
  }

  .ao-service-detail-cover img {
    height: clamp(320px, 48vw, 460px);
  }

  .ao-service-detail-section {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .ao-service-detail-cta {
    grid-template-columns: 1fr;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-side-menu {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-heading {
    align-items: flex-start;
  }

  .admin-section,
  .info-panel {
    min-width: 0;
  }

  .admin-table.table-responsive,
  .table-responsive.admin-table,
  .admin-table {
    overflow-x: auto;
  }

  .admin-page {
    padding-top: 152px !important;
  }
}

@media (max-width: 1399.98px) {
  .ao-menu-toggle {
    display: inline-flex !important;
  }

  .ao-nav-menu {
    position: fixed;
    inset: 118px 0 auto;
    height: calc(100svh - 118px);
    background: var(--white);
    padding: 28px 24px;
    overflow-y: auto;
  }

  .ao-nav-menu.show {
    display: flex !important;
    flex-direction: column;
  }

  .ao-nav-menu:not(.show) {
    display: none;
  }

  .ao-nav-links,
  .ao-nav-left,
  .ao-nav-right,
  .ao-nav-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .ao-nav-links {
    flex: 0 0 auto;
    justify-content: flex-start;
    max-width: 680px;
    margin-inline: auto;
    padding: 0;
  }

  .ao-nav-left,
  .ao-nav-right {
    margin: 0;
    padding: 0;
  }

  .ao-nav-actions {
    margin-left: 0;
    margin-top: 16px;
    white-space: normal;
  }

  .ao-nav-link,
  .ao-login-link,
  .ao-whatsapp-link {
    width: 100%;
    justify-content: center;
  }

  .ao-nav-menu .ao-nav-link,
  .ao-nav-menu .ao-dropdown-toggle {
    color: var(--text-mid) !important;
  }

  .ao-nav-menu .ao-login-link {
    border-color: var(--blue) !important;
    color: var(--blue) !important;
  }

  .ao-nav-item {
    display: grid;
    grid-template-columns: 1fr 44px;
    border-radius: 10px;
  }

  .ao-nav-item > .ao-nav-link {
    justify-content: center;
  }

  .ao-dropdown-toggle {
    width: 44px;
    height: 44px;
    border-left: 1px solid var(--light);
  }

  .ao-dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .ao-dropdown-menu::before {
    display: none;
  }

  .ao-has-dropdown.ao-open .ao-dropdown-menu {
    max-height: 320px;
    margin-top: 4px;
    padding: 8px 10px 10px;
    border: 1px solid var(--light);
  }

  .ao-has-dropdown:hover .ao-dropdown-menu,
  .ao-has-dropdown:focus-within .ao-dropdown-menu {
    transform: none;
  }

  .ao-hero-intro {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: hidden;
  }

  .ao-hero-intro-copy {
    flex-basis: auto;
    width: 100%;
    min-height: 0;
    padding: 42px 24px 34px;
    background-attachment: scroll;
  }

  .ao-intro-text {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 440px;
    transform: none;
  }

  .ao-script-title {
    font-size: clamp(40px, 12vw, 54px);
    line-height: 1;
  }

  .ao-intro-lead,
  .ao-intro-body {
    max-width: none;
    font-size: 16px;
    line-height: 1.75;
  }

  .ao-hero-intro-photo {
    position: relative;
    flex-basis: auto;
    width: 100%;
    min-height: auto;
    overflow: hidden;
  }

  .ao-hero-intro-photo img {
    position: relative;
    top: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    margin-top: 0;
    margin-left: 0;
    object-fit: contain;
    object-position: center center;
  }

}

@media (max-width: 575.98px) {
  main {
    padding-top: 82px;
  }

  main:has(.ao-hero-video:first-child) {
    padding-top: 0;
  }

  .ao-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 1px 16px rgba(4, 44, 83, 0.06) !important;
  }

  .ao-nav-container {
    min-height: 82px;
    gap: 8px;
    padding: 8px 14px;
  }

  .ao-brand {
    min-width: 0;
    gap: 8px;
  }

  .ao-brand img {
    width: 82px;
    height: 62px;
    object-position: left center;
  }

  .ao-brand strong {
    max-width: 154px;
    color: var(--navy) !important;
    font-size: 17px;
    line-height: 1.08;
  }

  .ao-brand small {
    max-width: 150px;
    font-size: 11px;
  }

  .ao-menu-toggle {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-color: rgba(4, 44, 83, 0.28);
    border-radius: 10px;
  }

  .ao-nav-menu {
    inset: 82px 0 auto;
    height: calc(100dvh - 82px);
    min-height: 0;
    padding: 18px 22px 28px;
  }

  .ao-nav-menu.show {
    display: flex !important;
    flex-direction: column;
  }

  .ao-nav-links {
    gap: 4px;
  }

  .ao-nav-left,
  .ao-nav-right,
  .ao-nav-actions {
    gap: 4px;
  }

  .ao-nav-link {
    min-height: 42px;
    align-items: center;
    padding: 8px 4px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .ao-nav-item {
    grid-template-columns: 1fr 42px;
  }

  .ao-dropdown-toggle {
    width: 42px;
    height: 42px;
  }

  .ao-has-dropdown.ao-open .ao-dropdown-menu {
    max-height: 260px;
  }

  .ao-nav-actions {
    margin-top: 8px;
  }

  .ao-login-link,
  .ao-whatsapp-link {
    min-height: 48px;
  }
}

@media (max-width: 768px) {
  main {
    padding-top: 104px;
  }

  main:has(.ao-hero-video:first-child) {
    padding-top: 0;
  }

  .ao-container,
  .ao-narrow {
    width: min(100% - 28px, 100%);
  }

  .ao-section {
    padding: 54px 0;
  }

  .ao-hero-video {
    height: 100svh;
  }

  .ao-video-wrap video {
    background-attachment: scroll;
  }

  .ao-hero-script {
    max-width: 330px;
    font-size: clamp(54px, 16vw, 72px);
    line-height: 0.92;
  }

  .ao-hero-name {
    font-size: clamp(22px, 7vw, 30px);
  }

  .ao-hero-loc {
    max-width: none;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1.4;
    white-space: nowrap;
  }

  .ao-hero-cta,
  .ao-section-cta .ao-btn,
  .ao-intro-whatsapp,
  .ao-intro-outline,
  .ao-about-actions .ao-btn {
    width: 100%;
    max-width: 360px;
  }

  .ao-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .ao-section-heading h2 {
    font-size: clamp(34px, 11vw, 52px);
  }

  .ao-page-hero {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .ao-page-hero h1,
  .blog-hero-strip h1,
  .article-magazine-header h1 {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.08;
  }

  .ao-service-card img,
  .ao-blog-preview-card img,
  .ao-gallery-card img,
  .ao-announcement-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .ao-service-card span,
  .ao-blog-preview-card div,
  .ao-announcement-card {
    padding: 18px;
  }

  .ao-education-card,
  .ao-review-card,
  .ao-review-form,
  .ao-about-cert-panel,
  .ao-panel,
  .auth-card {
    padding: 20px;
  }

  .ao-intro-actions,
  .ao-about-actions,
  .ao-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ao-section-cta {
    justify-content: stretch;
    margin-top: 24px;
  }

  .ao-faq-list summary {
    padding-right: 48px;
    font-size: 25px;
    line-height: 1.2;
  }

  .ao-faq-list {
    grid-auto-columns: minmax(300px, 88vw);
  }

  .ao-faq-heading {
    align-items: center;
    flex-direction: row;
  }

  .ao-faq-heading h2 {
    max-width: calc(100% - 100px);
  }

  .ao-faq-controls {
    margin-left: auto;
  }

  .ao-review-form,
  .ao-form,
  .ao-login-card {
    width: 100%;
  }

  .ao-service-detail-hero {
    padding: 40px 0;
  }

  .ao-service-detail-copy h1 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .ao-service-detail-copy p:not(.ao-eyebrow),
  .ao-service-detail-intro p {
    font-size: 15px;
  }

  .ao-service-detail-nav {
    padding: 14px;
  }

  .ao-service-detail-section {
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 18px;
  }

  .ao-service-detail-index {
    position: static;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    font-size: 24px;
  }

  .ao-service-detail-cta {
    grid-template-columns: 1fr;
  }

  .admin-page {
    width: min(100% - 24px, 100%);
    padding-top: 128px !important;
    padding-bottom: 44px !important;
  }

  .admin-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-actions,
  .admin-heading .admin-actions,
  .admin-heading > a,
  .admin-page .btn {
    width: 100%;
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-side-menu {
    position: static;
    grid-template-columns: 1fr;
  }

  .admin-section,
  .info-panel {
    padding: 16px;
  }

  .admin-table th,
  .admin-table td,
  .admin-page table th,
  .admin-page table td {
    min-width: 140px;
    padding: 11px 12px;
    font-size: 12px;
  }

  .admin-table .table-actions,
  .admin-page .table-actions {
    min-width: 132px;
  }

  .admin-page form {
    min-width: 0;
  }

  .admin-page .row {
    --bs-gutter-x: 0.75rem;
  }

  .admin-gallery {
    grid-template-columns: 1fr;
  }

  .ao-footer {
    padding-top: 46px;
  }

  .ao-footer-grid > div {
    padding: 0;
  }

  .ao-footer-brand {
    margin-bottom: 18px;
  }

  .ao-footer-brand img {
    width: min(260px, 100%);
    height: auto;
  }

  .ao-footer-map {
    height: 190px;
  }

  .ao-footer-map-primary {
    height: 230px;
  }

  .ao-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .ao-gallery-grid a,
  .ao-gallery-grid a:nth-child(1),
  .ao-gallery-grid a:nth-child(4n),
  .ao-gallery-grid a:nth-child(5n),
  .ao-gallery-grid a:nth-child(8n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .ao-gallery-page .ao-page-hero {
    text-align: center;
  }

  .ao-gallery-page .ao-page-hero .ao-container {
    justify-items: center;
  }

  .ao-gallery-page .ao-page-hero h1,
  .ao-gallery-page .ao-page-hero p:not(.ao-eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .ao-footer-contact li {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .ao-footer-contact i {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .ao-contact-float-bot {
    top: auto;
    right: 14px;
    bottom: 78px;
    transform: none;
  }

  .ao-contact-float-panel {
    top: auto;
    right: 0;
    bottom: 70px;
    width: min(340px, calc(100vw - 28px));
    max-height: 68vh;
    transform: translateY(12px) scale(0.97);
    transform-origin: right bottom;
  }

  .ao-contact-float-bot.ao-open .ao-contact-float-panel {
    transform: translateY(0) scale(1);
  }

  .ao-contact-bot-options {
    max-height: 240px;
    overflow-y: auto;
  }

  .ao-floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767.98px) {
  main {
    padding-top: 82px;
  }

  main:has(.ao-hero-video:first-child) {
    padding-top: 0;
  }

  .ao-nav-container {
    min-height: 82px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .ao-nav-menu {
    inset: 82px 0 auto;
    height: calc(100dvh - 82px);
    min-height: 0;
  }

  #ao-cursor,
  #ao-cursor-blur {
    display: none;
  }
}

@media (min-width: 992px) {
  .ao-home-news-section .ao-home-news-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 28px;
    align-items: start;
  }

  .ao-home-news-section .ao-blog-preview-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 991.98px) {
  .ao-home-news-section .ao-home-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 991.98px) {
  .blog-index-page {
    width: min(100% - 24px, 100%);
    padding-top: 28px !important;
    padding-bottom: 44px !important;
  }

  .blog-hero-strip {
    display: flex;
    gap: 12px;
    margin-right: -12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .blog-mini-feature {
    flex: 0 0 min(78vw, 280px);
    min-height: 170px;
    scroll-snap-align: start;
  }

  .blog-magazine-layout,
  .article-main-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-list-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .blog-list-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .blog-list-copy {
    align-self: start;
  }

  .blog-list-copy h2 {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.1;
  }

  .blog-filter-select,
  .blog-side-block,
  .article-title-panel,
  .article-body-panel {
    border-radius: 14px;
    padding: 18px;
  }

  .blog-tabbar,
  .blog-categories {
    flex-wrap: nowrap;
    margin-right: -12px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .blog-tabbar a,
  .category-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .blog-section-title h1,
  .article-magazine-header h1 {
    font-size: clamp(36px, 12vw, 52px);
    line-height: 1.04;
  }

  .article-hero-bg {
    min-height: 220px;
  }

  .article-shell {
    width: min(100% - 24px, 100%);
    margin-top: -46px;
  }

  .article-meta-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .article-content {
    font-size: 15px;
    line-height: 1.8;
  }

  .article-content table,
  .article-content iframe {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .pagination-wrap {
    align-items: stretch;
    flex-direction: column;
  }

  .pagination-wrap .btn {
    width: 100%;
  }
}
