:root {
  --purple: #43266f;
  --purple-dark: #2b174d;
  --orange: #ff6600;
  --green: #10c65a;
  --ink: #272b35;
  --muted: #657083;
  --line: #e7eaf0;
  --soft: #f4f5f8;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(32, 24, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Lato, Arial, sans-serif;
  background: var(--white);
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--purple);
  color: var(--white);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.brand img {
  width: 104px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: #364153;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 76px;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 6px;
  font-family: Montserrat, Lato, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  max-width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(255, 102, 0, 0.25);
}

.btn-secondary {
  background: var(--white);
  color: var(--purple);
  border: 1px solid var(--line);
}

.btn-light {
  background: var(--white);
  color: var(--purple);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 0;
  border-radius: 6px;
  background: var(--soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--purple);
}

.hero {
  overflow: hidden;
  background: var(--orange);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: stretch;
  height: 580px;
  min-height: 580px;
  padding: 0;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(540px, calc(100% - 40px));
  margin-left: max(20px, calc((100vw - 1120px) / 2));
  margin-right: 40px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: Montserrat, Lato, Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero .hero-text {
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Montserrat, Lato, Arial, sans-serif;
  color: var(--purple-dark);
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  line-height: 1.12;
}

h3 {
  margin-bottom: 14px;
  font-size: 21px;
  line-height: 1.25;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
}

.hero-actions .btn {
  width: 100%;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: none;
}

.hero .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero-media {
  align-self: stretch;
  min-width: 0;
  margin: 0;
}

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

.section {
  padding: 88px 0;
}

.split,
.video-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: start;
}

.copy-block {
  color: #3f4756;
  font-size: 20px;
  line-height: 1.55;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.video-section {
  background: var(--soft);
}

.video-grid {
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
}

.video-box {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  border: 2px dashed #cfd5df;
  background: var(--white);
  color: #7a8290;
  text-align: center;
}

.video-box p {
  margin: 0;
  font-family: Montserrat, Lato, Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 26px 0 30px;
}

.steps article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #efe7ff;
  color: var(--purple);
  font-family: Montserrat, Lato, Arial, sans-serif;
  font-weight: 800;
}

.steps p {
  margin: 0;
  color: #3f4756;
  font-size: 17px;
  line-height: 1.4;
}

.support-strip {
  padding: 52px 0;
  background: var(--purple);
  color: var(--white);
}

.support-strip h2,
.support-strip .eyebrow {
  color: var(--white);
}

.support-strip .eyebrow {
  opacity: 0.8;
}

.support-strip h2 {
  margin: 0;
}

.support-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

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

.document-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(29, 28, 36, 0.06);
}

.document-grid article {
  padding: 28px;
}

.document-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--purple);
  font-family: Montserrat, Lato, Arial, sans-serif;
  font-size: 18px;
}

.document-grid span {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-section {
  padding: 64px 0 76px;
  background: var(--white);
}

.contact-section .container {
  width: min(1280px, calc(100% - 64px));
}

.contact-heading h2 {
  margin-bottom: 44px;
  color: #3e4554;
  font-family: Lato, Arial, sans-serif;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.08;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: start;
}

.contact-figure {
  margin: 0;
}

.contact-figure img {
  width: min(430px, 100%);
  margin-top: 10px;
}

.contact-content {
  display: grid;
  gap: 38px;
}

.contact-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  object-fit: contain;
}

.contact-icon-bmg {
  width: 34px;
  height: 34px;
}

.contact-kicker {
  margin-bottom: 8px;
  color: #4b5260;
  font-size: 18px;
  line-height: 1.2;
}

.contact-group h3 {
  margin-bottom: 28px;
  color: #343b49;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.18;
}

.contact-list {
  display: grid;
  gap: 26px 48px;
  margin: 0;
}

.contact-list-two {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.contact-list-three {
  grid-template-columns: repeat(3, minmax(170px, 1fr));
}

.contact-list dt {
  min-height: 28px;
  margin-bottom: 8px;
  color: #444b59;
  font-size: 18px;
  line-height: 1.28;
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  color: #e96a3a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-footer {
  background: var(--purple);
  color: var(--white);
}

.site-footer .container {
  width: min(1536px, calc(100% - 80px));
}

.footer-main {
  padding: 30px 0 38px;
}

.footer-bottom {
  padding: 30px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.footer-wrap {
  display: grid;
  gap: 34px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(250px, 410px) minmax(250px, 390px) 1fr;
  gap: 86px;
  align-items: start;
}

.footer-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  min-height: 78px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
}

.footer-card-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-pin {
  position: relative;
  display: block;
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.footer-pin::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

.footer-card strong,
.footer-card small {
  display: block;
}

.footer-card strong {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.05;
}

.footer-card small,
.footer-social p,
.footer-service p,
.footer-legal p {
  font-size: 17px;
  line-height: 1.42;
}

.footer-social {
  justify-self: end;
  min-width: 260px;
}

.footer-social p {
  margin-bottom: 14px;
}

.footer-social div {
  display: flex;
  gap: 18px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--purple);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
}

.footer-service {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.1fr 0.82fr;
  gap: 52px;
  align-items: start;
}

.footer-service p {
  margin-bottom: 9px;
}

.footer-service strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.28;
}

.footer-service a,
.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-service a {
  display: inline-block;
  margin: 6px 0 20px;
  font-size: 20px;
  font-weight: 800;
}

.footer-gap {
  margin-top: 20px;
}

.ra-badge {
  display: grid;
  justify-items: center;
  margin-top: -12px;
}

.ra-badge img {
  width: 175px;
  height: auto;
}

.footer-legal {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
}

.footer-logo {
  width: 110px;
}

.footer-legal strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.footer-legal p {
  margin-bottom: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 20px 68px;
}

.footer-links a {
  font-size: 18px;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.modal-open {
  overflow: hidden;
}

.claim-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.claim-modal.is-open {
  display: flex;
}

.claim-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 44, 0.72);
}

.claim-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 34px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.claim-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--soft);
  color: var(--purple);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.claim-modal h2 {
  margin-bottom: 18px;
  padding-right: 44px;
  color: var(--orange);
  font-size: 34px;
  text-transform: uppercase;
}

.claim-modal__content {
  color: #3f4756;
  font-size: 17px;
  line-height: 1.5;
}

.claim-modal__content p,
.claim-modal__content ol {
  margin-bottom: 16px;
}

.claim-modal__content a {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  overflow-wrap: anywhere;
}

.claim-modal__content ol {
  padding-left: 24px;
}

.claim-modal__content li + li {
  margin-top: 8px;
}

.claim-modal__action {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 720px);
  }

  .header-row {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .main-nav a:hover {
    background: var(--soft);
  }

  .header-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .video-grid,
  .document-grid,
  .contact-layout,
  .footer-top,
  .footer-service,
  .footer-legal {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    height: auto;
    min-height: auto;
    padding-top: 40px;
  }

  .hero-copy {
    width: min(100% - 48px, 720px);
    margin: 0 auto;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-text,
  .copy-block {
    font-size: 18px;
  }

  .hero-media {
    width: 100%;
    height: 320px;
    min-height: 0;
    margin: 30px 0 0;
    background: var(--white);
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center top;
  }

  .section {
    padding: 56px 0;
  }

  .split,
  .video-grid {
    gap: 34px;
  }

  .support-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-heading h2 {
    margin-bottom: 34px;
    font-size: 36px;
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-figure img {
    width: min(420px, 100%);
    margin: 0 auto;
  }

  .contact-content {
    gap: 44px;
  }

  .contact-group h3 {
    margin-bottom: 28px;
    font-size: 22px;
  }

  .contact-kicker {
    font-size: 18px;
  }

  .contact-list-two,
  .contact-list-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-list dt {
    font-size: 17px;
  }

  .contact-list a {
    font-size: 19px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .site-footer .container {
    width: min(100% - 28px, 720px);
  }

  .footer-top,
  .footer-service {
    gap: 26px;
  }

  .footer-social {
    justify-self: start;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 20px 34px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), 366px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .brand img {
    width: 92px;
  }

  .hero-grid {
    padding-top: 34px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

  .hero-copy {
    width: min(calc(100% - 24px), 366px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hero-text {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 54px;
    padding: 0 18px;
    font-size: 15px;
  }

  .video-box {
    min-height: 220px;
    padding: 24px;
  }

  .hero-media {
    height: 290px;
    margin-top: 28px;
  }

  .hero-media img {
    width: 100%;
    height: 100%;
  }

  .video-box p {
    font-size: 18px;
  }

  .steps article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .steps span {
    width: 52px;
    height: 52px;
  }

  .steps p {
    font-size: 16px;
  }

  .document-grid span {
    font-size: 20px;
  }

  .footer-main {
    padding: 32px 0 42px;
  }

  .footer-card strong {
    font-size: 22px;
  }

  .footer-card small,
  .footer-social p,
  .footer-service p,
  .footer-legal p {
    font-size: 16px;
  }

  .footer-service strong,
  .footer-service a,
  .footer-links a,
  .footer-legal strong {
    font-size: 18px;
  }

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

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

  .contact-list-two,
  .contact-list-three {
    grid-template-columns: 1fr;
  }

  .contact-list {
    gap: 24px;
  }

  .contact-list dt {
    min-height: 0;
    font-size: 16px;
  }

  .contact-list a {
    font-size: 18px;
  }

  .claim-modal {
    padding: 12px;
  }

  .claim-modal__dialog {
    padding: 26px 20px;
  }

  .claim-modal h2 {
    font-size: 28px;
  }

  .claim-modal__content {
    font-size: 16px;
  }
}
