:root {
  --navy: #06284f;
  --navy-2: #021d3d;
  --navy-3: #00152f;
  --red: #d20f2b;
  --gold: #e6b13b;
  --gold-2: #f3c75a;
  --ink: #061f42;
  --muted: #52627a;
  --line: #dbe3ef;
  --soft: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(5, 31, 67, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

.container {
  width: min(1168px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding-inline: clamp(24px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 0 rgba(5, 31, 67, 0.08);
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  box-shadow: 0 10px 26px rgba(5, 31, 67, 0.12);
}

.brand img {
  width: 205px;
  height: 66px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 31px);
  color: #051d3d;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav > a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 82px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav > a::after,
.nav-dropdown > button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.main-nav > a.active::after,
.main-nav > a:hover::after,
.nav-dropdown:hover > button::after,
.nav-dropdown.open > button::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dropdown-menu {
  position: absolute;
  top: 70px;
  left: -18px;
  width: 250px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 12px;
}

.dropdown-menu a:hover {
  background: var(--soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(5, 31, 67, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.flag {
  width: 25px;
  height: 15px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.flag.ro {
  background: linear-gradient(90deg, #002b7f 0 33.33%, #fcd116 33.33% 66.66%, #ce1126 66.66% 100%);
}

.flag.uk {
  background:
    linear-gradient(33deg, transparent 42%, #fff 42% 48%, #c8102e 48% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(-33deg, transparent 42%, #fff 42% 48%, #c8102e 48% 54%, #fff 54% 60%, transparent 60%),
    linear-gradient(90deg, transparent 42%, #fff 42% 46%, #c8102e 46% 54%, #fff 54% 58%, transparent 58%),
    linear-gradient(0deg, transparent 38%, #fff 38% 44%, #c8102e 44% 56%, #fff 56% 62%, transparent 62%),
    #012169;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-3);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 76% 43%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.46) 24%, rgba(255, 255, 255, 0.16) 43%, rgba(255, 255, 255, 0) 62%),
    linear-gradient(90deg, rgba(1, 23, 49, 0.98) 0%, rgba(4, 34, 70, 0.94) 34%, rgba(5, 38, 78, 0.48) 57%, rgba(255, 255, 255, 0.1) 100%),
    url("assets/london-westminster.jpg") center / cover no-repeat;
}

.hero-right-art {
  position: absolute;
  z-index: 2;
  top: 52px;
  right: clamp(48px, 10vw, 150px);
  display: grid;
  place-items: center;
  width: min(36vw, 455px);
  aspect-ratio: 634 / 453;
}

.hero-right-art::before {
  display: none;
}

.hero-right-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(1, 18, 40, 0.16));
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  align-items: start;
  min-height: 500px;
  padding-top: 48px;
  padding-bottom: 86px;
}

.hero-kicker {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 510px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(39px, 4.5vw, 56px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--gold-2);
}

.hero-subtitle {
  max-width: 510px;
  margin: 0 0 27px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 500;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 22px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-gold {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--navy-2);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.88);
  color: var(--white);
}

.btn-navy {
  border: 0;
  background: var(--navy);
  color: var(--white);
}

.hero-spacer {
  min-height: 1px;
}

.trust-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 49px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: 32px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 18px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
}

.section-heading p:not(.section-kicker) {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.help-section {
  padding-top: 28px;
  background: linear-gradient(180deg, var(--white) 0%, #fbfcff 100%);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.help-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.help-card-top {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  min-height: 111px;
  padding: 17px 15px 11px;
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--white);
}

.icon-badge.navy {
  background: var(--navy);
}

.icon-badge.red {
  background: var(--red);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.help-card p {
  margin: 0;
  color: #1e3455;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 650;
}

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

.services-section {
  padding-top: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 196px;
  padding: 26px 24px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(5, 31, 67, 0.08);
}

.service-card svg {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.24;
  font-weight: 900;
}

.service-card p,
.service-card small {
  display: block;
  margin: 0 0 13px;
  color: #263b59;
  font-size: 11px;
  line-height: 1.6;
  font-weight: 650;
}

.service-card small {
  color: #637084;
}

.service-card a {
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.why-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 31, 65, 0.98), rgba(2, 35, 75, 0.94)),
    url("assets/london-westminster.jpg") center / cover;
  color: var(--white);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  min-height: 205px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stats article {
  display: flex;
  min-height: 140px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.stats svg {
  width: 51px;
  height: 51px;
  margin-bottom: 8px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stats strong {
  color: var(--gold-2);
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
}

.stats span {
  max-width: 116px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: 24px 0 0 42px;
}

.why-kicker {
  margin: 0 0 7px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.why-content h2 {
  margin: 0 0 13px;
  font-size: 22px;
  line-height: 1.15;
}

.why-content ul {
  margin: 0 0 23px;
  padding: 0;
  list-style: none;
}

.why-content li {
  position: relative;
  margin-bottom: 9px;
  padding-left: 27px;
  font-size: 13px;
  font-weight: 750;
}

.why-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
  transform: rotate(-45deg);
}

.why-content img {
  width: 172px;
  height: 196px;
  object-fit: cover;
  object-position: center;
}

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

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-grid blockquote {
  margin: 0;
  min-height: 128px;
  padding: 25px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  color: #213852;
  box-shadow: 0 10px 26px rgba(5, 31, 67, 0.08);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  padding: 30px 0 36px;
}

.contact-top {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 42px;
  align-items: center;
}

.contact-top h2 {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.12;
}

.contact-top p {
  margin: 0 0 20px;
  font-size: 16px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 28px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(0, 16, 43, 0.14);
}

.contact-cards article {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 78px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.contact-cards article:last-child {
  border-right: 0;
}

.contact-cards svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-cards strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.contact-cards a,
.contact-cards span {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.form-title,
.wide,
.form-message {
  grid-column: 1 / -1;
}

.form-title p {
  margin: 0 0 5px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-title h3 {
  margin: 0;
  font-size: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  padding: 14px 15px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(230, 177, 59, 0.24);
}

.contact-form .invalid {
  border-color: #ff9aa8;
}

.form-message {
  min-height: 19px;
  margin: 0;
  font-weight: 800;
}

.site-footer {
  padding: 30px 0 24px;
  background: linear-gradient(135deg, #05254c 0%, #021a35 100%);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.92fr 1fr;
  gap: 54px;
}

.footer-brand img {
  width: 185px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
  border-radius: 4px;
}

.footer-brand p {
  max-width: 280px;
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
}

.site-footer nav a {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
}

.socials {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.footer-language {
  color: var(--white);
  margin-bottom: 22px;
}

.copyright {
  margin: 0;
  font-size: 11px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
    padding-inline: 28px;
  }

  .brand img {
    width: 175px;
  }

  .main-nav {
    gap: 16px;
    font-size: 11px;
  }

  .header-btn {
    padding-inline: 18px;
  }

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

@media (max-width: 920px) {
  .hero-bg {
    background:
      radial-gradient(ellipse at 52% 21%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.74) 24%, rgba(255, 255, 255, 0.28) 48%, rgba(255, 255, 255, 0) 70%),
      linear-gradient(90deg, rgba(1, 23, 49, 0.98) 0%, rgba(4, 34, 70, 0.78) 42%, rgba(255, 255, 255, 0.08) 100%),
      url("assets/london-westminster.jpg") center top / cover no-repeat;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .site-header.menu-open {
    height: auto;
    padding-bottom: 18px;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .header-actions {
    display: flex;
    grid-column: 1 / -1;
  }

  .site-header.menu-open .main-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header.menu-open .main-nav > a,
  .site-header.menu-open .nav-dropdown > button {
    height: auto;
    padding: 13px 0;
  }

  .site-header.menu-open .main-nav > a::after,
  .site-header.menu-open .nav-dropdown > button::after {
    display: none;
  }

  .site-header.menu-open .header-actions {
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    margin: 4px 0 10px;
    box-shadow: none;
    border: 1px solid var(--line);
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-right-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(520px, 100%);
    margin: 24px auto 0;
    grid-column: 1 / -1;
    isolation: isolate;
  }

  .hero-right-art::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: -16% -13% -18%;
    display: block;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 32%, rgba(255, 255, 255, 0.42) 56%, rgba(255, 255, 255, 0) 76%);
    filter: blur(2px);
  }

  .hero::after {
    display: none;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 126px;
  }

  .hero-right-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(420px, 82vw);
    margin: 24px auto 0;
    grid-column: 1 / -1;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 18px;
    bottom: 42px;
  }

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

  .why-layout,
  .contact-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats,
  .contact-cards,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .stats article,
  .contact-cards article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats article {
    border-bottom-color: rgba(255, 255, 255, 0.18);
  }

  .stats article:last-child,
  .contact-cards article:last-child {
    border-bottom: 0;
  }

  .why-content {
    padding-left: 0;
  }

  .contact-cards article {
    padding: 17px 0;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
  }

  .site-header {
    height: 76px;
    padding-inline: 17px;
  }

  .brand img {
    width: 168px;
    height: 62px;
  }

  .hero-layout {
    width: calc(100vw - 34px);
    max-width: calc(100vw - 34px);
    overflow: hidden;
    padding-top: 35px;
    padding-bottom: 178px;
  }

  .hero-bg {
    background:
      radial-gradient(ellipse at 54% 20%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 29%, rgba(255, 255, 255, 0.42) 53%, rgba(255, 255, 255, 0) 74%),
      linear-gradient(90deg, rgba(1, 23, 49, 0.99) 0%, rgba(4, 34, 70, 0.74) 48%, rgba(255, 255, 255, 0.05) 100%),
      url("assets/london-westminster.jpg") center top / cover no-repeat;
  }

  .hero-right-art {
    width: min(310px, 80vw);
    margin-top: 22px;
  }

  .hero-right-art::before {
    inset: -18% -10% -20%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.46) 58%, rgba(255, 255, 255, 0) 77%);
  }

  .hero-copy,
  .section-heading {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-kicker,
  .hero-subtitle,
  .hero h1,
  .section-heading h2 {
    max-width: 100%;
  }

  .hero-kicker,
  .hero-subtitle {
    overflow-wrap: anywhere;
  }

  .hero h1 {
    font-size: 29px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .section-heading h2 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .help-card-top {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  .help-card h3,
  .help-card p {
    overflow-wrap: break-word;
  }

  .hero-actions,
  .contact-actions,
  .site-header.menu-open .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .header-btn {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    bottom: 40px;
  }

  .trust-item {
    white-space: normal;
  }

  .help-grid,
  .services-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .help-card img {
    height: 188px;
  }

  .why-content {
    grid-template-columns: 1fr;
  }

  .why-content img {
    display: none;
  }

  .contact-top h2 {
    font-size: 28px;
  }
}
