:root {
  --az-blue: #2e80c8;
  --az-blue-dark: #145f9f;
  --az-navy: #163a5b;
  --az-navy-deep: #0f2942;
  --az-pink: #ef5f93;
  --az-pink-dark: #b93366;
  --az-line: #06823f;
  --az-text: #25364a;
  --az-muted: #63758a;
  --az-soft-blue: #edf6fd;
  --az-soft-pink: #fff1f6;
  --az-border: #dbeaf6;
  --az-white: #ffffff;
  --az-shadow: 0 22px 60px rgba(22, 58, 91, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.az-home-page {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: #fff;
  color: var(--az-text);
  font-family: "Sarabun", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.az-home-page img {
  max-width: 100%;
}

body.az-home-page a,
body.az-home-page button,
body.az-home-page summary {
  -webkit-tap-highlight-color: transparent;
}

body.az-home-page a:focus-visible,
body.az-home-page button:focus-visible,
body.az-home-page summary:focus-visible {
  outline: 3px solid rgba(46, 128, 200, 0.34);
  outline-offset: 4px;
}

.az-skip-link {
  position: absolute;
  top: 8px;
  left: 12px;
  z-index: 10050;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--az-navy-deep);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 0.18s ease;
}

.az-skip-link:focus {
  transform: translateY(0);
}

.az-home-main {
  overflow: visible;
}

.az-home-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.az-home-label {
  margin: 0 0 10px;
  color: var(--az-pink-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.az-home-title {
  margin: 0;
  color: var(--az-navy);
  font-family: "Prompt", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.az-home-subtitle {
  max-width: 660px;
  margin: 14px auto 0;
  color: var(--az-muted);
  font-size: 16px;
  line-height: 1.8;
}

.az-home-section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.az-home-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(58px, 7vw, 92px) 0 112px;
  background: var(--az-soft-blue);
}

.az-home-hero::before,
.az-home-hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.az-home-hero::before {
  top: -220px;
  right: -120px;
  width: 520px;
  height: 520px;
  background: #d9edfb;
}

.az-home-hero::after {
  bottom: 18px;
  left: -95px;
  width: 230px;
  height: 230px;
  background: #ffe1ec;
}

.az-home-hero__shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 88px);
}

.az-home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--az-blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.az-home-kicker__icon {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #bbdcf5;
  border-radius: 50%;
  background: #fff;
}

.az-home-kicker svg {
  width: 17px;
  height: 17px;
}

.az-home-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--az-navy);
  font-family: "Prompt", sans-serif;
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.04em;
}

.az-home-hero h1 em {
  color: var(--az-pink);
  font-style: normal;
}

.az-home-hero__desc {
  max-width: 610px;
  margin: 22px 0 0;
  color: #536a80;
  font-size: 17px;
  line-height: 1.82;
}

.az-home-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.az-home-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

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

.az-home-btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.az-home-btn--line {
  background: var(--az-line);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 169, 75, 0.23);
}

.az-home-btn--line:hover {
  background: #055f31;
}

.az-home-btn--outline {
  border-color: #b9d7ed;
  background: rgba(255, 255, 255, 0.8);
  color: var(--az-navy);
}

.az-home-btn--outline:hover {
  border-color: var(--az-blue);
  background: #fff;
}

.az-home-phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--az-muted);
  font-size: 14px;
  text-decoration: none;
}

.az-home-phone strong {
  color: var(--az-blue-dark);
  font-size: 15px;
}

.az-home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.az-home-hero__proof li {
  position: relative;
  padding-left: 23px;
  color: #466077;
  font-size: 13px;
  font-weight: 700;
}

.az-home-hero__proof li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: #d9f7e5;
  color: #087a38;
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.az-home-hero__visual {
  position: relative;
  min-width: 0;
}

.az-home-portrait {
  position: relative;
  width: min(100%, 472px);
  min-height: 560px;
  margin-left: auto;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: var(--az-navy);
  box-shadow: var(--az-shadow);
}

.az-home-portrait::before {
  position: absolute;
  top: 54px;
  left: 50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--az-pink);
  content: "";
  opacity: 0.84;
  transform: translateX(-50%);
}

.az-home-portrait::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  content: "";
  pointer-events: none;
}

.az-home-portrait > img {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -74px;
  left: 0;
  width: auto;
  height: 620px;
  margin: auto;
  object-fit: contain;
}

.az-home-advisor {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 41, 66, 0.2);
}

.az-home-advisor__top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.az-home-advisor__check {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--az-blue);
  color: #fff;
  font-weight: 900;
}

.az-home-advisor strong {
  color: var(--az-navy);
  font-family: "Prompt", sans-serif;
  font-size: 15px;
}

.az-home-advisor p {
  margin: 8px 0 0 38px;
  color: #63758a;
  font-size: 12px;
  line-height: 1.55;
}

.az-home-float-note {
  position: absolute;
  z-index: 3;
  top: 42px;
  left: -42px;
  display: flex;
  max-width: 192px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #dcebf6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(22, 58, 91, 0.13);
  color: var(--az-navy);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.az-home-float-note svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--az-pink);
}

.az-home-trust-wrap {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 48px));
  margin: -58px auto 0;
}

.az-home-trust.az-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--az-navy-deep);
  box-shadow: 0 18px 46px rgba(15, 41, 66, 0.2);
}

.az-home-trust__item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-areas: "icon value" "icon label";
  align-items: center;
  gap: 1px 13px;
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.az-home-trust__item:last-child {
  border-right: 0;
}

.az-home-trust__icon {
  display: grid;
  width: 42px;
  height: 42px;
  grid-area: icon;
  place-items: center;
  border-radius: 13px;
  background: rgba(239, 95, 147, 0.16);
  color: #ff8eb7;
}

.az-home-trust__icon svg {
  width: 21px;
  height: 21px;
}

.az-home-trust dt {
  grid-area: value;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.az-home-trust dd {
  grid-area: label;
  margin: 0;
  color: #b9c9d7;
  font-size: 12px;
  line-height: 1.4;
}

.az-home-solutions {
  padding: clamp(76px, 9vw, 116px) 0;
  background: #fff;
}

.az-home-solutions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.az-solution-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--az-border);
  border-radius: 22px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(22, 58, 91, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.az-solution-card::after {
  position: absolute;
  right: -32px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--card-soft, var(--az-soft-blue));
  content: "";
}

.az-solution-card:hover {
  z-index: 1;
  border-color: var(--card-color, var(--az-blue));
  box-shadow: 0 20px 44px rgba(22, 58, 91, 0.12);
  transform: translateY(-6px);
}

.az-solution-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--card-soft, var(--az-soft-blue));
  color: var(--card-color, var(--az-blue));
}

.az-solution-card__icon svg {
  width: 27px;
  height: 27px;
}

.az-solution-card__eyebrow {
  margin: 24px 0 6px;
  color: var(--card-color, var(--az-blue));
  font-size: 12px;
  font-weight: 800;
}

.az-solution-card h3 {
  margin: 0;
  color: var(--az-navy);
  font-family: "Prompt", sans-serif;
  font-size: 21px;
  line-height: 1.4;
}

.az-solution-card p {
  margin: 9px 0 20px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.7;
}

.az-solution-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--card-color, var(--az-blue));
  font-size: 14px;
  font-weight: 800;
}

.az-solution-card__link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.18s ease;
}

.az-solution-card:hover .az-solution-card__link svg {
  transform: translateX(4px);
}

.az-home-guidance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid #cfe5f5;
  border-radius: 18px;
  background: var(--az-soft-blue);
}

.az-home-guidance__copy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.az-home-guidance__icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: #fff;
  color: var(--az-blue);
}

.az-home-guidance__icon svg {
  width: 22px;
  height: 22px;
}

.az-home-guidance strong {
  display: block;
  color: var(--az-navy);
  font-size: 15px;
}

.az-home-guidance p {
  margin: 3px 0 0;
  color: var(--az-muted);
  font-size: 13px;
}

.az-home-guidance a {
  flex: 0 0 auto;
  color: var(--az-blue-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.az-home-why {
  padding: clamp(72px, 8vw, 108px) 0;
  background: #f7fafc;
}

.az-home-why__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(44px, 7vw, 88px);
}

.az-home-why__intro {
  position: sticky;
  top: 112px;
}

.az-home-why__intro .az-home-subtitle {
  margin-inline: 0;
}

.az-home-quote {
  margin: 28px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--az-pink);
  background: #fff;
  color: var(--az-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.az-home-video {
  margin-top: 26px;
}

.az-home-video__label {
  margin: 0 0 10px;
  color: var(--az-muted);
  font-size: 12px;
  font-weight: 700;
}

.az-home-video__frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 6px solid #fff;
  border-radius: 18px;
  background: var(--az-navy-deep);
  box-shadow: 0 14px 34px rgba(22, 58, 91, 0.12);
}

.az-home-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.az-home-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.az-home-check {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--az-border);
  border-radius: 18px;
  background: #fff;
}

.az-home-check__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--az-soft-pink);
  color: var(--az-pink);
}

.az-home-check__icon svg {
  width: 19px;
  height: 19px;
}

.az-home-check strong {
  display: block;
  margin-top: 16px;
  color: var(--az-navy);
  font-family: "Prompt", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.az-home-check p {
  margin: 7px 0 0;
  color: var(--az-muted);
  font-size: 13px;
  line-height: 1.68;
}

.az-home-claims {
  padding: clamp(72px, 8vw, 108px) 0;
  background: var(--az-navy-deep);
}

.az-home-claims__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(42px, 6vw, 76px);
}

.az-home-claims .az-home-title {
  color: #fff;
}

.az-home-claims .az-home-subtitle {
  margin-inline: 0;
  color: #b9cad8;
}

.az-home-claims__note {
  margin: 22px 0 0;
  color: #8fa7ba;
  font-size: 12px;
  line-height: 1.7;
}

.az-home-claims__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.az-home-claim-card {
  margin: 0;
  padding: 10px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(3, 20, 34, 0.27);
  transform: rotate(-1.25deg);
}

.az-home-claim-card:nth-child(2) {
  transform: rotate(1.25deg) translateY(18px);
}

.az-home-claim-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 13px;
}

.az-home-tools {
  padding: clamp(72px, 8vw, 104px) 0;
  background: #fff;
}

.az-home-tools__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.az-home-tool-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--az-border);
  border-radius: 24px;
  background: var(--az-soft-blue);
}

.az-home-tool-card--pink {
  border-color: #f3d3df;
  background: var(--az-soft-pink);
}

.az-home-tool-card::after {
  position: absolute;
  right: -48px;
  bottom: -52px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(46, 128, 200, 0.1);
  border-radius: 50%;
  content: "";
}

.az-home-tool-card--pink::after {
  border-color: rgba(239, 95, 147, 0.1);
}

.az-home-tool-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--az-blue);
}

.az-home-tool-card--pink .az-home-tool-card__icon {
  color: var(--az-pink);
}

.az-home-tool-card__icon svg {
  width: 24px;
  height: 24px;
}

.az-home-tool-card .az-home-label {
  margin-top: 20px;
  margin-bottom: 6px;
  color: var(--az-blue-dark);
}

.az-home-tool-card--pink .az-home-label {
  color: #b63b68;
}

.az-home-tool-card h3 {
  max-width: 480px;
  margin: 0;
  color: var(--az-navy);
  font-family: "Prompt", sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.42;
}

.az-home-tool-card p {
  max-width: 500px;
  margin: 10px 0 22px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.72;
}

.az-home-text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--az-blue-dark);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.az-home-tool-card--pink .az-home-text-link {
  color: #a42d59;
}

.az-home-text-link svg {
  width: 17px;
  height: 17px;
}

.az-home-steps {
  padding: clamp(72px, 8vw, 108px) 0;
  background: #f7fafc;
}

.az-home-steps__track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px;
  counter-reset: step;
}

.az-home-step {
  position: relative;
  counter-increment: step;
  padding: 28px;
  border: 1px solid var(--az-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(22, 58, 91, 0.06);
}

.az-home-step:not(:last-child)::after {
  position: absolute;
  top: 52px;
  left: calc(100% + 16px);
  width: 22px;
  height: 12px;
  border-top: 2px solid #aacce5;
  border-right: 2px solid #aacce5;
  content: "";
  transform: rotate(45deg);
}

.az-home-step__number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--az-blue);
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.az-home-step h3 {
  margin: 20px 0 0;
  color: var(--az-navy);
  font-family: "Prompt", sans-serif;
  font-size: 19px;
}

.az-home-step p {
  margin: 8px 0 0;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.7;
}

.az-home-disclaimer {
  margin: 24px 0 0;
  color: #7c8d9d;
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.az-home-journey {
  padding: clamp(72px, 8vw, 108px) 0;
  background: #fff;
}

.az-home-journey__panel {
  padding: clamp(34px, 5vw, 58px);
  border-radius: 28px;
  background: var(--az-navy);
}

.az-home-journey .az-home-title,
.az-home-journey .az-home-section-head {
  color: #fff;
}

.az-home-journey .az-home-section-head {
  margin-bottom: 34px;
}

.az-home-journey .az-home-subtitle {
  color: #c5d2dd;
}

.az-home-journey__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.az-home-journey__card {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.07);
}

.az-home-journey__stage {
  margin: 0 0 12px;
  color: #ff91b9;
  font-size: 12px;
  font-weight: 800;
}

.az-home-journey__card h3 {
  margin: 0;
  color: #fff;
  font-family: "Prompt", sans-serif;
  font-size: 15px;
  line-height: 1.48;
}

.az-home-journey__card p:last-child {
  margin: 9px 0 0;
  color: #c3d1dc;
  font-size: 13px;
  line-height: 1.68;
}

.az-home-faq {
  padding: clamp(72px, 8vw, 108px) 0;
  background: #f7fafc;
}

.az-home-faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.az-home-faq__item {
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--az-border);
  border-radius: 15px;
  background: #fff;
}

.az-home-faq__item summary {
  position: relative;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 22px;
  color: var(--az-navy);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
}

.az-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.az-home-faq__item summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--az-soft-blue);
  color: var(--az-blue);
  content: "+";
  font-size: 20px;
  font-weight: 500;
}

.az-home-faq__item[open] summary::after {
  content: "−";
}

.az-home-faq__item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--az-muted);
  font-size: 14px;
  line-height: 1.8;
}

.az-home-contact {
  padding: clamp(72px, 8vw, 110px) 0;
  background: #fff;
}

.az-home-contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(38px, 7vw, 84px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: 30px;
  background: var(--az-soft-blue);
}

.az-home-contact__copy .az-home-subtitle {
  margin-inline: 0;
}

.az-home-profile {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 24px;
}

.az-home-profile__avatar {
  display: block;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(22, 58, 91, 0.14);
  object-fit: cover;
}

.az-home-profile strong,
.az-home-profile span {
  display: block;
}

.az-home-profile strong {
  color: var(--az-navy);
  font-size: 15px;
}

.az-home-profile span {
  margin-top: 2px;
  color: var(--az-muted);
  font-size: 12px;
}

.az-home-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}

.az-home-btn--blue {
  background: var(--az-blue-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(46, 128, 200, 0.2);
}

.az-home-btn--blue:hover {
  background: var(--az-navy-deep);
}

.az-home-partner-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--az-blue-dark);
  font-size: 13px;
  font-weight: 700;
}

.az-home-contact__qr {
  width: 242px;
  padding: 18px;
  border: 1px solid #c5dfef;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 58, 91, 0.11);
  text-align: center;
}

.az-home-contact__qr img {
  display: block;
  width: 204px;
  height: 204px;
  border-radius: 12px;
}

.az-home-contact__qr strong {
  display: block;
  margin-top: 12px;
  color: var(--az-navy);
  font-size: 14px;
}

.az-home-contact__qr span {
  display: block;
  margin-top: 2px;
  color: var(--az-muted);
  font-size: 12px;
}

@media (max-width: 1050px) {
  .az-home-hero__shell {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 40px;
  }

  .az-home-portrait {
    min-height: 510px;
  }

  .az-home-portrait > img {
    height: 560px;
  }

  .az-home-float-note {
    left: -20px;
  }

  .az-home-trust__item {
    grid-template-columns: 36px 1fr;
    padding: 19px 16px;
  }

  .az-home-trust__icon {
    width: 36px;
    height: 36px;
  }

  .az-home-solutions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-solution-card {
    min-height: 270px;
  }

  .az-home-journey__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .az-home-hero {
    padding-top: 54px;
    padding-bottom: 100px;
  }

  .az-home-hero__shell,
  .az-home-why__layout,
  .az-home-claims__layout {
    grid-template-columns: 1fr;
  }

  .az-home-hero__copy {
    text-align: center;
  }

  .az-home-hero h1,
  .az-home-hero__desc {
    margin-inline: auto;
  }

  .az-home-hero__actions,
  .az-home-hero__proof {
    justify-content: center;
  }

  .az-home-portrait {
    width: min(100%, 450px);
    margin-inline: auto;
  }

  .az-home-float-note {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 360px);
    max-width: none;
    justify-content: center;
    margin: 0 auto 16px;
    padding: 14px 18px;
    font-size: 14px;
  }

  .az-home-trust.az-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .az-home-trust__item:nth-child(2) {
    border-right: 0;
  }

  .az-home-trust__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .az-home-why__intro {
    position: static;
  }

  .az-home-why__layout {
    gap: 38px;
  }

  .az-home-video {
    max-width: 560px;
  }

  .az-home-claims__copy {
    max-width: 680px;
    text-align: center;
  }

  .az-home-claims .az-home-subtitle {
    margin-inline: auto;
  }

  .az-home-tools__grid,
  .az-home-steps__track {
    grid-template-columns: 1fr;
  }

  .az-home-step:not(:last-child)::after {
    top: calc(100% + 12px);
    left: 50%;
    transform: rotate(135deg);
  }

  .az-home-contact__panel {
    grid-template-columns: 1fr;
  }

  .az-home-contact__qr {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .az-home-container,
  .az-home-trust-wrap {
    width: min(100% - 32px, 1180px);
  }

  .az-home-title {
    font-size: 28px;
  }

  .az-home-section-head {
    margin-bottom: 30px;
  }

  .az-home-subtitle {
    font-size: 15px;
    line-height: 1.72;
  }

  .az-home-hero {
    padding-top: 42px;
    padding-bottom: 88px;
  }

  .az-home-hero::before {
    top: -170px;
    right: -190px;
    width: 420px;
    height: 420px;
  }

  .az-home-hero h1 {
    font-size: clamp(34px, 10.6vw, 44px);
    line-height: 1.2;
  }

  .az-home-hero__desc {
    margin-top: 17px;
    font-size: 15.5px;
    line-height: 1.75;
  }

  .az-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .az-home-btn {
    width: 100%;
  }

  .az-home-hero__proof {
    display: grid;
    justify-content: start;
    gap: 10px;
    max-width: 320px;
    margin: 24px auto 0;
    text-align: left;
  }

  .az-home-portrait {
    min-height: 440px;
    border-width: 6px;
    border-radius: 27px;
  }

  .az-home-portrait > img {
    bottom: -62px;
    height: 495px;
  }

  .az-home-portrait::before {
    top: 52px;
    width: 260px;
    height: 260px;
  }

  .az-home-advisor {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .az-home-advisor p {
    margin-left: 0;
  }

  .az-home-float-note {
    top: auto;
    left: auto;
    width: min(100%, 320px);
    max-width: none;
    margin-bottom: 14px;
    padding: 13px 15px;
  }

  .az-home-trust-wrap {
    margin-top: -48px;
  }

  .az-home-trust__item {
    grid-template-columns: 1fr;
    grid-template-areas: "icon" "value" "label";
    min-height: 138px;
    align-content: center;
    justify-items: center;
    gap: 6px;
    padding: 16px 9px;
    text-align: center;
  }

  .az-home-trust__icon {
    margin-bottom: 3px;
  }

  .az-home-trust dt {
    font-size: 14px;
  }

  .az-home-solutions,
  .az-home-why,
  .az-home-claims,
  .az-home-tools,
  .az-home-steps,
  .az-home-journey,
  .az-home-faq,
  .az-home-contact {
    padding-block: 68px;
  }

  .az-home-solutions__grid,
  .az-home-checklist,
  .az-home-claims__grid,
  .az-home-journey__grid {
    grid-template-columns: 1fr;
  }

  .az-solution-card {
    min-height: 0;
    padding: 24px;
  }

  .az-home-guidance {
    align-items: flex-start;
    flex-direction: column;
  }

  .az-home-guidance a {
    margin-left: 58px;
  }

  .az-home-check {
    min-height: 0;
  }

  .az-home-claim-card,
  .az-home-claim-card:nth-child(2) {
    transform: none;
  }

  .az-home-journey__panel,
  .az-home-contact__panel {
    border-radius: 22px;
  }

  .az-home-contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .az-home-contact__qr {
    width: min(100%, 242px);
  }
}

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

  .az-home-btn,
  .az-solution-card,
  .az-solution-card__link svg {
    transition: none;
  }
}
