:root {
  --ae-navy: #0b1a3f;
  --ae-navy-deep: #071026;
  --ae-navy-mid: #142a5c;
  --ae-orange: #fb6b07;
  --ae-orange-dark: #d85700;
  --ae-cream: #f8f6f0;
  --ae-white: #ffffff;
  --ae-grey: #eceae6;
  --ae-ink: #16203a;
  --ae-slate: #5b6472;
  --ae-line-dark: rgba(255, 255, 255, 0.13);
  --ae-line-light: #e4dfd3;
  --ae-shadow: 0 18px 50px rgba(11, 26, 63, 0.08);
}

html {
  scroll-behavior: smooth;
}

body.ae-landing-page {
  margin: 0;
  background: var(--ae-cream);
}

body.admin-bar .ae-header {
  top: 32px;
}

.ae-site,
.ae-site *,
.ae-site *::before,
.ae-site *::after {
  box-sizing: border-box;
}

.ae-site {
  min-width: 0;
  overflow-x: clip;
  background: var(--ae-cream);
  color: var(--ae-ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ae-site h1,
.ae-site h2,
.ae-site h3,
.ae-site p,
.ae-site ul,
.ae-site fieldset {
  margin: 0;
}

.ae-site h1,
.ae-site h2,
.ae-site h3 {
  font-family: "Baloo 2", Arial, sans-serif;
  color: var(--ae-navy);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.15;
}

.ae-site img,
.ae-site svg {
  display: block;
  max-width: 100%;
}

.ae-site a {
  color: inherit;
  text-decoration: none;
}

.ae-site button,
.ae-site input,
.ae-site textarea {
  font: inherit;
}

.ae-site button {
  -webkit-tap-highlight-color: transparent;
}

.ae-site section[id] {
  scroll-margin-top: 92px;
}

.ae-skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ae-white);
  color: var(--ae-navy);
  box-shadow: var(--ae-shadow);
  transition: top 0.2s ease;
}

.ae-skip-link:focus {
  top: 16px;
}

.ae-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 1184px);
  margin: 0 auto;
  padding-inline: 32px;
}

.ae-section {
  position: relative;
  padding-block: 88px;
}

.ae-grain {
  position: relative;
  overflow: hidden;
}

.ae-grain::before {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ae-grain-dark {
  background:
    radial-gradient(ellipse 640px 420px at 12% 15%, rgba(251, 107, 7, 0.17), transparent 62%),
    radial-gradient(ellipse 760px 620px at 88% 85%, rgba(30, 58, 120, 0.9), transparent 60%),
    var(--ae-navy);
}

.ae-grain-light {
  background:
    radial-gradient(ellipse 700px 460px at 85% 8%, rgba(11, 26, 63, 0.055), transparent 60%),
    radial-gradient(ellipse 640px 420px at 10% 95%, rgba(251, 107, 7, 0.055), transparent 60%),
    var(--ae-grey);
}

.ae-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ae-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ae-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--ae-orange);
}

.ae-eyebrow-centred {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.ae-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.ae-btn:hover {
  transform: translateY(-1px);
}

.ae-btn:active {
  transform: translateY(0) scale(0.985);
}

.ae-btn-primary {
  background: var(--ae-orange);
  color: var(--ae-white) !important;
}

.ae-btn-primary:hover {
  background: var(--ae-orange-dark);
}

.ae-btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.36);
  background: transparent;
  color: var(--ae-white) !important;
}

.ae-btn-ghost-dark:hover {
  border-color: rgba(255, 255, 255, 0.82);
}

.ae-btn-ghost-light {
  border-color: var(--ae-line-light);
  background: var(--ae-white);
  color: var(--ae-navy) !important;
}

.ae-btn-ghost-light:hover {
  border-color: var(--ae-navy);
}

.ae-site :focus-visible {
  outline: 3px solid rgba(251, 107, 7, 0.46);
  outline-offset: 3px;
}

/* Header */
.ae-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--ae-line-dark);
  background: var(--ae-navy);
}

.ae-nav-row {
  position: relative;
  display: flex;
  width: min(100%, 1184px);
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 14px 32px;
}

.ae-nav-logo {
  display: block;
  width: 260px;
  flex: 0 1 260px;
}

.ae-nav-logo img {
  width: 100%;
  height: auto;
}

.ae-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.ae-nav-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
}

.ae-nav-links a:hover {
  color: var(--ae-white);
}

.ae-nav-cta {
  flex: 0 0 auto;
}

.ae-btn-nav {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 14px;
}

.ae-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--ae-white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.ae-menu-icon {
  display: grid;
  gap: 4px;
}

.ae-menu-icon span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ae-menu-toggle[aria-expanded="true"] .ae-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ae-menu-toggle[aria-expanded="true"] .ae-menu-icon span:nth-child(2) {
  opacity: 0;
}

.ae-menu-toggle[aria-expanded="true"] .ae-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.ae-hero {
  padding-block: 92px 100px;
  color: var(--ae-white);
  text-align: center;
}

.ae-hero-inner {
  max-width: 830px;
}

.ae-hero h1 {
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--ae-white);
  font-size: clamp(42px, 5.1vw, 65px);
}

.ae-hero h1 span {
  color: var(--ae-orange);
}

.ae-hero-sub {
  max-width: 660px;
  margin: 0 auto 34px !important;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
}

.ae-hero-ctas,
.ae-final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.ae-hero-trust {
  margin-top: 27px !important;
  color: rgba(255, 255, 255, 0.53);
  font-size: 13.5px;
}

/* Section headings */
.ae-section-head {
  max-width: 730px;
  margin: 0 auto 48px;
  text-align: center;
}

.ae-section-head-tight {
  margin-top: -7px;
}

.ae-section-head h2,
.ae-shift-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 3.4vw, 42px);
}

.ae-section-head p,
.ae-shift-copy p {
  color: var(--ae-slate);
  font-size: 16.5px;
}

.ae-on-dark h2 {
  color: var(--ae-white);
}

.ae-on-dark p {
  color: rgba(255, 255, 255, 0.68);
}

/* Benefits */
.ae-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ae-benefit-card {
  position: relative;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--ae-line-light);
  border-radius: 18px;
  background: var(--ae-white);
  box-shadow: 0 1px 0 rgba(11, 26, 63, 0.02);
}

.ae-benefit-card-featured {
  border-color: rgba(251, 107, 7, 0.35);
  background: linear-gradient(145deg, #fff 62%, rgba(251, 107, 7, 0.055));
}

.ae-benefit-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(251, 107, 7, 0.11);
  color: var(--ae-orange);
}

.ae-benefit-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.ae-benefit-card p {
  color: var(--ae-slate);
  font-size: 14.8px;
}

.ae-inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--ae-line-light);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
}

.ae-inline-cta strong,
.ae-inline-cta span {
  display: block;
}

.ae-inline-cta strong {
  margin-bottom: 4px;
  color: var(--ae-navy);
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 18px;
}

.ae-inline-cta span {
  color: var(--ae-slate);
  font-size: 14.5px;
}

/* Industries */
.ae-industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 26px;
}

.ae-industry-card {
  display: flex;
  min-width: 0;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 11px;
  border: 1.5px solid var(--ae-line-light);
  border-radius: 14px;
  background: var(--ae-white);
  color: var(--ae-navy);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.ae-industry-card:hover {
  transform: translateY(-1px);
  border-color: rgba(251, 107, 7, 0.52);
}

.ae-industry-card.is-active {
  border-color: var(--ae-orange);
  background: rgba(251, 107, 7, 0.07);
}

.ae-industry-card span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.ae-industry-icon {
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
}

.ae-industry-result {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 32px 34px;
  border: 1px solid var(--ae-line-dark);
  border-radius: 18px;
  background: var(--ae-navy);
  color: var(--ae-white);
}

.ae-industry-result-icon {
  display: flex;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(251, 107, 7, 0.17);
}

.ae-industry-result-label {
  margin-bottom: 7px;
  color: var(--ae-orange);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.ae-industry-result-text {
  margin-bottom: 15px;
  color: var(--ae-white);
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.42;
}

.ae-industry-result-stat {
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
}

.ae-stat-tag,
.ae-result-tag {
  display: inline-block;
  width: fit-content;
  margin-right: 9px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(251, 107, 7, 0.18);
  color: var(--ae-orange);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-transform: uppercase;
  vertical-align: 1px;
}

.ae-stat-tag-alt {
  display: block;
  margin: 0 0 9px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.ae-disclaimer {
  max-width: 820px;
  margin: 18px auto 0 !important;
  color: var(--ae-slate);
  font-size: 12.5px;
  line-height: 1.55;
  text-align: center;
}

/* Flow */
.ae-shift-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 60px;
}

.ae-shift-copy p + p {
  margin-top: 9px !important;
}

.ae-flow-visual {
  position: relative;
  z-index: 2;
  padding: 32px 30px;
  border: 1px solid var(--ae-line-dark);
  border-radius: 20px;
  background: var(--ae-navy-mid);
}

.ae-flow-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
  padding: 12px 16px;
  border: 1px dashed rgba(255, 255, 255, 0.23);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.67);
  font-size: 13.5px;
}

.ae-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.ae-flow-arrow {
  padding: 2px 0 7px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 21px;
  text-align: center;
}

.ae-flow-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(251, 107, 7, 0.42);
  border-radius: 12px;
  background: rgba(251, 107, 7, 0.14);
  color: var(--ae-white);
  font-size: 14.5px;
  font-weight: 700;
}

.ae-flow-result .ae-dot {
  width: 10px;
  height: 10px;
  flex-basis: 10px;
  background: var(--ae-orange);
}

.ae-flow-caption {
  margin-top: 16px !important;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12.5px;
  text-align: center;
}

/* Quiz */
.ae-quiz-section {
  color: var(--ae-white);
}

.ae-quiz-shell {
  position: relative;
  z-index: 2;
  max-width: 690px;
  margin: 0 auto;
  padding: 40px 44px;
  border: 1px solid var(--ae-line-dark);
  border-radius: 20px;
  background: var(--ae-navy-mid);
  box-shadow: 0 24px 70px rgba(3, 10, 30, 0.22);
}

.ae-quiz-progress-track {
  height: 5px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.ae-quiz-progress-fill {
  width: 25%;
  height: 100%;
  border-radius: 999px;
  background: var(--ae-orange);
  transition: width 0.25s ease;
}

.ae-form-message {
  display: none;
  margin-bottom: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 126, 91, 0.55);
  border-radius: 10px;
  background: rgba(160, 31, 0, 0.22);
  color: #fff3ee;
  font-size: 13.5px;
}

.ae-form-message.is-visible {
  display: block;
}

.ae-quiz-step-label {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ae-quiz-question {
  margin-bottom: 24px !important;
  color: var(--ae-white) !important;
  font-size: clamp(23px, 3vw, 29px);
  font-weight: 600 !important;
}

.ae-quiz-options {
  display: grid;
  gap: 11px;
}

.ae-quiz-option,
.ae-time-slot {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.055);
  color: var(--ae-white);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.ae-quiz-option {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.ae-quiz-option:hover,
.ae-time-slot:hover {
  border-color: rgba(251, 107, 7, 0.68);
  background: rgba(251, 107, 7, 0.09);
}

.ae-quiz-option.is-selected,
.ae-time-slot.is-selected {
  border-color: var(--ae-orange);
  background: rgba(251, 107, 7, 0.15);
}

.ae-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ae-quiz-field {
  margin-bottom: 15px;
}

.ae-quiz-field label,
.ae-time-fieldset legend {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 13px;
  font-weight: 600;
}

.ae-quiz-field input,
.ae-quiz-field textarea {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.17);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ae-white);
  font-size: 15px;
}

.ae-quiz-field input {
  min-height: 48px;
  padding: 12px 14px;
}

.ae-quiz-field textarea {
  min-height: 94px;
  padding: 12px 14px;
  resize: vertical;
}

.ae-quiz-field input::placeholder,
.ae-quiz-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.ae-quiz-field input:focus,
.ae-quiz-field textarea:focus {
  border-color: var(--ae-orange);
  outline: none;
}

.ae-quiz-field input.is-invalid,
.ae-quiz-field textarea.is-invalid {
  border-color: #ff9577;
}

.ae-time-fieldset {
  min-width: 0;
  margin-bottom: 15px !important;
  padding: 0;
  border: 0;
}

.ae-time-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.ae-time-slot {
  min-height: 44px;
  padding: 9px;
  border-radius: 9px;
  font-size: 13.5px;
  text-align: center;
}

.ae-form-privacy {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11.8px;
  line-height: 1.5;
}

.ae-quiz-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}

.ae-quiz-back {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  cursor: pointer;
}

.ae-quiz-back:hover {
  color: var(--ae-white);
}

.ae-quiz-back:disabled {
  visibility: hidden;
}

.ae-quiz-next[disabled] {
  opacity: 0.68;
  cursor: wait;
}

.ae-quiz-confirm {
  padding: 18px 0;
  text-align: center;
}

.ae-check-circle {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 19px;
  border: 1.5px solid var(--ae-orange);
  border-radius: 50%;
  background: rgba(251, 107, 7, 0.16);
  color: var(--ae-orange);
  font-size: 27px;
}

.ae-quiz-confirm h3 {
  margin-bottom: 9px;
  color: var(--ae-white);
  font-size: 25px;
}

.ae-quiz-confirm p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.ae-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Steps */
.ae-steps-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.ae-step-item {
  position: relative;
  min-width: 0;
  padding: 0 18px;
}

.ae-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 21px;
  left: calc(100% - 3px);
  width: calc(100% - 30px);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--ae-line-light) 0 6px, transparent 6px 12px);
}

.ae-step-num {
  position: relative;
  z-index: 2;
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  margin-bottom: 17px;
  border-radius: 50%;
  background: var(--ae-navy);
  color: var(--ae-white);
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.ae-step-item h3 {
  margin-bottom: 7px;
  font-size: 19px;
}

.ae-step-item p {
  color: var(--ae-slate);
  font-size: 14px;
}

/* Results */
.ae-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ae-result-card {
  min-width: 0;
  padding: 30px 26px;
  border: 1px solid var(--ae-line-light);
  border-radius: 17px;
  background: var(--ae-white);
}

.ae-result-tag {
  margin: 0 0 15px;
  color: var(--ae-orange);
}

.ae-result-stat {
  margin-bottom: 4px;
  color: var(--ae-orange);
  font-family: "Baloo 2", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
}

.ae-result-label {
  margin-bottom: 14px;
  color: var(--ae-navy);
  font-size: 14.5px;
  font-weight: 700;
}

.ae-result-card p {
  padding-top: 14px;
  border-top: 1px solid var(--ae-line-light);
  color: var(--ae-slate);
  font-size: 13.8px;
}

/* Final CTA */
.ae-final-cta {
  color: var(--ae-white);
  text-align: center;
}

.ae-final-cta h2 {
  max-width: 760px;
  margin: 0 auto 15px;
  color: var(--ae-white);
  font-size: clamp(32px, 4vw, 45px);
}

.ae-final-cta p {
  max-width: 650px;
  margin: 0 auto 31px !important;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16.5px;
}

/* Footer */
.ae-footer {
  padding: 54px 0 30px;
  border-top: 1px solid var(--ae-line-light);
  background: var(--ae-cream);
}

.ae-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 38px;
}

.ae-footer-brand {
  max-width: 370px;
}

.ae-footer-brand img {
  width: 280px;
  height: auto;
  margin-bottom: 13px;
}

.ae-footer-brand p {
  max-width: 340px;
  color: var(--ae-slate);
  font-size: 13.5px;
}

.ae-footer-cols {
  display: flex;
  gap: 64px;
}

.ae-footer-col h3 {
  margin-bottom: 13px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ae-footer-col a {
  display: block;
  margin-bottom: 8px;
  color: var(--ae-slate);
  font-size: 13.5px;
}

.ae-footer-col a:hover {
  color: var(--ae-orange);
}

.ae-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid var(--ae-line-light);
  color: var(--ae-slate);
  font-size: 12.5px;
}

/* Tablet */
@media (max-width: 960px) {
  .ae-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--ae-line-dark);
    border-radius: 14px;
    background: var(--ae-navy-deep);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }

  .ae-nav-links.is-open {
    display: flex;
  }

  .ae-nav-links a {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .ae-nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .ae-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .ae-nav-cta {
    order: 3;
  }

  .ae-industry-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ae-shift-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ae-steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 18px;
  }

  .ae-step-item::after {
    display: none;
  }

  .ae-results-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  body.admin-bar .ae-header {
    top: 0;
  }

  .ae-site section[id] {
    scroll-margin-top: 76px;
  }

  .ae-wrap {
    padding-inline: 19px;
  }

  .ae-section {
    padding-block: 58px;
  }

  .ae-nav-row {
    min-height: 66px;
    gap: 10px;
    padding: 12px 17px;
  }

  .ae-nav-logo {
    width: min(49vw, 190px);
    flex-basis: min(49vw, 190px);
  }

  .ae-menu-toggle-label {
    display: none;
  }

  .ae-nav-cta .ae-btn {
    min-height: 39px;
    padding: 9px 14px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .ae-nav-links {
    right: 16px;
    left: 16px;
  }

  .ae-hero {
    padding-block: 64px 70px;
  }

  .ae-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(36px, 10.7vw, 48px);
    line-height: 1.08;
  }

  .ae-hero-sub {
    margin-bottom: 28px !important;
    font-size: 16px;
    line-height: 1.58;
  }

  .ae-hero-ctas,
  .ae-final-ctas {
    flex-direction: column;
  }

  .ae-hero-ctas .ae-btn,
  .ae-final-ctas .ae-btn {
    width: 100%;
  }

  .ae-hero-trust {
    margin-top: 21px !important;
    font-size: 12.5px;
  }

  .ae-eyebrow {
    margin-bottom: 14px;
    font-size: 11.5px;
  }

  .ae-section-head {
    margin-bottom: 33px;
  }

  .ae-section-head h2,
  .ae-shift-copy h2 {
    font-size: 31px;
  }

  .ae-section-head p,
  .ae-shift-copy p {
    font-size: 15px;
  }

  .ae-benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ae-benefit-card {
    padding: 24px 21px;
  }

  .ae-benefit-card h3 {
    font-size: 19px;
  }

  .ae-inline-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 20px;
  }

  .ae-inline-cta .ae-btn {
    width: 100%;
  }

  .ae-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .ae-industry-card {
    min-height: 104px;
    padding: 14px 9px;
  }

  .ae-industry-card span {
    font-size: 12.2px;
  }

  .ae-industry-result {
    flex-direction: column;
    gap: 14px;
    padding: 23px 20px;
    text-align: left;
  }

  .ae-industry-result-text {
    font-size: 17px;
  }

  .ae-industry-result-stat .ae-stat-tag {
    display: block;
    margin: 0 0 8px;
  }

  .ae-flow-visual {
    padding: 23px 19px;
  }

  .ae-flow-chip {
    padding: 12px 13px;
  }

  .ae-quiz-shell {
    padding: 27px 19px;
    border-radius: 17px;
  }

  .ae-quiz-progress-track {
    margin-bottom: 24px;
  }

  .ae-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ae-time-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ae-quiz-nav {
    margin-top: 23px;
  }

  .ae-quiz-next {
    min-width: 132px;
  }

  .ae-steps-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ae-step-item {
    padding: 0;
  }

  .ae-footer {
    padding-top: 45px;
  }

  .ae-footer-top {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .ae-footer-brand img {
    width: min(100%, 300px);
  }

  .ae-footer-cols {
    width: 100%;
    justify-content: space-between;
    gap: 28px;
  }

  .ae-footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .ae-nav-logo {
    width: 46vw;
    flex-basis: 46vw;
  }

  .ae-nav-cta .ae-btn {
    padding-inline: 12px;
  }

  .ae-industry-card {
    min-height: 100px;
  }
}

@media (max-width: 350px) {
  .ae-nav-cta {
    display: none;
  }

  .ae-nav-logo {
    width: 205px;
    flex-basis: 205px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ae-site *,
  .ae-site *::before,
  .ae-site *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ==========================================================
   THEME / ELEMENTOR ISOLATION
   Prevent global Elementor button colours from overriding the
   AutomateEngine.ai navy, orange, white and grey design system.
   ========================================================== */

body.ae-landing-page .ae-site button,
body.ae-landing-page .ae-site a.ae-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* Main orange buttons */
body.ae-landing-page .ae-site a.ae-btn-primary,
body.ae-landing-page .ae-site button.ae-btn-primary {
  border-color: var(--ae-orange) !important;
  background: var(--ae-orange) !important;
  color: var(--ae-white) !important;
}

body.ae-landing-page .ae-site a.ae-btn-primary:hover,
body.ae-landing-page .ae-site button.ae-btn-primary:hover {
  border-color: var(--ae-orange-dark) !important;
  background: var(--ae-orange-dark) !important;
  color: var(--ae-white) !important;
}

/* Ghost buttons */
body.ae-landing-page .ae-site a.ae-btn-ghost-dark,
body.ae-landing-page .ae-site button.ae-btn-ghost-dark {
  border-color: rgba(255, 255, 255, 0.36) !important;
  background: transparent !important;
  color: var(--ae-white) !important;
}

body.ae-landing-page .ae-site a.ae-btn-ghost-light,
body.ae-landing-page .ae-site button.ae-btn-ghost-light {
  border-color: var(--ae-line-light) !important;
  background: var(--ae-white) !important;
  color: var(--ae-navy) !important;
}

/* Desktop menu button must remain hidden */
body.ae-landing-page .ae-site button.ae-menu-toggle {
  display: none !important;
  margin: 0 !important;
  padding: 8px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: transparent !important;
  color: var(--ae-white) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
}

body.ae-landing-page .ae-site button.ae-menu-toggle:hover,
body.ae-landing-page .ae-site button.ae-menu-toggle:focus {
  border: 0 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--ae-white) !important;
}

body.ae-landing-page .ae-site .ae-menu-icon span {
  background: var(--ae-white) !important;
}

/* Industry selector cards */
body.ae-landing-page .ae-site button.ae-industry-card {
  border: 1.5px solid var(--ae-line-light) !important;
  background: var(--ae-white) !important;
  color: var(--ae-navy) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: inherit !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
}

body.ae-landing-page .ae-site button.ae-industry-card span,
body.ae-landing-page .ae-site button.ae-industry-card svg {
  color: var(--ae-navy) !important;
}

body.ae-landing-page .ae-site button.ae-industry-card:hover {
  border-color: rgba(251, 107, 7, 0.58) !important;
  background: var(--ae-white) !important;
  color: var(--ae-navy) !important;
}

body.ae-landing-page .ae-site button.ae-industry-card.is-active {
  border-color: var(--ae-orange) !important;
  background: #f3e7dc !important;
  color: var(--ae-navy) !important;
}

/* Questionnaire and appointment buttons */
body.ae-landing-page .ae-site button.ae-quiz-option,
body.ae-landing-page .ae-site button.ae-time-slot {
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  color: var(--ae-white) !important;
  font-family: "Inter", Arial, sans-serif !important;
  box-shadow: none !important;
}

body.ae-landing-page .ae-site button.ae-quiz-option:hover,
body.ae-landing-page .ae-site button.ae-time-slot:hover {
  border-color: rgba(251, 107, 7, 0.68) !important;
  background: rgba(251, 107, 7, 0.09) !important;
  color: var(--ae-white) !important;
}

body.ae-landing-page .ae-site button.ae-quiz-option.is-selected,
body.ae-landing-page .ae-site button.ae-time-slot.is-selected {
  border-color: var(--ae-orange) !important;
  background: rgba(251, 107, 7, 0.15) !important;
  color: var(--ae-white) !important;
}

/* Back button */
body.ae-landing-page .ae-site button.ae-quiz-back {
  border: 0 !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.55) !important;
  box-shadow: none !important;
}

body.ae-landing-page .ae-site button.ae-quiz-back:hover {
  color: var(--ae-white) !important;
}

/* Mobile/tablet menu only */
@media (max-width: 960px) {
  body.ae-landing-page .ae-site button.ae-menu-toggle {
    display: inline-flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin-left: auto !important;
  }
}
