/* Anannt Education homepage — premium editorial experience */
.home-page {
  --ae-navy: #0d1b36;
  --ae-navy-2: #172a4b;
  --ae-blue: #234f85;
  --ae-ink: #13213a;
  --ae-copy: #4b5870;
  --ae-muted: #6c7689;
  --ae-orange: #e88916;
  --ae-orange-dark: #c96700;
  --ae-cream: #fbf6ed;
  --ae-cream-2: #f5ecde;
  --ae-paper: #fffdf9;
  --ae-line: rgba(19, 33, 58, 0.12);
  --ae-radius-sm: 14px;
  --ae-radius: 22px;
  --ae-radius-lg: 34px;
  --ae-shadow-sm: 0 12px 32px rgba(13, 27, 54, 0.08);
  --ae-shadow: 0 28px 80px rgba(13, 27, 54, 0.14);
  --ae-ease: cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--ae-paper);
  color: var(--ae-ink);
}

/* Unified site header: one sticky container, one navigation state. */
.home-page .ae-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(13, 27, 54, 0.1);
  background: rgba(255, 253, 249, 0.97);
  box-shadow: 0 8px 28px rgba(13, 27, 54, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-page .ae-site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(13, 27, 54, 0.11);
}

.home-page .ae-site-header__inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-page .ae-site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.home-page .ae-site-brand img {
  display: block;
  width: 148px;
  height: auto;
}

.home-page .ae-site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(4px, 0.65vw, 10px);
}

.home-page .ae-site-nav > a,
.home-page .ae-nav-group > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 9px 10px;
  color: var(--ae-ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms var(--ae-ease);
}

.home-page .ae-site-nav > a:hover,
.home-page .ae-site-nav > a.is-active,
.home-page .ae-nav-group > summary:hover,
.home-page .ae-nav-group[open] > summary {
  color: var(--ae-orange-dark);
  background: var(--ae-cream);
}

.home-page .ae-nav-group {
  position: relative;
}

.home-page .ae-nav-group > summary {
  list-style: none;
}

.home-page .ae-nav-group > summary::-webkit-details-marker {
  display: none;
}

.home-page .ae-nav-group > summary i {
  transition: transform 180ms ease;
}

.home-page .ae-nav-group[open] > summary i {
  transform: rotate(180deg);
}

.home-page .ae-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid var(--ae-line);
  border-radius: 18px;
  padding: 12px;
  background: #fffdf9;
  box-shadow: var(--ae-shadow-sm);
  transform: translateX(-50%);
}

.home-page .ae-nav-panel a {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 11px;
  padding: 9px 12px;
  color: var(--ae-ink);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.home-page .ae-nav-panel a:hover {
  color: var(--ae-orange-dark);
  background: var(--ae-cream);
}

.home-page .ae-site-nav > .ae-header-cta {
  min-height: 48px;
  margin-left: 4px;
  padding: 12px 17px;
  background: var(--ae-navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13, 27, 54, 0.16);
}

.home-page .ae-site-nav > .ae-header-cta:hover {
  background: var(--ae-blue);
  color: #fff;
  transform: translateY(-1px);
}

.home-page .ae-site-nav__contact,
.home-page .ae-menu-toggle {
  display: none;
}

.home-page * {
  box-sizing: border-box;
}

.home-page ::selection {
  background: rgba(232, 137, 22, 0.24);
  color: var(--ae-navy);
}

.home-page a,
.home-page button,
.home-page summary,
.home-page input,
.home-page select {
  touch-action: manipulation;
}

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page summary:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible {
  outline: 3px solid rgba(35, 79, 133, 0.42) !important;
  outline-offset: 3px;
}

.home-page .mouse-follower,
.home-page .scrollToTop {
  display: none !important;
}

/* One calm, useful navigation bar */
.home-page .header-section {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 83px;
  overflow: visible;
  border-bottom: 1px solid rgba(13, 27, 54, 0.08);
  background: #fffdf9;
  box-shadow: 0 8px 30px rgba(13, 27, 54, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-page .header__topone {
  display: none !important;
}

.home-page .one__header {
  overflow: visible;
  padding: 0 !important;
  background: transparent !important;
}

.home-page .one__header.header-fixed {
  top: 0 !important;
  z-index: 1001 !important;
  border-bottom: 1px solid rgba(13, 27, 54, 0.1);
  background: rgba(255, 253, 249, 0.98) !important;
  box-shadow: 0 12px 36px rgba(13, 27, 54, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.home-page .one__mainheader,
.home-page .main-navbar {
  padding: 0 !important;
}

.home-page .navbar-toggle-item > div {
  min-height: 82px;
  margin-top: 0 !important;
}

@media (min-width: 992px) {
  .home-page .navbar-toggle-item.cus__scroll {
    max-height: none !important;
    overflow: visible !important;
  }

  .home-page .custom-nav > li.menu-item {
    padding: 18px 0 !important;
  }
}

.home-page .navbar-brand.logo {
  display: flex !important;
  flex: 0 0 148px;
  max-width: 148px;
  align-items: center;
}

.home-page .custom-nav {
  align-items: center;
  gap: clamp(14px, 1.5vw, 25px) !important;
}

.home-page .custom-nav > li > a,
.home-page .custom-nav > li > button {
  position: relative;
  min-height: 44px;
  padding: 10px 0;
  color: var(--ae-ink) !important;
  font-size: 0.91rem;
  font-weight: 650 !important;
  line-height: 1.5;
}

.home-page .custom-nav > li:not(.ae-nav-cta) > a::after,
.home-page .custom-nav > li:not(.ae-nav-cta) > button::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--ae-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ae-ease);
}

.home-page .custom-nav > li:not(.ae-nav-cta) > a:hover::after,
.home-page .custom-nav > li:not(.ae-nav-cta) > button:hover::after,
.home-page .custom-nav > li > a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-page .custom-nav .sub-menu {
  min-width: 210px;
  border: 1px solid var(--ae-line);
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.98) !important;
  box-shadow: var(--ae-shadow-sm);
}

.home-page .custom-nav .sub-menu a {
  display: block;
  min-height: 40px;
  border-radius: 9px;
  padding: 8px 10px;
  color: var(--ae-ink) !important;
  font-size: 0.9rem;
}

.home-page .custom-nav .sub-menu a:hover {
  background: var(--ae-cream);
  color: var(--ae-orange-dark) !important;
}

.home-page .custom-nav > li.ae-nav-cta > a {
  display: inline-flex;
  min-height: 46px !important;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px !important;
  background: var(--ae-navy);
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(13, 27, 54, 0.18);
  transition: transform 220ms var(--ae-ease), background 220ms ease, box-shadow 220ms ease;
}

.home-page .custom-nav > li.ae-nav-cta > a:hover {
  background: var(--ae-blue);
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(13, 27, 54, 0.22);
  transform: translateY(-2px);
}

.home-page .header-section.is-scrolled {
  border-bottom-color: rgba(13, 27, 54, 0.12);
  box-shadow: 0 12px 36px rgba(13, 27, 54, 0.09);
}

/* Shared homepage language */
.home-page .ad-home {
  overflow: clip;
  background: var(--ae-paper);
  color: var(--ae-ink);
}

.home-page .ad-container {
  width: min(100% - 48px, 1240px);
}

.home-page .ad-section {
  position: relative;
  padding: clamp(68px, 6.2vw, 96px) 0;
}

.home-page .ad-section--soft {
  background: var(--ae-cream);
}

.home-page .ad-section-kicker,
.home-page .ad-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--ae-orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-page .ad-section-kicker::before {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.home-page .ad-section-title {
  max-width: 810px;
  color: var(--ae-ink);
  font-size: clamp(2.35rem, 4.5vw, 4.3rem);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 0.98;
  text-wrap: balance;
}

.home-page .ad-section-text {
  max-width: 700px;
  margin-top: 22px;
  color: var(--ae-copy);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.75;
}

/* Hero */
.home-page .ad-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(66px, 7.5vw, 112px) 0 clamp(60px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(251, 246, 237, 0.99) 0%, rgba(251, 246, 237, 0.96) 44%, rgba(251, 246, 237, 0.72) 67%, rgba(13, 27, 54, 0.16) 100%),
    url("../images/about-us/image-3.png") 72% center / cover no-repeat;
}

.home-page .ad-hero::before {
  position: absolute;
  top: -210px;
  left: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(232, 137, 22, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(232, 137, 22, 0.035), 0 0 0 124px rgba(232, 137, 22, 0.02);
  content: "";
  pointer-events: none;
}

.home-page .ad-hero::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(13, 27, 54, 0.1);
}

.home-page .ad-hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.72fr);
  gap: clamp(40px, 7vw, 104px);
}

.home-page .ad-eyebrow {
  min-height: 38px;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  border: 1px solid rgba(13, 27, 54, 0.13);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 253, 249, 0.78);
  color: var(--ae-blue);
  font-size: 0.83rem;
  font-weight: 750;
  box-shadow: 0 6px 20px rgba(13, 27, 54, 0.04);
  backdrop-filter: blur(8px);
}

.home-page .ad-eyebrow i {
  color: var(--ae-orange-dark);
  font-size: 1rem;
}

.home-page .ad-hero h1 {
  max-width: 780px;
  color: var(--ae-navy);
  font-size: clamp(3.35rem, 6.3vw, 6.3rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.91;
  text-wrap: balance;
}

.home-page .ad-hero-subtext {
  max-width: 690px;
  margin: 30px 0 32px;
  color: #425069;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.68;
}

.home-page .ad-button-row {
  gap: 12px;
}

.home-page .ad-btn {
  position: relative;
  min-height: 54px;
  gap: 9px;
  overflow: hidden;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 220ms var(--ae-ease), box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.home-page .ad-btn:hover {
  transform: translateY(-2px);
}

.home-page .ad-btn:active {
  transform: scale(0.975);
}

.home-page .ad-btn--primary {
  background: var(--ae-orange);
  color: #15100a;
  box-shadow: 0 14px 32px rgba(206, 105, 0, 0.2);
}

.home-page .ad-btn--primary:hover {
  background: #f09923;
  color: #15100a;
  box-shadow: 0 18px 38px rgba(206, 105, 0, 0.28);
}

.home-page .ad-btn--secondary {
  border-color: rgba(13, 27, 54, 0.16);
  background: rgba(255, 253, 249, 0.88);
  color: var(--ae-navy);
  box-shadow: 0 8px 24px rgba(13, 27, 54, 0.06);
}

.home-page .ad-btn--secondary:hover {
  border-color: rgba(13, 27, 54, 0.32);
  background: #fff;
}

.home-page .ad-btn--whatsapp {
  min-height: 48px;
  padding-inline: 14px;
  background: transparent;
  color: #157149;
  box-shadow: none;
}

.home-page .ad-btn--whatsapp:hover {
  background: rgba(21, 113, 73, 0.08);
  color: #0e5e3b;
}

.home-page .ad-hero-notes {
  max-width: 790px;
  gap: 10px;
  margin-top: 34px;
}

.home-page .ad-hero-note {
  min-height: 96px;
  border: 1px solid rgba(13, 27, 54, 0.1);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 253, 249, 0.74);
  color: #526079;
  font-size: 0.86rem;
  line-height: 1.48;
  box-shadow: 0 8px 24px rgba(13, 27, 54, 0.04);
  backdrop-filter: blur(8px);
}

.home-page .ad-hero-note strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: var(--ae-navy);
  font-size: 0.9rem;
}

.home-page .ad-hero-note strong i {
  color: var(--ae-orange-dark);
  font-size: 1.05rem;
}

.home-page .ad-lead-card {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--ae-radius);
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--ae-shadow);
  backdrop-filter: blur(18px);
}

.home-page .ad-lead-card::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ae-orange);
  box-shadow: 0 0 0 7px rgba(232, 137, 22, 0.12);
  content: "";
}

.home-page .ad-lead-card h2 {
  max-width: 360px;
  margin-bottom: 10px;
  color: var(--ae-navy);
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.home-page .ad-lead-card > p {
  margin-bottom: 24px;
  color: var(--ae-copy);
  font-size: 0.94rem;
  line-height: 1.62;
}

.home-page .ad-form {
  gap: 9px;
}

.home-page .ad-form label {
  margin-top: 4px;
  color: var(--ae-ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.home-page .ad-form input,
.home-page .ad-form select,
.home-page .ad-form .nice-select {
  min-height: 50px;
  border: 1px solid rgba(13, 27, 54, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ae-ink);
  font-size: 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.home-page .ad-form input:focus,
.home-page .ad-form select:focus,
.home-page .ad-form .nice-select.open {
  border-color: var(--ae-blue);
  outline: none;
  box-shadow: 0 0 0 4px rgba(35, 79, 133, 0.11);
}

.home-page .ad-form .ad-btn {
  width: 100%;
  margin-top: 7px;
}

/* Proof bar */
.home-page .ad-trust-strip {
  position: relative;
  padding: 0;
  background: var(--ae-navy);
}

.home-page .ad-proof-grid {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .ad-proof-item {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  padding: 26px clamp(18px, 2.8vw, 38px);
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.91rem;
  line-height: 1.5;
}

.home-page .ad-proof-item:last-child {
  border-right: 0;
}

.home-page .ad-proof-item strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

/* Cards and pathway sections */
.home-page .ad-grid {
  gap: 18px;
  margin-top: 44px !important;
}

.home-page .ad-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ae-line);
  border-radius: var(--ae-radius-sm);
  padding: clamp(24px, 2.5vw, 34px);
  background: #fff;
  box-shadow: 0 8px 26px rgba(13, 27, 54, 0.045);
  transition: transform 300ms var(--ae-ease), border-color 220ms ease, box-shadow 300ms ease;
}

@media (hover: hover) {
  .home-page .ad-card:hover {
    border-color: rgba(35, 79, 133, 0.24);
    box-shadow: 0 20px 48px rgba(13, 27, 54, 0.11);
    transform: translateY(-6px);
  }
}

.home-page .ad-card h3 {
  margin-bottom: 12px;
  color: var(--ae-navy);
  font-size: clamp(1.14rem, 1.7vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.23;
}

.home-page .ad-card p,
.home-page .ad-tool-meta {
  color: var(--ae-copy);
  line-height: 1.66;
}

.home-page .ad-tool-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  border-radius: var(--ae-radius);
}

.home-page #free-tools .ad-tools-grid .ad-tool-card:first-child {
  grid-column: auto;
}

.home-page #free-tools .ad-tool-card:first-child {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(13, 27, 54, 0.98), rgba(35, 79, 133, 0.94)),
    url("../images/home/online-education.jpg") center / cover;
}

.home-page #free-tools .ad-tool-card:first-child::after {
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.035), 0 0 0 84px rgba(255, 255, 255, 0.02);
  content: "";
}

.home-page #free-tools .ad-tool-card:first-child h3,
.home-page #free-tools .ad-tool-card:first-child .ad-tool-summary,
.home-page #free-tools .ad-tool-card:first-child .ad-tool-outcome,
.home-page #free-tools .ad-tool-card:first-child dt,
.home-page #free-tools .ad-tool-card:first-child dd {
  position: relative;
  z-index: 1;
  color: #fff;
}

.home-page .ad-tool-summary {
  margin: 0;
  color: var(--ae-copy);
  line-height: 1.62;
}

.home-page .ad-tool-outcome {
  display: block;
  margin: 18px 0 22px;
  color: var(--ae-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-page .ad-tool-card .ad-btn {
  align-self: flex-start;
  margin-top: auto;
}

.home-page .ad-tool-meta {
  gap: 11px;
}

.home-page .ad-tool-meta div {
  grid-template-columns: 72px minmax(0, 1fr);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(13, 27, 54, 0.08);
  color: var(--ae-copy);
}

.home-page .ad-tool-meta div:last-child {
  border-bottom: 0;
}

.home-page #free-tools .ad-tool-card:first-child .ad-tool-meta div {
  border-color: rgba(255, 255, 255, 0.13);
}

.home-page .ad-tool-meta dt {
  color: var(--ae-muted);
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-page .ad-btn--dark {
  z-index: 1;
  justify-self: start;
  background: var(--ae-navy);
  color: #fff;
}

.home-page .ad-btn--dark:hover {
  background: var(--ae-blue);
  color: #fff;
}

.home-page #free-tools .ad-tool-card:first-child .ad-btn--dark {
  background: var(--ae-orange);
  color: #17100a;
}

.home-page .ad-section-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  color: var(--ae-blue);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.home-page .ad-section-link:hover {
  color: var(--ae-orange-dark);
}

.home-page #courses {
  background:
    radial-gradient(circle at 92% 8%, rgba(232, 137, 22, 0.09), transparent 26%),
    var(--ae-cream);
}

.home-page #courses .ad-course-group {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--ae-line);
  border-radius: var(--ae-radius);
  padding-top: 72px;
}

.home-page #courses .ad-course-group::before {
  position: absolute;
  top: 26px;
  left: 30px;
  color: var(--ae-orange-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.home-page #courses .ad-course-group:nth-child(1)::before { content: "01 / SCHOOL"; }
.home-page #courses .ad-course-group:nth-child(2)::before { content: "02 / GRADUATE"; }
.home-page #courses .ad-course-group:nth-child(3)::before { content: "03 / LANGUAGE"; }
.home-page #courses .ad-course-group:nth-child(4)::before { content: "04 / ADMISSIONS"; }

.home-page .ad-course-list {
  margin-top: auto;
  padding-top: 24px;
}

.home-page .ad-course-list a {
  min-height: 40px;
  align-items: center;
  border-color: rgba(13, 27, 54, 0.12);
  background: var(--ae-paper);
  color: var(--ae-ink) !important;
  font-size: 0.82rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-page .ad-course-list a:hover {
  border-color: var(--ae-orange);
  background: #fff;
  color: var(--ae-orange-dark) !important;
  text-decoration: none !important;
}

/* Why Anannt */
.home-page #why-anannt {
  background: var(--ae-paper);
}

.home-page #why-anannt .ad-grid {
  gap: 0;
  border-top: 1px solid var(--ae-line);
  border-left: 1px solid var(--ae-line);
}

.home-page #why-anannt .ad-card {
  min-height: 230px;
  border: 0;
  border-right: 1px solid var(--ae-line);
  border-bottom: 1px solid var(--ae-line);
  border-radius: 0;
  box-shadow: none;
}

.home-page #why-anannt .ad-card::before {
  display: block;
  margin-bottom: 34px;
  color: var(--ae-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.home-page #why-anannt .ad-card:nth-child(1)::before { content: "01"; }
.home-page #why-anannt .ad-card:nth-child(2)::before { content: "02"; }
.home-page #why-anannt .ad-card:nth-child(3)::before { content: "03"; }
.home-page #why-anannt .ad-card:nth-child(4)::before { content: "04"; }
.home-page #why-anannt .ad-card:nth-child(5)::before { content: "05"; }
.home-page #why-anannt .ad-card:nth-child(6)::before { content: "06"; }

@media (hover: hover) {
  .home-page #why-anannt .ad-card:hover {
    z-index: 1;
    background: var(--ae-cream);
    box-shadow: none;
    transform: none;
  }
}

/* Human proof */
.home-page #team {
  background: var(--ae-cream);
}

.home-page .ad-split {
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(46px, 7vw, 100px);
}

.home-page .ad-trust-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--ae-radius-lg);
  box-shadow: var(--ae-shadow);
}

.home-page .ad-trust-image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  box-shadow: inset 0 -80px 100px rgba(13, 27, 54, 0.12);
  content: "";
  pointer-events: none;
}

.home-page .ad-trust-image img {
  aspect-ratio: 16 / 10;
  transition: transform 800ms var(--ae-ease);
}

@media (hover: hover) {
  .home-page .ad-trust-image:hover img {
    transform: scale(1.025);
  }
}

.home-page #team .ad-section-text + .ad-section-text {
  padding-top: 20px;
  border-top: 1px solid var(--ae-line);
}

/* Journey */
.home-page .ad-section--navy {
  background: var(--ae-navy);
}

.home-page #student-journey::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.02), 0 0 0 140px rgba(255, 255, 255, 0.012);
  content: "";
}

.home-page .ad-section--navy .ad-section-kicker {
  color: #f1a139;
}

.home-page .ad-section--navy .ad-section-title {
  color: #fff;
}

.home-page .ad-section--navy .ad-section-text {
  color: rgba(255, 255, 255, 0.66);
}

.home-page .ad-journey {
  position: relative;
  gap: 0;
  margin-top: 58px;
}

.home-page .ad-journey::before {
  position: absolute;
  top: 28px;
  right: 7%;
  left: 7%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.home-page .ad-journey-step {
  min-height: 145px;
  border: 0;
  border-radius: 0;
  padding: 0 12px;
  background: transparent;
  text-align: center;
}

.home-page .ad-journey-step span {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  margin-bottom: 21px;
  border: 6px solid var(--ae-navy);
  background: #fff;
  color: var(--ae-navy);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
  font-size: 0.8rem;
}

.home-page .ad-journey-step strong {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 650;
}

/* FAQ */
.home-page #faq {
  background: var(--ae-paper);
}

.home-page .ad-faq {
  max-width: 880px;
  gap: 10px;
  margin-top: 48px;
  margin-left: auto;
}

.home-page .ad-faq details {
  overflow: hidden;
  border: 1px solid var(--ae-line);
  border-radius: 15px;
  background: #fff;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.home-page .ad-faq details[open] {
  border-color: rgba(35, 79, 133, 0.24);
  box-shadow: var(--ae-shadow-sm);
}

.home-page .ad-faq summary {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  color: var(--ae-ink);
  font-size: 1rem;
  font-weight: 700;
}

.home-page .ad-faq summary::after {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  float: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ae-cream);
  color: var(--ae-orange-dark);
  line-height: 1;
  transition: transform 220ms var(--ae-ease), background 220ms ease;
}

.home-page .ad-faq details[open] summary::after {
  content: "+";
  background: var(--ae-orange);
  color: var(--ae-navy);
  transform: rotate(45deg);
}

.home-page .ad-faq p {
  max-width: 760px;
  padding: 0 22px 22px;
  color: var(--ae-copy);
  line-height: 1.72;
}

/* Closing CTA */
.home-page .ad-final-cta {
  overflow: hidden;
  background: var(--ae-cream);
}

.home-page .ad-final-cta .ad-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--ae-radius-lg);
  padding: clamp(54px, 7vw, 92px) 24px;
  background: var(--ae-navy);
  box-shadow: var(--ae-shadow);
}

.home-page .ad-final-cta .ad-container::before,
.home-page .ad-final-cta .ad-container::after {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.home-page .ad-final-cta .ad-container::before {
  top: -180px;
  left: -120px;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.025);
}

.home-page .ad-final-cta .ad-container::after {
  right: -120px;
  bottom: -200px;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.025);
}

.home-page .ad-final-cta .ad-section-kicker,
.home-page .ad-final-cta .ad-section-title,
.home-page .ad-final-cta .ad-section-text,
.home-page .ad-final-cta .ad-button-row {
  position: relative;
  z-index: 1;
}

.home-page .ad-final-cta .ad-section-kicker {
  color: #f1a139;
}

.home-page .ad-final-cta .ad-section-title {
  max-width: 800px;
  color: #fff;
}

.home-page .ad-final-cta .ad-section-text {
  color: rgba(255, 255, 255, 0.68);
}

.home-page .ad-final-cta .ad-button-row {
  margin-top: 30px;
}

.home-page .ad-final-cta .ad-btn--secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.home-page .ad-final-cta .ad-btn--whatsapp {
  color: #8ce0b7;
}

/* Bring the legacy footer into the same visual system */
.home-page .footer__four {
  background: #09152b !important;
}

.home-page .footer__four h5,
.home-page .footer__four .fs20 {
  color: #fff !important;
  letter-spacing: -0.02em;
}

.home-page .footer__four p,
.home-page .footer__four span,
.home-page .footer__four a {
  color: rgba(255, 255, 255, 0.69) !important;
}

.home-page .footer__four a:hover {
  color: #fff !important;
}

.home-page .footer__four .navigate::before {
  background: var(--ae-orange) !important;
}

.home-page .footer__four .bt-dash {
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.home-page .chat-box {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(13, 27, 54, 0.1);
  box-shadow: 0 12px 36px rgba(13, 27, 54, 0.2);
}

/* Motion system: enabled only after JS is ready, so content never disappears on failure. */
.home-page.motion-ready .ad-hero .ad-eyebrow,
.home-page.motion-ready .ad-hero h1,
.home-page.motion-ready .ad-hero-subtext,
.home-page.motion-ready .ad-hero .ad-button-row,
.home-page.motion-ready .ad-hero-notes,
.home-page.motion-ready .ad-lead-card {
  opacity: 0;
  transform: translateY(22px);
}

.home-page.motion-ready.hero-ready .ad-hero .ad-eyebrow,
.home-page.motion-ready.hero-ready .ad-hero h1,
.home-page.motion-ready.hero-ready .ad-hero-subtext,
.home-page.motion-ready.hero-ready .ad-hero .ad-button-row,
.home-page.motion-ready.hero-ready .ad-hero-notes,
.home-page.motion-ready.hero-ready .ad-lead-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms var(--ae-ease), transform 620ms var(--ae-ease);
}

.home-page.motion-ready.hero-ready .ad-hero h1 { transition-delay: 60ms; }
.home-page.motion-ready.hero-ready .ad-hero-subtext { transition-delay: 110ms; }
.home-page.motion-ready.hero-ready .ad-hero .ad-button-row { transition-delay: 160ms; }
.home-page.motion-ready.hero-ready .ad-hero-notes { transition-delay: 210ms; }
.home-page.motion-ready.hero-ready .ad-lead-card { transition-delay: 130ms; }

.home-page.motion-ready [data-ae-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms var(--ae-ease), transform 620ms var(--ae-ease);
  transition-delay: var(--ae-delay, 0ms);
}

.home-page.motion-ready [data-ae-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 1100px) {
  .home-page .custom-nav {
    gap: 13px !important;
  }

  .home-page .custom-nav > li > a,
  .home-page .custom-nav > li > button {
    font-size: 0.82rem;
  }

  .home-page .ad-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
    gap: 36px;
  }

  .home-page .ad-hero h1 {
    font-size: clamp(3.2rem, 6.6vw, 5.3rem);
  }

  .home-page .ad-grid--4,
  .home-page .ad-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .ad-journey::before {
    display: none;
  }

  .home-page .ad-journey-step {
    min-height: 120px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px;
    text-align: left;
  }

  .home-page .ad-journey-step span {
    margin-right: 12px;
    margin-bottom: 0;
  }

  .home-page .ad-journey-step strong {
    display: inline;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .home-page .custom-nav > li.ae-nav-cta {
    display: none !important;
  }
}

/* Mobile navigation and content */
@media (max-width: 991px) {
  .home-page .header-section {
    position: sticky;
    min-height: 101px;
  }

  .home-page .one__header {
    padding: 14px 0 !important;
  }

  .home-page .header-section .main-navbar .nav-brand {
    max-width: 140px;
  }

  .home-page .navbar-toggle-btn {
    width: 48px !important;
    min-width: 48px;
    height: 48px !important;
    border: 1px solid var(--ae-line);
    border-radius: 14px;
  }

  .home-page .navbar-toggle-btn span {
    left: 9px !important;
    width: 28px !important;
    background: var(--ae-navy) !important;
  }

  .home-page .navbar-toggle-btn span:nth-child(1) { top: 12px; }
  .home-page .navbar-toggle-btn span:nth-child(2),
  .home-page .navbar-toggle-btn span:nth-child(3) { top: 22px; }
  .home-page .navbar-toggle-btn span:nth-child(4) { top: 32px; }

  .home-page .navbar-toggle-btn.open span:nth-child(1),
  .home-page .navbar-toggle-btn.open span:nth-child(4) {
    top: 22px;
    left: 50% !important;
    width: 0 !important;
  }

  .home-page .navbar-toggle-item {
    border-top: 1px solid var(--ae-line);
    background: var(--ae-paper) !important;
  }

  .home-page .navbar-toggle-item > div {
    min-height: auto;
    padding: 18px 0 24px;
  }

  .home-page .navbar-toggle-item .navbar-brand.logo {
    display: none !important;
  }

  .home-page .custom-nav {
    width: 100%;
    gap: 4px !important;
  }

  .home-page .custom-nav > li,
  .home-page .custom-nav > li > a,
  .home-page .custom-nav > li > button {
    width: 100%;
  }

  .home-page .custom-nav > li > a,
  .home-page .custom-nav > li > button {
    display: block;
    min-height: 48px;
    border-bottom: 1px solid rgba(13, 27, 54, 0.07);
    padding: 12px 2px;
    font-size: 1rem;
    text-align: left;
  }

  .home-page .ad-hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(251, 246, 237, 0.99) 0%, rgba(251, 246, 237, 0.96) 64%, rgba(251, 246, 237, 0.74) 100%),
      url("../images/about-us/image-3.png") center bottom / cover no-repeat;
  }

  .home-page .ad-hero-grid,
  .home-page .ad-split,
  .home-page .ad-grid--2,
  .home-page .ad-grid--3 {
    grid-template-columns: 1fr;
  }

  .home-page .ad-lead-card {
    max-width: 610px;
  }

  .home-page .ad-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .ad-proof-item:nth-child(2) {
    border-right: 0;
  }

  .home-page .ad-proof-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .home-page #free-tools .ad-tool-card:first-child {
    grid-column: auto;
  }

  .home-page .ad-tool-card {
    min-height: 280px;
  }

  .home-page .ad-split {
    gap: 44px;
  }
}

@media (max-width: 640px) {
  .home-page .ad-container {
    width: min(100% - 28px, 1240px);
  }

  .home-page .ad-section {
    padding: 66px 0;
  }

  .home-page .ad-section-title {
    font-size: clamp(2.15rem, 10.5vw, 3.15rem);
    line-height: 1.02;
  }

  .home-page .ad-section-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .home-page .ad-hero {
    padding: 46px 0 64px;
  }

  .home-page .ad-hero::before {
    top: -300px;
    left: -320px;
  }

  .home-page .ad-eyebrow {
    width: fit-content;
    max-width: 100%;
    min-height: 34px;
    padding: 6px 10px;
    font-size: 0.76rem;
  }

  .home-page .ad-hero h1 {
    font-size: clamp(2.9rem, 15vw, 4.2rem);
    letter-spacing: -0.06em;
    line-height: 0.94;
  }

  .home-page .ad-hero-subtext {
    margin: 24px 0 28px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .home-page .ad-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .ad-btn {
    width: 100%;
    min-height: 52px;
  }

  .home-page .ad-btn--whatsapp {
    justify-content: center;
  }

  .home-page .ad-hero-notes,
  .home-page .ad-proof-grid,
  .home-page .ad-grid--4,
  .home-page .ad-journey {
    grid-template-columns: 1fr;
  }

  .home-page .ad-hero-note {
    min-height: auto;
  }

  .home-page .ad-lead-card {
    padding: 24px 20px;
  }

  .home-page .ad-lead-card::before {
    top: 18px;
    right: 18px;
  }

  .home-page .ad-proof-item,
  .home-page .ad-proof-item:nth-child(2) {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    padding: 20px;
  }

  .home-page .ad-proof-item:last-child {
    border-bottom: 0;
  }

  .home-page .ad-grid {
    margin-top: 34px !important;
  }

  .home-page .ad-card,
  .home-page .ad-lead-card {
    border-radius: 18px;
  }

  .home-page .ad-tool-card,
  .home-page #courses .ad-course-group {
    min-height: auto;
  }

  .home-page #free-tools .ad-tool-card:nth-child(n+4) {
    display: none;
  }

  .home-page #why-anannt .ad-grid {
    grid-template-columns: 1fr;
  }

  .home-page #why-anannt .ad-card {
    min-height: auto;
  }

  .home-page .ad-trust-image {
    border-radius: 22px;
  }

  .home-page .ad-trust-image img {
    aspect-ratio: 4 / 3;
  }

  .home-page .ad-journey-step {
    min-height: 92px;
    display: flex;
    align-items: center;
    padding: 14px 0;
  }

  .home-page .ad-faq {
    margin-top: 34px;
  }

  .home-page .ad-faq summary {
    padding: 16px;
    font-size: 0.95rem;
  }

  .home-page .ad-faq p {
    padding: 0 16px 18px;
  }

  .home-page .ad-final-cta .ad-container {
    width: min(100% - 20px, 1240px);
    border-radius: 24px;
    padding-inline: 20px;
  }

  .home-page .bottom-fixbar {
    bottom: 10px;
    border: 1px solid rgba(13, 27, 54, 0.1);
    background: rgba(255, 253, 249, 0.96);
    backdrop-filter: blur(12px);
  }

  .home-page .fixbar-list li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right-color: rgba(232, 137, 22, 0.5);
    color: var(--ae-navy);
    font-size: 0.78rem;
    font-weight: 650;
  }
}

/* Responsive drawer and safe-area mobile actions. */
@media (max-width: 1050px) {
  .home-page .ae-site-header__inner {
    min-height: 72px;
  }

  .home-page .ae-site-brand img {
    width: 136px;
  }

  .home-page .ae-menu-toggle {
    display: inline-flex;
    min-width: 76px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--ae-line);
    border-radius: 14px;
    padding: 9px 11px;
    background: #fff;
    color: var(--ae-navy);
    font-size: 0.86rem;
    font-weight: 750;
  }

  .home-page .ae-menu-toggle__icon {
    position: relative;
    display: block;
    width: 20px;
    height: 16px;
  }

  .home-page .ae-menu-toggle__icon span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms var(--ae-ease), opacity 140ms ease, top 180ms var(--ae-ease);
  }

  .home-page .ae-menu-toggle__icon span:nth-child(1) { top: 1px; }
  .home-page .ae-menu-toggle__icon span:nth-child(2) { top: 7px; }
  .home-page .ae-menu-toggle__icon span:nth-child(3) { top: 13px; }

  .home-page .ae-site-header.is-menu-open .ae-menu-toggle__icon span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }

  .home-page .ae-site-header.is-menu-open .ae-menu-toggle__icon span:nth-child(2) {
    opacity: 0;
  }

  .home-page .ae-site-header.is-menu-open .ae-menu-toggle__icon span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }

  .home-page .ae-site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - 72px);
    max-height: calc(100dvh - 72px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 16px max(18px, calc((100vw - 720px) / 2)) max(28px, env(safe-area-inset-bottom));
    background: #fffdf9;
    box-shadow: 0 18px 40px rgba(13, 27, 54, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 220ms var(--ae-ease), visibility 220ms step-end;
  }

  .home-page .ae-site-header.is-menu-open .ae-site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 180ms ease, transform 220ms var(--ae-ease), visibility 0ms step-start;
  }

  .home-page .ae-site-nav > a,
  .home-page .ae-nav-group > summary {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    border-radius: 13px;
    padding: 13px 14px;
    color: var(--ae-navy);
    font-size: 1rem;
    white-space: normal;
  }

  .home-page .ae-nav-panel {
    position: static;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 4px 0 10px;
    border: 0;
    border-radius: 14px;
    padding: 8px;
    background: var(--ae-cream);
    box-shadow: none;
    transform: none;
  }

  .home-page .ae-site-nav__contact {
    display: flex;
  }

  .home-page .ae-site-nav > .ae-header-cta {
    justify-content: center;
    margin: 8px 0 0;
    color: #fff;
  }

  .home-page.ae-menu-open {
    overflow: hidden;
  }
}

.home-page .ad-local-strip .ad-proof-item strong {
  color: #fff;
}

.home-page .ad-site-footer .footer__topfour {
  padding: 48px 0 28px !important;
}

.home-page .ad-site-footer .footer-app,
.home-page .ad-site-footer .navigate-box,
.home-page .ad-site-footer .footer-soc {
  margin-bottom: 24px !important;
}

.home-page .ad-site-footer .foote-right-wrapfour > a {
  margin-bottom: 24px !important;
}

.home-page .ad-site-footer .foote-right-wrapfour > a img {
  width: 148px;
}

.home-page .ad-site-footer .footer__bottomone__content {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

@media (max-width: 767px) {
  .home-page .ad-section {
    padding: 56px 0;
  }

  .home-page .ad-hero-notes,
  .home-page .ad-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-page .ad-hero-note {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 13px;
  }

  .home-page .ad-hero-note:last-child {
    grid-column: 1 / -1;
  }

  .home-page .ad-hero-note strong {
    margin-bottom: 0;
  }

  .home-page .ad-proof-item,
  .home-page .ad-proof-item:nth-child(2) {
    min-height: 112px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    padding: 16px;
  }

  .home-page .ad-proof-item:nth-child(even) {
    border-right: 0;
  }

  .home-page .ad-proof-item:nth-child(n+3) {
    border-bottom: 0;
  }

  .home-page #courses .ad-course-group {
    min-height: auto;
    padding: 54px 18px 18px;
  }

  .home-page #courses .ad-course-group::before {
    top: 18px;
    left: 18px;
  }

  .home-page #courses .ad-course-group p {
    line-height: 1.48;
  }

  .home-page #courses .ad-course-list {
    margin-top: 14px;
    padding-top: 0;
  }

  .home-page #courses .ad-course-list a {
    min-height: 38px;
    padding: 7px 11px;
  }

  .home-page #why-anannt .ad-card::before {
    margin-bottom: 16px;
  }

  .home-page .ae-mobile-cta-bar {
    position: fixed;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    z-index: 900;
    display: grid;
    width: auto;
    max-width: 430px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 8px;
    margin: 0 auto;
    border: 1px solid rgba(13, 27, 54, 0.12);
    border-radius: 17px;
    padding: 8px;
    background: rgba(255, 253, 249, 0.97);
    box-shadow: 0 14px 40px rgba(13, 27, 54, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 220ms var(--ae-ease);
    backdrop-filter: blur(14px);
  }

  .home-page .ae-mobile-cta-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .home-page.ae-menu-open .ae-mobile-cta-bar {
    display: none;
  }

  .home-page .ae-mobile-cta-bar a {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    overflow: hidden;
    border-radius: 12px;
    padding: 10px 12px;
    color: var(--ae-navy);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .home-page .ae-mobile-cta-bar .ae-mobile-cta-bar__primary {
    background: var(--ae-navy);
    color: #fff;
  }

  .home-page .ad-site-footer .footer__topfour {
    padding-top: 40px !important;
  }
}

@media (max-width: 420px) {
  .home-page .ae-menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .home-page .ae-menu-toggle {
    min-width: 48px;
    width: 48px;
    padding: 0;
  }

  .home-page .ae-nav-panel {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page,
  .home-page * {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .home-page.motion-ready [data-ae-reveal],
  .home-page.motion-ready .ad-hero .ad-eyebrow,
  .home-page.motion-ready .ad-hero h1,
  .home-page.motion-ready .ad-hero-subtext,
  .home-page.motion-ready .ad-hero .ad-button-row,
  .home-page.motion-ready .ad-hero-notes,
  .home-page.motion-ready .ad-lead-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
