:root {
  --navy: #0E0E55;
  --gold: #C2B067;
  --white: #ffffff;
  --soft: #f7f5ef;
  --ink: #171735;
  --muted: #62657a;
  --line: rgba(14, 14, 85, .14);
  --shadow: 0 24px 70px rgba(14, 14, 85, .12);
  --glow: 0 18px 46px rgba(194, 176, 103, .22);
  --font-main: "Open Sans", "Canvas Sans", "Canva Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

* {
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 16px clamp(22px, 5vw, 72px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 34px rgba(14, 14, 85, .05);
}

.brand img {
  display: block;
  width: 232px;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease;
}

.nav a::before,
.nav-cta::before,
.button::before,
.contact-form button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .42) 45%, transparent 64%);
  transform: translateX(-130%);
  transition: transform .55s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 7px;
  left: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--navy);
  border-color: rgba(194, 176, 103, .45);
  background: rgba(194, 176, 103, .07);
  transform: translateY(-1px);
}

.nav a:hover::before,
.nav a:focus-visible::before,
.nav-cta:hover::before,
.nav-cta:focus-visible::before,
.button:hover::before,
.button:focus-visible::before,
.contact-form button:hover::before,
.contact-form button:focus-visible::before {
  transform: translateX(130%);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.contact-form button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.nav-cta > *,
.button > *,
.contact-form button > * {
  position: relative;
  z-index: 1;
}

.nav-cta {
  justify-self: end;
  padding: 13px 22px;
  font-size: 14px;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button:hover,
.button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  border-color: rgba(194, 176, 103, .95);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  padding: clamp(48px, 6vw, 82px) clamp(22px, 6vw, 90px) clamp(44px, 5vw, 68px);
  background:
    radial-gradient(circle at 85% 15%, rgba(194, 176, 103, .15), transparent 34%),
    linear-gradient(135deg, #0E0E55 0%, #090941 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 24px;
  max-width: 710px;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.02;
  font-weight: 300;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.55vw, 20px);
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.consultation-note {
  display: inline-flex;
  width: fit-content;
  margin: 18px 0 0;
  padding: 9px 14px;
  border: 1px solid rgba(194, 176, 103, .46);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.button.primary {
  background: var(--gold);
  color: var(--navy);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #d0bf78;
}

.button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .46);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, .08);
  border-color: var(--gold);
}

.hero-panel {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  min-height: 485px;
  padding: 0;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
  border: 1px solid rgba(194, 176, 103, .35);
  border-radius: 42px 42px 160px 42px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(194, 176, 103, .18);
  border-radius: 30px 30px 132px 30px;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.hero-icon {
  position: absolute;
  top: clamp(32px, 4vw, 54px);
  right: clamp(28px, 4vw, 52px);
  z-index: 3;
  width: min(112px, 26%);
  padding: 14px;
  background: rgba(255, 255, 255, .92);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(14, 14, 85, .16);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 54% center;
  filter: saturate(.86) contrast(.98);
}

.panel-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 28px;
}

.panel-grid {
  display: grid;
  gap: 10px;
  padding: 26px;
  background: var(--white);
}

.panel-grid span {
  position: relative;
  overflow: hidden;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.panel-grid span:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 176, 103, .75);
  background: rgba(194, 176, 103, .07);
}

.mobile-hero {
  display: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 24px clamp(22px, 6vw, 90px);
  background: var(--soft);
}

.trust-strip div {
  min-height: 124px;
  padding: 24px clamp(22px, 3vw, 38px);
  background: var(--white);
  border: 1px solid rgba(14, 14, 85, .1);
  border-radius: 34px 34px 80px 34px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 300;
}

.trust-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(52px, 6vw, 86px) clamp(22px, 6vw, 90px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.statement h2,
.contact h2 {
  color: var(--navy);
  font-family: var(--font-main);
  font-size: clamp(31px, 3.8vw, 48px);
  line-height: 1.08;
  font-weight: 300;
}

.intro {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.intro .section-heading {
  margin-bottom: 0;
}

.intro .section-heading h2 {
  margin-bottom: 0;
}

.intro-copy {
  display: grid;
  gap: 20px;
}

.intro-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
}

.intro-copy img {
  width: min(620px, 100%);
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 999px 999px 999px 220px;
  box-shadow: var(--shadow);
}

.services,
.process,
.contact {
  background: var(--soft);
}

.service-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card,
.team-grid article {
  min-height: 310px;
  padding: 16px 20px 24px;
  background: var(--white);
  border: 1px solid rgba(14, 14, 85, .1);
  border-radius: 34px 34px 96px 34px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(14, 14, 85, .06);
}

.service-card img {
  width: calc(100% + 40px);
  height: 154px;
  object-fit: cover;
  object-position: center;
  margin: -16px -20px 22px;
  border-radius: 0 0 58px 0;
  filter: saturate(.88) contrast(.96);
}

.service-card:nth-child(1) img {
  object-position: center;
}

.service-card:nth-child(2) img {
  object-position: 50% 52%;
}

.service-card:nth-child(3) img {
  object-position: 48% 44%;
}

.service-card:nth-child(4) img {
  object-position: 50% 48%;
}

.service-card.legal-card img {
  height: 132px;
  object-position: 50% 48%;
}

.service-number,
.team-grid span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-card h3,
.step h3,
.team-grid h3 {
  color: var(--navy);
  font-size: 21px;
  line-height: 1.12;
  font-weight: 400;
}

.service-card p,
.step p,
.team-grid p,
.partner-grid p,
.contact-copy p,
.footer p,
.footer small {
  color: var(--muted);
  font-weight: 300;
}

.partners {
  border-top: 1px solid rgba(14, 14, 85, .06);
}

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

.partner-grid article {
  display: grid;
  min-height: 360px;
  align-content: start;
  padding: 22px 22px 26px;
  background: var(--white);
  border: 1px solid rgba(14, 14, 85, .1);
  border-radius: 34px 34px 96px 34px;
  box-shadow: 0 18px 48px rgba(14, 14, 85, .06);
}

.partner-logo {
  display: flex;
  height: 112px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(14, 14, 85, .08);
  border-radius: 24px 24px 64px 24px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(194, 176, 103, .7);
  box-shadow: var(--glow);
}

.partner-logo img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.partner-logo-babacan img {
  filter: invert(1);
}

.partner-grid span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.partner-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 400;
}

.partner-grid p {
  margin-bottom: 22px;
}

.partner-link {
  align-self: end;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(194, 176, 103, .72);
  text-underline-offset: 5px;
}

.partner-note {
  max-width: 820px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
}

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

.step {
  min-height: 220px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 34px 34px 88px 34px;
  box-shadow: 0 18px 48px rgba(14, 14, 85, .05);
}

.step:last-child {
  border-right: 0;
}

.step span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  border-radius: 999px;
}

.statement {
  display: grid;
  grid-template-columns: .95fr .9fr 1fr;
  gap: clamp(24px, 4vw, 58px);
  padding: clamp(56px, 7vw, 90px) clamp(22px, 6vw, 90px);
  background:
    radial-gradient(circle at 20% 20%, rgba(194, 176, 103, .14), transparent 30%),
    var(--navy);
  color: var(--white);
  align-items: center;
}

.statement h2 {
  color: var(--white);
}

.statement > p {
  align-self: end;
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
  font-weight: 300;
}

.statement img {
  width: 100%;
  height: 220px;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: 999px 999px 999px 220px;
  border: 1px solid rgba(194, 176, 103, .42);
}

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

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

.testimonial-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(14, 14, 85, .1);
  border-radius: 34px 34px 90px 34px;
  box-shadow: 0 18px 48px rgba(14, 14, 85, .05);
}

.testimonial-grid p {
  color: var(--navy);
  font-size: 18px;
  font-weight: 300;
}

.testimonial-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.trustpilot-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 20px;
  background: var(--white);
  border: 1px solid rgba(14, 14, 85, .16);
  border-radius: 999px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.trustpilot-link:hover,
.trustpilot-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(194, 176, 103, .85);
  background: rgba(194, 176, 103, .09);
}

.contact {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: clamp(34px, 6vw, 88px);
}

.contact-copy {
  max-width: 560px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 38px 38px 110px 38px;
}

.hidden-field {
  display: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(14, 14, 85, .22);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  border-radius: 999px;
}

.contact-form textarea {
  border-radius: 26px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(194, 176, 103, .55);
  outline-offset: 1px;
}

.contact-form button {
  min-height: 52px;
  margin-top: 6px;
  font-size: 15px;
}

.footer {
  padding: 46px clamp(22px, 6vw, 90px);
  border-top: 1px solid var(--line);
}

.footer img {
  width: min(320px, 80vw);
  margin-bottom: 18px;
}

.footer p {
  max-width: 650px;
}

.footer small {
  display: block;
  max-width: 820px;
}

.floating-socials {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 4px;
}

.floating-social {
  display: inline-flex;
  width: 44px;
  height: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .22s ease, filter .22s ease;
}

.floating-social img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.floating-social:hover,
.floating-social:focus-visible {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 22px rgba(14, 14, 85, .22));
}

.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 18%, rgba(194, 176, 103, .14), transparent 32%),
    linear-gradient(135deg, #0E0E55 0%, #090941 100%);
  color: var(--white);
}

.thank-you-page .site-header {
  background: var(--white);
}

.thank-you {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .78fr);
  align-content: center;
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  max-width: 1220px;
  padding: clamp(34px, 8vw, 90px);
}

.thank-you-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.thank-you h1 {
  margin-bottom: 0;
  font-size: clamp(36px, 5vw, 62px);
}

.thank-you p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  font-weight: 300;
}

.thank-you a:not(.button) {
  color: var(--gold);
  font-weight: 600;
}

.thank-you-photo {
  width: 100%;
  height: min(560px, 62vh);
  min-height: 360px;
  object-fit: cover;
  object-position: 54% 58%;
  border: 1px solid rgba(194, 176, 103, .42);
  border-radius: 46px 46px 150px 46px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero,
  .intro,
  .statement,
  .contact,
  .thank-you {
    grid-template-columns: 1fr;
  }

  .statement img {
    max-width: 520px;
  }

  .hero {
    gap: 28px;
    min-height: auto;
  }

  .hero-panel {
    min-height: auto;
  }

  .service-grid,
  .partner-grid,
  .team-grid,
  .timeline,
  .testimonial-grid,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --mobile-gutter: 20px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    padding: 14px var(--mobile-gutter);
  }

  .brand img {
    width: 176px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    display: none;
  }

  .mobile-hero {
    display: block;
    width: 100%;
    max-width: 100vw;
    padding: 24px var(--mobile-gutter) 30px;
    background: var(--navy);
    color: var(--white);
    overflow: hidden;
  }

  .mobile-hero-inner {
    width: 100%;
    max-width: none;
    margin-right: auto;
    margin-left: 0;
  }

  .mobile-hero-inner > * {
    width: 100%;
    max-width: 100%;
  }

  .mobile-hero .eyebrow {
    width: 100%;
    max-width: 100%;
    font-size: 10px;
    line-height: 1.45;
    letter-spacing: .1em;
  }

  .mobile-hero-mark {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px;
    min-height: 260px;
    padding: 20px 0;
    background: var(--navy);
    border: 1px solid rgba(194, 176, 103, .38);
    border-radius: 34px 34px 96px 34px;
    overflow: hidden;
  }

  .mobile-hero-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% center;
    filter: saturate(.86) contrast(.96);
  }

  .mobile-hero-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 14, 85, .04), rgba(14, 14, 85, .36));
  }

  .mobile-hero-icon {
    position: relative;
    z-index: 1;
    width: 100px;
    height: auto;
    padding: 18px 14px;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    box-shadow: 0 20px 50px rgba(14, 14, 85, .18);
  }

  .mobile-hero h1 {
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--font-main);
    font-size: 30px;
    line-height: 1.12;
    font-weight: 300;
    overflow-wrap: break-word;
  }

  .mobile-hero h1 span {
    display: block;
  }

  .mobile-hero p:not(.eyebrow) {
    max-width: 330px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
    overflow-wrap: break-word;
  }

  .mobile-service-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px 0;
    width: 100%;
    max-width: 100%;
  }

  .mobile-service-list a {
    min-width: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
  }

  .mobile-service-list a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(194, 176, 103, .24), transparent);
    transform: translateX(-120%);
    transition: transform .55s ease;
  }

  .mobile-service-list a:hover,
  .mobile-service-list a:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(194, 176, 103, .7);
    background: rgba(255, 255, 255, .07);
  }

  .mobile-service-list a:hover::before,
  .mobile-service-list a:focus-visible::before {
    transform: translateX(120%);
  }

  .mobile-actions {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
  }

  .mobile-hero .consultation-note {
    justify-content: center;
    width: 100%;
    margin-top: 14px;
    color: rgba(255, 255, 255, .88);
    text-align: center;
  }

  .mobile-actions .button {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
    text-align: center;
    overflow-wrap: break-word;
  }

  .mobile-actions .secondary {
    border-color: rgba(255, 255, 255, .38);
  }

  .service-grid,
  .partner-grid,
  .team-grid,
  .timeline,
  .testimonial-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    gap: 14px;
    padding: 16px var(--mobile-gutter);
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px 24px;
  }

  .section {
    padding: 34px var(--mobile-gutter);
  }

  .intro {
    gap: 8px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .intro .section-heading {
    margin-bottom: 0;
  }

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

  .section-heading h2,
  .statement h2,
  .contact h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .intro-copy p {
    font-size: 16px;
    margin-bottom: 0;
  }

  .intro-copy img,
  .statement img {
    border-radius: 34px 34px 96px 34px;
  }

  .intro-copy img {
    height: 180px;
    object-fit: cover;
    object-position: top;
    min-height: 0;
  }

  .intro-copy {
    gap: 18px;
  }

  .statement img {
    height: 190px;
    min-height: 190px;
    object-position: 50% 48%;
  }

  .service-card.legal-card img {
    height: 150px;
    object-position: 50% 48%;
  }

  .service-card,
  .partner-grid article,
  .testimonial-grid article,
  .team-grid article,
  .step,
  .contact-form {
    border-radius: 28px 28px 76px 28px;
  }

  .service-card img {
    height: 150px;
    border-radius: 0 0 48px 0;
  }

  .service-card:first-child img {
    object-position: center;
  }

  .trust-strip span,
  .service-card p,
  .partner-grid p,
  .testimonial-grid p,
  .team-grid p,
  .step p {
    overflow-wrap: break-word;
  }

  .step {
    min-height: auto;
    padding-bottom: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-form {
    padding: 22px;
  }

  .thank-you {
    min-height: calc(100vh - 72px);
    padding: 34px var(--mobile-gutter) 44px;
  }

  .thank-you-photo {
    height: 260px;
    min-height: 260px;
    border-radius: 34px 34px 96px 34px;
  }

  .floating-socials {
    right: 14px;
    bottom: 14px;
    left: auto;
    display: flex;
    gap: 2px;
  }

  .floating-social {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .floating-social img {
    width: 40px;
    height: 40px;
  }
}
